/* ============================================
   BACA PENGUMUMAN - CSS STYLES
   ============================================ */

body {
    background-color: #ffffff !important;
    background-image: none !important;
}

/* Header & Breadcrumb */
.detail-header {
    background: #f8f9fa;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.detail-header .breadcrumb {
    margin-bottom: 0;
    padding: 0;
    background: transparent;
}

.detail-header .breadcrumb-item a {
    color: var(--ugk-blue);
    text-decoration: none;
    font-weight: 500;
}

/* Card Konten */
.read-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
}

.read-meta-top {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.badge-category {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 700;
    text-transform: uppercase;
}

/* Warna Kategori (Sesuai Arsip) */
.badge-category.akademik { background: rgba(40, 167, 69, 0.1); color: #28a745; }
.badge-category.penting { background: rgba(220, 53, 69, 0.1); color: #dc3545; }
.badge-category.umum { background: rgba(0, 188, 212, 0.1); color: #00bcd4; }

.read-title {
    font-size: 2.2em;
    font-weight: 800;
    color: #140099;
    line-height: 1.3;
    margin-bottom: 20px;
}

.read-author {
    color: #777;
    font-size: 0.9em;
}

/* Gaya Teks Konten */
.read-content {
    font-size: 1.15em;
    line-height: 1.8;
    color: #333;
    text-align: justify;
}

.read-content p {
    margin-bottom: 20px;
}

.read-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

/* Attachment Box */
.attachment-box {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 12px;
}

/* Card dari inline style blade */
.detail-card {
    border: none;
    border-radius: 15px;
    background: #ffffff;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

/* Konten pengumuman dari inline style blade */
.announcement-content {
    line-height: 1.8;
    color: #333;
    font-size: 1.1rem;
    text-align: justify;
    text-justify: inter-word;
}

/* Meta info dari inline style blade */
.meta-info {
    font-size: 0.9rem;
    color: #6c757d;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

/* ============================================
   RESPONSIVE - ANDROID / MOBILE
   ============================================ */
@media (max-width: 767.98px) {

    .read-card {
        padding: 25px 15px;
        border-radius: 0;
        box-shadow: none;
        border: none;
    }

    .read-title {
        font-size: 1.6em;
    }

    .detail-card {
        border-radius: 0;
        box-shadow: none;
        padding: 20px 15px !important;
    }

    .announcement-content {
        font-size: 1rem;
    }

    .meta-info {
        flex-direction: column;
        gap: 6px;
    }

    /* Attachment PDF stack vertikal */
    .attachment-box {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 14px;
    }

    .attachment-box .btn {
        width: 100%;
        text-align: center;
    }

    /* Baris kembali & share stack vertikal */
    .card-footer-actions {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 14px;
    }

    .card-footer-actions .btn-outline-secondary {
        width: 100%;
        text-align: center;
    }
}