/* CSS KHUSUS HALAMAN PENGUMUMAN */

/* Hero Section Pengumuman (Nuansa Oranye/Amber) */

/* Global Section */
.pengumuman-section {
    padding: 60px 0;
    background-color: #FAFAFA;
}

/* Layout 2 Kolom */
.pengumuman-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}
@media (min-width: 1024px) {
    .pengumuman-grid {
        grid-template-columns: 2fr 1fr;
    }
}

/* Daftar Pengumuman (Kolom Kiri) */
.pengumuman-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.pengumuman-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
    border-left: 6px solid #f59e0b; /* amber accent */
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}
.pengumuman-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(245, 158, 11, 0.08);
}
.pengumuman-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}
.pengumuman-date {
    background: #fef3c7;
    color: #b45309;
    font-weight: 700;
    font-size: 12px;
    padding: 6px 16px;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.pengumuman-tag {
    font-size: 12px;
    color: var(--slate-light);
    font-weight: 600;
}
.pengumuman-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 12px;
    line-height: 1.4;
}
.pengumuman-body {
    font-size: 15px;
    color: var(--slate);
    line-height: 1.6;
    margin-bottom: 24px;
}
.pengumuman-action {
    display: flex;
    gap: 12px;
    margin-top: auto;
}
.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #f8fafc;
    color: #0f172a;
    font-weight: 600;
    font-size: 14px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s;
}
.btn-download:hover {
    background: #f59e0b;
    color: white;
    border-color: #f59e0b;
}
.btn-share {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px; height: 42px;
    background: var(--white);
    color: var(--slate);
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    transition: all 0.2s;
    cursor: pointer;
}
.btn-share:hover {
    background: #f1f5f9;
    color: #f59e0b;
    border-color: #cbd5e1;
}

/* Sidebar (Kolom Kanan) */
.pengumuman-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.sidebar-widget {
    background: var(--white);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.04);
}
.widget-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--light-gray);
}
.widget-title svg {
    color: #f59e0b;
}

/* Agenda Terdekat (Mini List) */
.agenda-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.agenda-item {
    display: flex;
    gap: 16px;
}
.agenda-date-box {
    background: #fffbeb; /* amber-50 */
    border: 1px solid #fde68a; /* amber-200 */
    border-radius: 12px;
    width: 50px; height: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.agenda-day {
    font-size: 18px;
    font-weight: 800;
    color: #b45309;
    line-height: 1;
}
.agenda-month {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: #d97706;
}
.agenda-info h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 4px;
}
.agenda-info p {
    font-size: 12px;
    color: var(--slate-light);
}

/* Bantuan Call Center */
.help-box {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 16px;
    padding: 24px;
    color: white;
    text-align: center;
}
.help-box svg {
    margin: 0 auto 12px;
    color: #f59e0b;
}
.help-box h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}
.help-box p {
    font-size: 13px;
    color: #cbd5e1;
    margin-bottom: 16px;
}
.btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: white;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 9999px;
    transition: transform 0.2s;
}
.btn-wa:hover {
    transform: translateY(-2px);
}