/* =========================================================
   INFORMASI LAINNYA
========================================================= */

.news-other-panel {
    height: auto;

    padding: 22px;

    border-radius: 18px;

    background: rgba(255, 255, 255, 0.96);

    border: 1px solid rgba(139, 77, 82, 0.1);

    box-shadow: 0 12px 30px rgba(80, 30, 30, 0.09),
        0 3px 8px rgba(80, 30, 30, 0.04);
}

/* =========================================================
   HEADER
========================================================= */

.news-other-header {
    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 15px;

    padding-bottom: 15px;

    margin-bottom: 0;

    border-bottom: 1px solid #eee2e3;
}

.news-other-kicker {
    display: block;

    margin-bottom: 4px;

    color: #98545b;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.2px;
}

.news-other-header h3 {
    margin: 0;

    color: #633d42;

    font-size: 21px;

    font-weight: 800;

    line-height: 1.2;
}

.news-other-header p {
    margin: 5px 0 0;

    color: #8a7477;

    font-size: 10px;

    line-height: 1.4;
}

/* =========================================================
   BUTTON LIHAT SEMUA
========================================================= */

.news-other-more {
    display: inline-flex;

    align-items: center;

    gap: 5px;

    flex-shrink: 0;

    padding: 7px 10px;

    border: 1px solid #eadbdd;

    border-radius: 20px;

    color: #8b4d54;

    background: #ffffff;

    text-decoration: none;

    font-size: 8px;

    font-weight: 700;

    transition: all 0.25s ease;
}

.news-other-more i {
    font-size: 7px;

    transition: transform 0.25s ease;
}

.news-other-more:hover {
    color: #ffffff;

    background: #8b4d54;

    border-color: #8b4d54;
}

.news-other-more:hover i {
    transform: translateX(3px);
}

/* =========================================================
   LIST
========================================================= */

.news-other-list {
    display: flex;

    flex-direction: column;
}

/* =========================================================
   ITEM
   TETAP HORIZONTAL
========================================================= */

.news-other-item {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 10px 0;

    min-height: 88px;

    border-bottom: 1px solid #eee6e7;

    transition: all 0.25s ease;
}

.news-other-item:last-child {
    border-bottom: none;

    padding-bottom: 0;
}

.news-other-item:hover {
    transform: translateX(3px);
}

/* =========================================================
   IMAGE
========================================================= */

.news-other-image {
    flex: 0 0 95px;

    width: 95px;

    height: 70px;

    overflow: hidden;

    border-radius: 9px;

    background: #f1e3e3;

    display: flex;

    align-items: center;

    justify-content: center;
}

.news-other-image img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: contain;

    object-position: center center;

    background: #f1e3e3;

    transition: transform 0.4s ease;
}

.news-other-item:hover .news-other-image img {
    transform: scale(1.03);
}

/* =========================================================
   BODY
========================================================= */

.news-other-body {
    flex: 1;

    min-width: 0;
}

/* =========================================================
   CATEGORY
========================================================= */

.news-other-category {
    display: block;

    margin-bottom: 3px;

    color: #98545b;

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 0.8px;

    text-transform: uppercase;
}

/* =========================================================
   TITLE
========================================================= */

.news-other-body h4 {
    display: -webkit-box;

    margin: 0 0 5px;

    overflow: hidden;

    color: #684146;

    font-size: 11px;

    line-height: 1.35;

    font-weight: 750;

    -webkit-line-clamp: 2;

    -webkit-box-orient: vertical;
}

/* =========================================================
   META
========================================================= */

.news-other-meta {
    display: flex;

    align-items: center;

    gap: 5px;

    color: #9b898b;

    font-size: 7px;
}

.news-other-meta i {
    color: #98545b;

    font-size: 7px;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {
    .news-other-panel {
        margin-top: 20px;

        padding: 18px;
    }

    .news-other-item {
        min-height: 82px;

        padding: 8px 0;

        gap: 10px;
    }

    .news-other-image {
        flex: 0 0 90px;

        width: 90px;

        height: 66px;
    }

    .news-other-body h4 {
        font-size: 10.5px;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {
    .news-other-panel {
        margin-top: 20px;

        padding: 16px;

        border-radius: 15px;
    }

    .news-other-header {
        padding-bottom: 13px;
    }

    .news-other-header h3 {
        font-size: 19px;
    }

    .news-other-header p {
        font-size: 9px;
    }

    .news-other-more {
        padding: 6px 9px;

        font-size: 7px;
    }

    .news-other-item {
        min-height: 78px;

        gap: 10px;

        padding: 8px 0;
    }

    .news-other-image {
        flex: 0 0 85px;

        width: 85px;

        height: 63px;
    }

    .news-other-body h4 {
        font-size: 10px;

        line-height: 1.3;

        -webkit-line-clamp: 2;
    }

    .news-other-meta {
        font-size: 7px;
    }
}

/* =========================================================
   HP KECIL
========================================================= */

@media (max-width: 480px) {
    .news-other-panel {
        padding: 14px;
    }

    .news-other-header h3 {
        font-size: 18px;
    }

    .news-other-header p {
        font-size: 8px;
    }

    .news-other-image {
        flex: 0 0 78px;

        width: 78px;

        height: 58px;
    }

    .news-other-item {
        min-height: 72px;

        gap: 9px;

        padding: 7px 0;
    }

    .news-other-body h4 {
        font-size: 9px;
    }

    .news-other-category {
        font-size: 6px;
    }

    .news-other-meta {
        font-size: 6.5px;
    }
}
