/* =========================================================
   =========================================================
   LATEST NEWS SECTION
   BERITA TERKINI
   BACKGROUND SONGKET SUMATERA SELATAN
   =========================================================
   ========================================================= */

/* =========================================================
   SECTION UTAMA
========================================================= */

.latest-news-section {
    position: relative;

    overflow: hidden;

    padding: 70px 0 75px;

    background-color: #f7eeee;

    background-image: linear-gradient(
            135deg,
            rgba(153, 44, 47, 0.88) 0%,
            rgba(153, 44, 47, 0.72) 35%,
            rgba(255, 248, 248, 0.88) 100%
        ),
        url("/assets/images/songket.jpg");

    background-size: cover;

    background-position: center center;

    background-repeat: no-repeat;

    border-top: 1px solid rgba(139, 77, 82, 0.12);

    border-bottom: 1px solid rgba(139, 77, 82, 0.12);

    box-shadow: inset 0 18px 30px rgba(80, 30, 30, 0.08),
        inset 0 -18px 30px rgba(80, 30, 30, 0.06);
}

/* =========================================================
   DEKORASI HALUS
========================================================= */

.latest-news-section::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    top: -220px;
    right: -120px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.12);

    filter: blur(30px);

    pointer-events: none;
}

.latest-news-section::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    bottom: -190px;
    left: -120px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.1);

    filter: blur(30px);

    pointer-events: none;
}

/* =========================================================
   CONTAINER
========================================================= */

.latest-news-section > .container {
    position: relative;

    z-index: 2;
}

/* =========================================================
   HEADER
========================================================= */

.latest-news-header {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 30px;
}

/* =========================================================
   KICKER
========================================================= */

.section-kicker {
    display: inline-block;

    margin-bottom: 8px;

    color: #fff4f4;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;

    line-height: 1.2;

    text-transform: uppercase;

    text-shadow: 0 2px 5px rgba(60, 20, 20, 0.25);
}

/* =========================================================
   JUDUL
========================================================= */

.latest-news-title {
    margin: 0;

    color: #ffffff;

    font-size: 32px;

    font-weight: 800;

    line-height: 1.2;

    letter-spacing: -0.3px;

    text-shadow: 0 2px 7px rgba(70, 20, 20, 0.25);
}

/* =========================================================
   DESKRIPSI
========================================================= */

.latest-news-description {
    margin: 8px 0 0;

    color: rgba(255, 255, 255, 0.9);

    font-size: 14px;

    line-height: 1.6;

    text-shadow: 0 1px 4px rgba(70, 20, 20, 0.2);
}

/* =========================================================
   BUTTON LIHAT SEMUA
========================================================= */

.latest-news-more {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    padding: 10px 17px;

    border: 1px solid rgba(139, 77, 82, 0.15);

    border-radius: 30px;

    color: #8b4d54;

    background: rgba(255, 255, 255, 0.96);

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;

    white-space: nowrap;

    box-shadow: 0 7px 18px rgba(80, 30, 30, 0.1);

    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease,
        box-shadow 0.3s ease;
}

.latest-news-more i {
    font-size: 10px;

    transition: transform 0.3s ease;
}

.latest-news-more:hover {
    color: #ffffff;

    background: #8b4d54;

    border-color: #8b4d54;

    transform: translateY(-2px);

    box-shadow: 0 10px 25px rgba(100, 40, 40, 0.18);
}

.latest-news-more:hover i {
    transform: translateX(3px);
}

/* =========================================================
   ROW BERITA
========================================================= */

.latest-news-section .row {
    position: relative;
}

/* =========================================================
   CARD BERITA UTAMA
========================================================= */

.news-featured-card {
    height: 100%;

    overflow: hidden;

    border: 1px solid rgba(139, 77, 82, 0.1);

    border-radius: 17px;

    background: rgba(255, 255, 255, 0.98);

    box-shadow: 0 12px 30px rgba(80, 30, 30, 0.1),
        0 3px 8px rgba(80, 30, 30, 0.04);

    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.news-featured-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 20px 40px rgba(80, 30, 30, 0.15),
        0 5px 12px rgba(80, 30, 30, 0.05);
}

/* =========================================================
   GAMBAR BERITA
========================================================= */

.news-featured-image {
    position: relative;

    width: 100%;

    height: 250px;

    overflow: hidden;

    background: #f3e4e4;

    display: flex;

    align-items: center;

    justify-content: center;
}

/*
   GAMBAR UTUH
   TIDAK TERPOTONG
*/

.news-featured-image img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: contain;

    object-position: center center;

    background: #f3e4e4;

    transition: transform 0.6s ease;
}

/*
   ZOOM SANGAT HALUS
*/

.news-featured-card:hover .news-featured-image img {
    transform: scale(1.02);
}

/* =========================================================
   CATEGORY
========================================================= */

.news-featured-category {
    position: absolute;

    top: 14px;

    left: 14px;

    padding: 6px 11px;

    border-radius: 20px;

    color: #ffffff;

    background: rgba(152, 84, 91, 0.94);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 0.7px;

    box-shadow: 0 4px 12px rgba(60, 20, 20, 0.18);

    z-index: 3;
}

/* =========================================================
   INSTAGRAM BADGE
========================================================= */

