/* ==========================================================================
   6.4.3 AWARD ARCHIVE PAGE (Template: archive-award.php)
   ========================================================================== */

/* --- A. Layout Utama Halaman Awards --- */
.awards-page .mid-awards {
    max-width: 936px;
    margin: 0 auto;
    padding: 10px 0 20px;
    font-weight: 100;
    color: #1A1A1A;
    box-sizing: border-box;
}

.awards-page .mid-awards a {
    text-decoration: none;
    color: inherit;
    outline: none;
}

/* --- B. Judul Halaman --- */
.awards-page .big-font-awards {
    display: block;
    width: 100%;
    max-width: 937px;
    margin: 20px auto 50px;
    font-family: "Hubballi", sans-serif;
    font-size: 42px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    color: #1A1A1A;
}

/* --- C. Card Container (Daftar Award) --- */
.card-awards {
    display: flex;
    gap: 30px;
    max-width: 936px;
    margin: 0 auto 15px auto;
    padding: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.card-awards:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

/* Container pembungkus gambar agar ukurannya kaku */
.awards-thumb {
    width: 204px;
    height: 204px;
    flex-shrink: 0;
    overflow: hidden;
}

.awards-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background-color: #D1CDC7;
}

/* --- D. Deskripsi Award --- */
.description-awards {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 5px;
    border-bottom: 0.5px solid #D1CDC7;
    font-family: "Hubballi", sans-serif;
    color: #1A1A1A;
}

/* --- PERBAIKAN DESKRIPSI AWARD (DESKTOP) --- */
.description-awards h3 {
    font-size: 18.72px;
    font-weight: 500;
    /* Rapat ke bawah: 0 atas, 0 samping, 5px bawah ke arah tahun */
    margin: 0 0 5px 0 !important; 
    color: #1A1A1A;
    line-height: 1.2;
}

.description-awards p {
    font-size: 15px;
    font-weight: 100;
    /* Hilangkan margin 16px agar teks menempel rapi di bawah judul */
    margin: 0 !important; 
    color: #666666;
}

/* ==========================================================================
   6.4.4 SINGLE AWARD PAGE (Template: single-award.php)
   ========================================================================== */

.single-award-container {
    width: 100%;
    min-height: 100vh;
    background-color: #F2F0EB;
    padding: 25px 5%;
    display: flex;
    justify-content: center;
}

/* === WRAPPER UTAMA (2 KOLOM) === */
.award-detail-wrapper {
    width: 1134px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* ==========================================================================
   KOLOM KIRI — SEMUA GAMBAR
   ========================================================================== */

.award-visual {
    flex: 0 0 400px;
    display: flex;
    flex-direction: column;
    /* STACK GAMBAR KE BAWAH */
    gap: 20px;
}

.award-visual img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid #D1CDC7;
}

/* ==========================================================================
   KOLOM KANAN — TEKS SAJA
   ========================================================================== */

.award-info-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

/* === HEADER === */
.award-title {
    font-family: "Hubballi", sans-serif !important;
    
    /* DATA: Isi konten biasanya 32px (seperti large-journal-title) */
    /* Jangan disamakan dengan Title Page (42px/48px) */
    font-size: 32px !important; 
    
    font-weight: 700 !important;
    color: #1A1A1A;
    margin: 0 0 10px !important;
    text-transform: uppercase;
    line-height: 1.1 !important;
}

.award-date {
    font-family: "Hubballi", sans-serif !important;
    font-size: 16px !important;
    color: #4acca5;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 30px !important;
}

/* ==========================================================================
   BODY TEKS (TANPA GAMBAR)
   ========================================================================== */

.award-text-body {
    font-family: "Hubballi", sans-serif !important;
    font-size: 15px !important; /* Seimbang dengan Journals */
    line-height: 1.5 !important; /* Lebih padat & profesional */
    color: #1A1A1A;
    text-align: left; /* Lebih aman untuk keterbacaan daripada justify */
}

/* PAKSA SEMUA GAMBAR DI KONTEN HILANG (SAFETY NET) */
.award-text-body img,
.award-text-body figure {
    display: none !important;
}

/* Reset Gutenberg block agar tidak bikin layout aneh */
.award-text-body .wp-block-columns,
.award-text-body .wp-block-column {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.award-info-content .back-link {
    display: inline-block;
    margin-top: 40px;
    font-family: "Hubballi", sans-serif !important;
    text-decoration: none;
    color: #1A1A1A;
    font-weight: 700;
    border-bottom: 2px solid #D1CDC7;
    transition: 0.3s;
}

.award-info-content .back-link:hover {
    border-color: #4acca5;
    color: #4acca5;
}

