/* ==========================================================================
   ANNOUNCEMENT PAGE - SEEDS STARS MONTESSORI
   ========================================================================== */

/* --- FEATURED ANNOUNCEMENT (SOROTAN TERBARU) --- */
.featured-announcement-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(30, 41, 59, 0.05);
    border: 1px solid #f1f5f9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: row; /* Desktop: Gambar Kiri, Teks Kanan */
}

.featured-announcement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 122, 0, 0.1);
    border-color: #ffe0cc;
}

.featured-img-wrapper {
    flex: 0 0 55%; /* Gambar ambil 55% lebar */
    max-width: 55%;
    position: relative;
}

.featured-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.featured-content {
    flex: 0 0 45%; /* Teks ambil 45% lebar */
    max-width: 45%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.badge-terbaru {
    background-color: var(--ms-orange, #ff7a00);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(255, 122, 0, 0.3);
}

/* --- REGULAR ANNOUNCEMENT CARDS (SISANYA) --- */
.announcement-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(30, 41, 59, 0.03);
    border: 1px solid #f1f5f9;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.announcement-card:hover {
    transform: translateY(-5px);
    border-color: var(--ms-orange, #ff7a00);
}

.announcement-img {
    height: 220px;
    width: 100%;
    object-fit: cover;
}

.announcement-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.announcement-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.4;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.announcement-meta {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 15px;
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 991.98px) {
    .featured-announcement-card {
        flex-direction: column; /* Tablet/HP: Gambar Atas, Teks Bawah */
    }
    .featured-img-wrapper,
    .featured-content {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .featured-img-wrapper img {
        min-height: 300px;
        height: 300px;
    }
    .featured-content {
        padding: 30px;
    }
}

/* --- Tambahan Gaya Kapsul Tags di Halaman Index --- */
.card-tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.card-tag-pill {
    background-color: #f1f5f9; /* Abu-abu terang netral halus */
    color: #64748b;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

/* Efek interaktif ketika kursor melayang di atas tag */
.card-tag-pill:hover {
    background-color: var(--ms-orange-light, #fff4eb);
    color: var(--ms-orange, #ff7a00);
    border-color: #ffe0cc;
}

/* ==========================================================================
   PENYESUAIAN MOBILE RESPONSIF (GRID 2x2 UNTUK SMARTPHONE)
   ========================================================================== */
@media (max-width: 767.98px) {
    /* Menyesuaikan padding container kartu di HP */
    .announcement-body {
        padding: 15px !important;
    }

    /* Tinggi gambar dipangkas agar kartu tidak terlalu jangkung ke bawah */
    .announcement-img {
        height: 140px !important;
    }

    /* Ukuran judul diperkecil agar pas dalam 2 kolom kesamping */
    .announcement-title {
        font-size: 0.95rem !important;
        margin-bottom: 8px !important;
        line-height: 1.3;
    }

    /* Mengatur jarak teks ringkasan */
    .announcement-body p {
        font-size: 0.78rem !important;
        line-height: 1.4;
    }

    /* Ukuran teks tags dalam kartu dibuat mini */
    .card-tag-pill {
        font-size: 0.65rem !important;
        padding: 2px 8px !important;
    }

    /* Link baca detail disesuaikan */
    .announcement-body a {
        font-size: 0.8rem !important;
    }
}
