/* ==========================================================================
   6.4 ABOUT PAGE SPECIFIC (Template: page-about.php)
   ========================================================================== */

/* --- A.1 Layout Utama & Container --- */
.about-container-main {
    width: 100%;
    min-height: calc(100vh - 67px); 
    background-color: #F2F0EB;
    display: flex;
    flex-direction: column; 
    align-items: center;    
    
    /* Standar Seragam: 100px atas */
    padding: 10px 40px 50px; 
    box-sizing: border-box;
}

/* --- A.2 Content Wrapper (Netralisir Jarak) --- */
#about_mid {
    /* Gunakan max-width agar responsif, jangan width mati 937px */
    width: 100% !important;
    max-width: 1300px !important; 
    height: auto !important; /* Jangan dikunci 480px agar konten tidak terpotong */
    color: #1A1A1A;
    display: flex;
    flex-direction: column;
    
    /* PERBAIKAN: Ubah 67px menjadi 0 agar tidak double padding */
    margin: 0 auto !important; 
    
    /* Pastikan tidak ada padding tambahan yang mendorong judul */
    padding-top: 0 !important;
}

/* --- B. Judul Halaman --- */
#about_title {
    font-family: "Hubballi", sans-serif !important;
    font-size: 42px !important; /* Disamakan dengan rujukan */
    font-weight: 600 !important; /* Disamakan dengan rujukan */
    color: #1A1A1A !important;
    text-transform: uppercase;   /* Diubah dari capitalize ke uppercase agar seragam */
    text-align: center !important;
    
    /* Reset Nilai Fixed Lama */
    width: 100% !important;      /* Cabut 937px agar tidak error di tablet */
    max-width: 100% !important;
    height: auto !important;     /* Cabut 58px agar tidak memotong teks */
    margin: 0 auto 32px auto !important; /* Disamakan dengan rujukan */
    
    line-height: 1.1;
    letter-spacing: 1px;
    -webkit-font-smoothing: antialiased;
}

/* --- C. Kolom & Penyelarasan (Side-by-Side) --- */
.about-content-wrapper {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
}

.about-column {
    flex: 1;
    position: relative;
}

/* --- D. Image Overlay System (Teks di Atas Gambar) --- */
.image-container-fixed {
    position: relative;
    width: 100%;
    height: 400px;
    background-color: #D1CDC7;
    /* Background dasar jika gambar belum dimuat */
}

#about_award_title,
#about_team_title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 130px;
    height: 44px;
    color: #ffffff;
    /* Tetap putih agar kontras di atas gambar grayscale/berwarna */
    font-family: "Hubballi", sans-serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 20px;
    padding: 12px;
    text-align: center;
    text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.5);
    /* Bayangan diperhalus */
    margin: 0;
    pointer-events: none;
}

/* --- E. Frame Media & Efek Hover --- */
.image-frame {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: 0.5s ease;
    display: block;
}

.image-frame:hover img {
    filter: grayscale(0%);
}

