/* =========================
   CONTAINER
========================= */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* =========================
   HERO SECTION
========================= */
.hero {
    text-align: start;
    padding: 40px 0 0;
}

.hero-title {
    font-size: 36px;
    font-weight: 600;
    color: #444;
}

/* =====================================================
   SECTION DIVIDER
===================================================== */

.section-divider {
    width: 70%;
    height: 1px;
    margin: 2rem auto;
    /* sebelumnya 4rem */
    background: linear-gradient(to right,
            transparent,
            rgba(0, 0, 0, 0.25),
            transparent);
}

.section-divider-wide {
    width: 85%;
}

.section-divider-soft {
    background: rgba(0, 0, 0, 0.08);
}

/* =========================
   BERITA WRAPPER
========================= */
.berita-wrapper {
    padding: 50px 0 80px;
}

/* =========================
   CARD BERITA
========================= */
.berita-card {
    display: flex;
    gap: 24px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.berita-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* =========================
   THUMBNAIL
========================= */
.berita-thumb {
    flex: 0 0 220px;
    height: 150px;
    overflow: hidden;
    border-radius: 8px;
}

.berita-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================
   CONTENT
========================= */
.berita-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.berita-title {
    font-size: 22px;
    font-weight: 600;
    color: #0992C2;
    margin-bottom: 10px;
}

.berita-excerpt {
    font-size: 16px;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 16px;
}

/* =========================
   FOOTER CARD
========================= */
.berita-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.berita-date {
    font-size: 14px;
    color: #6b7280;
}

.berita-date i {
    margin-right: 6px;
}

/* =========================
   BUTTON
========================= */
.btn-berita {
    text-decoration: none;
    background-color: #0992C2;
    /* konsisten dengan tema */
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.25s ease, transform 0.2s ease;
}

.btn-berita:hover {
    background-color: #0992C2;
    transform: translateX(3px);
}

/* =========================
   EMPTY STATE
========================= */
.empty-berita {
    text-align: center;
    font-size: 16px;
    color: #6b7280;
    padding: 40px 0;
}

/* =========================
   PAGINATION
========================= */
.pagination-wrapper {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .berita-card {
        flex-direction: column;
    }

    .berita-thumb {
        width: 100%;
        height: 200px;
    }

    .berita-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}