.news-instagram-badge {
    position: absolute;

    top: 14px;

    right: 14px;

    display: inline-flex;

    align-items: center;

    gap: 5px;

    padding: 6px 10px;

    border-radius: 20px;

    color: #ffffff;

    background: rgba(35, 35, 35, 0.72);

    backdrop-filter: blur(6px);

    -webkit-backdrop-filter: blur(6px);

    font-size: 8px;

    font-weight: 700;

    z-index: 3;
}

.news-instagram-badge i {
    font-size: 11px;
}

/* =========================================================
   BODY BERITA
========================================================= */

.news-featured-body {
    padding: 17px 18px 19px;
}

/* =========================================================
   META
========================================================= */

.news-meta {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 10px;

    color: #8e7a7c;

    font-size: 9px;
}

.news-meta span {
    display: inline-flex;

    align-items: center;

    gap: 5px;
}

.news-meta i {
    color: #98545b;
}

/* =========================================================
   CAPTION BERITA
========================================================= */

.news-featured-caption {
    display: -webkit-box;

    margin: 0 0 14px;

    overflow: hidden;

    color: #6f5558;

    font-size: 12px;

    line-height: 1.6;

    -webkit-line-clamp: 4;

    -webkit-box-orient: vertical;
}

/* =========================================================
   JUDUL BERITA
   Jika nanti digunakan
========================================================= */

.news-featured-body h3 {
    display: -webkit-box;

    margin: 0 0 10px;

    overflow: hidden;

    color: #633d42;

    font-size: 18px;

    line-height: 1.35;

    font-weight: 800;

    -webkit-line-clamp: 3;

    -webkit-box-orient: vertical;
}

/* =========================================================
   DESCRIPTION
========================================================= */

.news-featured-body p {
    margin: 0 0 15px;

    color: #746466;

    font-size: 12px;

    line-height: 1.65;
}

/* =========================================================
   READ MORE
========================================================= */

.news-read-more {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: #8b4d54;

    text-decoration: none;

    font-size: 10px;

    font-weight: 800;

    transition: color 0.25s ease, gap 0.25s ease;
}

.news-read-more i {
    font-size: 11px;
}

.news-read-more:hover {
    color: #713f45;

    gap: 11px;
}

/* =========================================================
   TABLET
   768px - 991.98px
========================================================= */

@media (max-width: 991.98px) {
    .latest-news-section {
        padding: 55px 0 60px;

        background-position: center center;
    }

    /* HEADER */

    .latest-news-title {
        font-size: 28px;
    }

    .latest-news-description {
        font-size: 13px;
    }

    /* =====================================================
       CARD BERITA
    ===================================================== */

    .news-featured-image {
        height: 230px;
    }

    .news-featured-body {
        padding: 16px;
    }

    .news-featured-body h3 {
        font-size: 17px;
    }

    .news-featured-caption,
    .news-featured-body p {
        font-size: 11px;
    }
}

/* =========================================================
   MOBILE
   <= 767.98px
========================================================= */

@media (max-width: 767.98px) {
    .latest-news-section {
        padding: 45px 0 50px;

        background-image: linear-gradient(
                135deg,
                rgba(153, 44, 47, 0.9),
                rgba(255, 248, 248, 0.9)
            ),
            url("/assets/images/songket.jpg");

        background-size: cover;

        background-position: center center;
    }

    /* =====================================================
       HEADER
    ===================================================== */

    .latest-news-header {
        align-items: flex-start;

        flex-direction: column;

        gap: 15px;

        margin-bottom: 22px;
    }

    .section-kicker {
        margin-bottom: 6px;

        font-size: 9px;

        letter-spacing: 1.2px;
    }

    .latest-news-title {
        font-size: 25px;
    }

    .latest-news-description {
        margin-top: 7px;

        font-size: 12px;

        line-height: 1.5;
    }

    .latest-news-more {
        padding: 8px 13px;

        font-size: 10px;
    }

    /* =====================================================
       2 KARTU BERITA
    ===================================================== */

    .latest-news-section .col-md-6 {
        width: 100%;
    }

    /* =====================================================
       GAMBAR
    ===================================================== */

    .news-featured-image {
        height: 220px;
    }

    .news-featured-body {
        padding: 16px;
    }

    .news-featured-body h3 {
        font-size: 17px;

        line-height: 1.4;
    }

    .news-featured-caption,
    .news-featured-body p {
        font-size: 11px;

        line-height: 1.6;

        -webkit-line-clamp: 4;
    }

    /* =====================================================
       CATEGORY
    ===================================================== */

    .news-featured-category {
        top: 12px;

        left: 12px;

        padding: 5px 9px;

        font-size: 7px;
    }

    /* =====================================================
       INSTAGRAM
    ===================================================== */

    .news-instagram-badge {
        top: 12px;

        right: 12px;

        padding: 5px 8px;

        font-size: 7px;
    }
}

/* =========================================================
   HP KECIL
   <= 480px
========================================================= */

@media (max-width: 480px) {
    .latest-news-section {
        padding: 38px 0 42px;

        background-position: center center;
    }

    .latest-news-title {
        font-size: 23px;
    }

    .latest-news-description {
        font-size: 11px;
    }

    /* =====================================================
       FEATURED
    ===================================================== */

    .news-featured-image {
        height: 195px;
    }

    .news-featured-body {
        padding: 14px;
    }

    .news-featured-body h3 {
        font-size: 16px;
    }

    .news-featured-caption,
    .news-featured-body p {
        font-size: 10.5px;
    }

    /* =====================================================
       META
    ===================================================== */

    .news-meta {
        gap: 9px;

        font-size: 8px;
    }
}
