/* CSS KHUSUS HALAMAN DETAIL PENGUMUMAN (FORMAL) */

/* Layout Utama */
.dp-section {
    padding: 60px 0;
    background-color: #f8fafc; /* Latar belakang abu sangat muda agar kertas putih terlihat jelas */
}

/* Kertas Surat / Kontainer Utama */
.dp-paper {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    padding: 40px 30px;
    margin-bottom: 40px;
    border-top: 8px solid #f59e0b; /* Aksen Amber/Orange di atas kertas */
}
@media (min-width: 768px) {
    .dp-paper {
        padding: 60px;
    }
}

/* Header Edaran */
.dp-header {
    text-align: center;
    border-bottom: 2px solid var(--charcoal);
    padding-bottom: 30px;
    margin-bottom: 40px;
}
.dp-category {
    display: inline-block;
    padding: 6px 16px;
    background: #fffbeb;
    color: #b45309;
    font-size: 13px;
    font-weight: 700;
    border-radius: 9999px;
    margin-bottom: 16px;
}
.dp-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--charcoal);
    line-height: 1.4;
    margin-bottom: 16px;
    text-transform: uppercase;
}
.dp-meta {
    font-size: 14px;
    color: var(--slate);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

/* Isi Pengumuman */
.dp-content {
    font-size: 16px;
    line-height: 1.8;
    color: #1e293b;
    text-align: justify;
}
.dp-content p {
    margin-bottom: 20px;
}
.dp-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 30px 0 15px;
    color: var(--charcoal);
}
.dp-content ul, .dp-content ol {
    margin-bottom: 24px;
    padding-left: 24px;
}
.dp-content li {
    margin-bottom: 10px;
}

/* Kotak Unduhan */
.dp-download-box {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin: 40px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.dp-download-info {
    display: flex;
    align-items: center;
    gap: 16px;
}
.dp-download-icon {
    width: 48px; height: 48px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc2626; /* red for pdf */
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.dp-download-text h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 4px;
}
.dp-download-text p {
    font-size: 12px;
    color: var(--slate-light);
    margin: 0;
}
.dp-btn-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f59e0b;
    color: white;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 10px;
    transition: all 0.3s;
}
.dp-btn-download:hover {
    background: #d97706;
    transform: translateY(-2px);
}

/* Tanda Tangan */
.dp-signature {
    margin-top: 60px;
    display: flex;
    justify-content: flex-end;
}
.dp-signature-box {
    text-align: center;
    width: 250px;
}
.dp-signature-date {
    margin-bottom: 20px;
    font-size: 15px;
}
.dp-signature-name {
    font-weight: 700;
    text-decoration: underline;
    font-size: 16px;
    margin-top: 80px; /* Space for signature image or stamp */
    margin-bottom: 4px;
}
.dp-signature-role {
    font-size: 14px;
    color: var(--slate);
}

/* Breadcrumb override */
.dp-breadcrumb {
    margin-bottom: 20px;
}