/* =========================================================
   GATENUSA — Gabungan Tenaga Teknik Nusantara
   Lembar gaya utama. File ini menggantikan style.css lama
   sepenuhnya; tidak ada sisa tema v1/v2.

   Urutan isi:
   1.  Token (warna, jarak, huruf)
   2.  Dasar & tipografi
   3.  Tombol & tautan
   4.  Header / navigasi
   5.  Hero & judul halaman
   6.  Kerangka bagian (section / band)
   7.  Kartu
   8.  Blok teks-dan-foto
   9.  Pola dua kolom (label kiri, isi kanan)
   10. Teks panjang
   11. Galeri
   12. Pagination
   13. Kontak
   14. Pita ajakan
   15. Halaman error
   16. Footer
   ========================================================= */

/* ========== 1. TOKEN ========== */
:root {
    /* Warna diambil dari logo, digelapkan agar kontras teks aman */
    --blue:        #1A3FA0;   /* biru utama   */
    --blue-dark:   #122E7A;
    --blue-soft:   #E8EDF8;
    --navy:        #0D1B3E;   /* footer       */

    --green:       #0E7C3A;   /* hijau        */
    --green-dark:  #0A5E2C;
    --green-soft:  #E6F2EA;

    --lime:        #C0D800;   /* kuning-hijau: hanya untuk garis & penanda */
    --lime-dark:   #7E8F00;   /* versi gelap, untuk teks di atas putih     */
    --lime-soft:   #F4F8DC;

    --ink:         #15213B;   /* teks utama   */
    --muted:       #5C6982;   /* teks sekunder */
    --line:        #DCE2EC;   /* garis        */
    --paper:       #F4F6FA;   /* latar halaman */
    --white:       #FFFFFF;

    /* Garis tiga warna: satu-satunya ornamen di website ini */
    --rail: linear-gradient(90deg,
        var(--blue)  0 34%,
        var(--green) 34% 67%,
        var(--lime)  67% 100%);

    /* Ukuran */
    --max: 1160px;
    --pad: clamp(20px, 4vw, 40px);
    --gap: clamp(24px, 3vw, 32px);
    --space: clamp(64px, 8vw, 112px);   /* jarak antarbagian */
    --radius: 6px;

    --font: "Public Sans", ui-sans-serif, system-ui, -apple-system,
            "Segoe UI", Roboto, Arial, sans-serif;
}

/* ========== 2. DASAR & TIPOGRAFI ========== */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font);
    font-size: 17px;
    line-height: 1.6;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
h1, h2, h3, p, figure, blockquote, dl, dd { margin: 0; }
ul, ol { margin: 0; padding: 0; }

::selection { background: var(--lime); color: var(--ink); }

:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 3px;
    border-radius: 2px;
}

.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
    position: absolute; left: 16px; top: -56px; z-index: 100;
    padding: 12px 16px; border-radius: var(--radius);
    background: var(--white); color: var(--blue-dark); font-weight: 600;
    text-decoration: none;
}
.skip-link:focus { top: 16px; }

.container { width: min(var(--max), 100% - 2 * var(--pad)); margin-inline: auto; }

/* Judul besar: rapat dan tegas, tanpa hiasan */
.display {
    font-size: clamp(38px, 4.6vw, 60px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.028em;
    max-width: 17ch;
    text-wrap: balance;
}
.display--sm {
    font-size: clamp(30px, 3.6vw, 44px);
    line-height: 1.14;
    letter-spacing: -0.022em;
    max-width: 24ch;
}

.lead {
    margin-top: 18px;
    max-width: 58ch;
    font-size: clamp(17px, 1.5vw, 20px);
    line-height: 1.6;
    color: var(--muted);
    text-wrap: pretty;
}

.section-title {
    font-size: clamp(25px, 2.6vw, 34px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-wrap: balance;
}
.section-title--spaced { margin-bottom: var(--gap); }

.empty {
    grid-column: 1 / -1;
    padding: 32px;
    border: 1px dashed var(--line);
    border-radius: var(--radius);
    color: var(--muted);
    text-align: center;
}

/* ========== 3. TOMBOL & TAUTAN ========== */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 13px 20px;
    border: 1px solid transparent; border-radius: var(--radius);
    font: 600 16px/1 var(--font);
    letter-spacing: -0.005em;
    text-decoration: none; cursor: pointer;
    transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-dark); }

.btn-secondary { background: transparent; color: var(--blue-dark); border-color: var(--line); }
.btn-secondary:hover { background: var(--white); border-color: var(--blue); }

/* Tombol yang ikut warna aksen kartunya (halaman Kontak) */
.btn-accent { background: var(--accent, var(--blue)); color: var(--white); }
.btn-accent:hover { filter: brightness(.88); }

.btn-sm { padding: 10px 14px; font-size: 14px; }
.btn-lg { padding: 16px 24px; font-size: 17px; }

.actions { display: flex; flex-wrap: wrap; gap: 12px; }

.text-link {
    color: var(--blue);
    font-weight: 600;
    text-underline-offset: 5px;
    text-decoration-thickness: 1px;
}
.text-link:hover { text-decoration-thickness: 2px; }

.back-link {
    display: inline-block; margin-bottom: 28px;
    color: var(--muted); font-size: 15px; font-weight: 500;
    text-underline-offset: 4px;
}
.back-link:hover { color: var(--blue); }

/* ========== 4. HEADER / NAVIGASI ========== */
.site-header {
    position: sticky; top: 0; z-index: 30;
    background: var(--blue);
    color: var(--white);
}

.nav {
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px; padding-block: 18px;
}

.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand-logo { height: 38px; width: auto; }

.nav-menu { display: flex; align-items: center; gap: 28px; }
.nav-links { display: flex; gap: 26px; list-style: none; }

.nav-link {
    position: relative;
    display: inline-block; padding-block: 6px;
    color: rgba(255, 255, 255, .85);
    font-size: 16px; font-weight: 500;
    text-decoration: none;
}
.nav-link:hover { color: var(--white); }

/* Menu aktif ditandai garis kuning-hijau, bukan sekadar garis bawah biasa */
.nav-link.is-active { color: var(--white); font-weight: 600; }
.nav-link.is-active::after {
    content: "";
    position: absolute; left: 0; right: 0; bottom: -2px;
    height: 3px; background: var(--lime);
}

.site-header .btn-primary { background: var(--white); color: var(--blue-dark); }
.site-header .btn-primary:hover { background: var(--blue-soft); }
.site-header :focus-visible { outline-color: var(--white); }

.nav-toggle {
    display: none; position: relative;
    width: 44px; height: 44px;
    border: 1px solid rgba(255, 255, 255, .4); border-radius: var(--radius);
    background: transparent; cursor: pointer;
}
.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
    position: absolute; left: 12px; width: 18px; height: 2px;
    background: var(--white); content: "";
    transition: transform .2s ease;
}
.nav-toggle-bar { top: 50%; margin-top: -1px; }
.nav-toggle-bar::before { left: 0; top: -6px; }
.nav-toggle-bar::after  { left: 0; top: 6px; }
.site-header.is-open .nav-toggle-bar { background: transparent; }
.site-header.is-open .nav-toggle-bar::before { transform: translateY(6px) rotate(45deg); }
.site-header.is-open .nav-toggle-bar::after  { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
    .nav-toggle { display: block; }
    .nav-menu {
        display: none;
        position: absolute; left: 0; right: 0; top: 100%;
        flex-direction: column; align-items: stretch; gap: 16px;
        padding: 8px var(--pad) 24px;
        background: var(--blue-dark);
    }
    .site-header.is-open .nav-menu { display: flex; }
    .nav-links { flex-direction: column; gap: 0; }
    .nav-link {
        padding: 15px 0; font-size: 18px;
        border-bottom: 1px solid rgba(255, 255, 255, .15);
    }
    .nav-link.is-active::after { left: 0; right: auto; bottom: 8px; width: 24px; }
    .nav-menu .btn { align-self: flex-start; }
}

/* ========== 5. HERO & JUDUL HALAMAN ========== */
.hero { padding-block: clamp(56px, 7vw, 88px) var(--space); }
.hero .lead { margin-bottom: 36px; }

.hero-media {
    width: 100%;
    margin-top: clamp(44px, 5vw, 64px);
    aspect-ratio: 16 / 7;
    object-fit: cover;
    border-radius: var(--radius);
    background: var(--blue-soft);
}
.hero-media--flush { margin-top: 0; }

/* Judul halaman dalam: pita biru muda, dibatasi garis tipis */
.page-header { padding-top: clamp(44px, 5vw, 64px); }
.page-header--band {
    padding-bottom: clamp(36px, 4vw, 56px);
    background: var(--blue-soft);
    border-bottom: 1px solid #D5DEF2;
}
/* Bila ada gambar, pita berhenti di tengah gambar */
.page-header--band:has(.hero-media) {
    padding-bottom: var(--space);
    background: linear-gradient(var(--blue-soft) 0 60%, var(--paper) 60%);
    border-bottom: 0;
}
.page-header .lead { max-width: 62ch; }

/* Keterangan di halaman detail: berbaris seperti data dokumen */
.detail-meta {
    display: flex; flex-wrap: wrap; gap: 20px 48px;
    margin-top: 32px; padding-top: 24px;
    border-top: 1px solid var(--line);
}
.detail-meta dt { font-size: 14px; font-weight: 500; color: var(--muted); }
.detail-meta dd { margin-top: 2px; font-weight: 600; }

/* ========== 6. KERANGKA BAGIAN ========== */
.section { padding-top: var(--space); }
.section--tight { padding-top: clamp(40px, 4.5vw, 56px); }
.section--last { padding-bottom: var(--space); }

/* Pita berlatar warna */
.band { padding-bottom: var(--space); }
.band--white { background: var(--white); }
.band--blue  { background: var(--blue-soft); }
.band--green { background: var(--green-soft); }
.band--lime  { background: var(--lime-soft); }
.band--red   { background: var(--lime-soft); }   /* nama lama, tetap jalan */

.section:not(.band) + .band,
article + .band { margin-top: var(--space); }

/* Judul bagian + tautan "lihat semua" */
.section-head {
    display: flex; align-items: baseline; justify-content: space-between;
    gap: 16px; margin-bottom: var(--gap);
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
}
.band--white .section-head { border-bottom-color: var(--line); }
.section > .container > .section-title { margin-bottom: var(--gap); }

/* ========== 7. KARTU ========== */
.card-grid { display: grid; gap: var(--gap) 24px; }
.card-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.card-link { display: block; text-decoration: none; }

.card-media {
    width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
    border-radius: var(--radius);
    background: var(--blue-soft);
}
.card--wide .card-media { aspect-ratio: 16 / 9; }

.card-meta {
    margin-top: 18px;
    color: var(--green-dark);
    font-size: 14px; font-weight: 600;
}
.card-title {
    margin-top: 6px;
    font-size: 20px; font-weight: 600; line-height: 1.32;
    letter-spacing: -0.012em;
    text-wrap: balance;
}
.card-link:hover .card-title {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}
.card-text {
    margin-top: 8px; max-width: 42ch;
    color: var(--muted); font-size: 16px;
}

@media (max-width: 900px) { .card-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) {
    .card-grid--3, .card-grid--2 { grid-template-columns: 1fr; gap: 36px; }
}

/* Kutipan (dipakai bila bagian testimoni dihidupkan lagi) */
.quote-card {
    display: flex; flex-direction: column; justify-content: space-between; gap: 28px;
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--line);
    border-top: 3px solid var(--accent, var(--blue));
    border-radius: var(--radius);
}
.quote-text { font-size: 19px; font-weight: 500; line-height: 1.45; }
.quote-person { display: flex; align-items: center; gap: 12px; }
.avatar {
    flex: none; display: grid; place-items: center;
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--accent, var(--blue)); color: var(--white);
    font-weight: 700;
}
.quote-name { display: block; font-size: 15px; font-weight: 600; }
.quote-role { display: block; font-size: 14px; color: var(--muted); }

/* ========== 8. BLOK TEKS-DAN-FOTO ========== */
.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(32px, 5vw, 80px);
}
.split-body { align-self: center; }

.feature-list { display: grid; gap: 28px; margin: 36px 0; }
.feature-list > * {
    padding-left: 18px;
    border-left: 3px solid var(--accent, var(--blue));
}
.feature-title { font-size: 19px; font-weight: 600; letter-spacing: -0.01em; }
.feature-text { margin-top: 6px; max-width: 40ch; color: var(--muted); font-size: 16px; }

.split-media {
    width: 100%; height: 100%; min-height: 420px;
    object-fit: cover;
    background: var(--blue-soft);
    border-radius: var(--radius) 0 0 var(--radius);
}
@media (min-width: 901px) {
    .split-media {
        width: auto;
        margin-right: calc((100vw - min(var(--max), 100vw - 2 * var(--pad))) / -2);
    }
}
@media (max-width: 900px) {
    .split { grid-template-columns: 1fr; }
    .split-media { min-height: 0; aspect-ratio: 4 / 3; border-radius: var(--radius); }
}

/* ========== 9. POLA DUA KOLOM ==========
   Label di kiri, isi di kanan. Susunan ini dipakai di Profil,
   Kontak, dan halaman detail — menyerupai dokumen resmi.        */
.row-2 {
    display: grid;
    grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
    gap: 24px clamp(32px, 6vw, 88px);
    align-items: start;
}
.row-2 > .section-title { margin-bottom: 0; }

.statement {
    max-width: 32ch;
    font-size: clamp(21px, 2.1vw, 27px);
    font-weight: 500; line-height: 1.4;
    letter-spacing: -0.014em;
    color: var(--blue-dark);
    text-wrap: pretty;
}

/* Daftar misi: bernomor karena isinya memang butir-butir resmi */
.mission-list { list-style: none; counter-reset: misi; display: grid; gap: 20px; }
.mission-list li {
    counter-increment: misi;
    display: grid; grid-template-columns: 36px 1fr; gap: 12px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
    font-size: 17px; line-height: 1.6;
}
.mission-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.mission-list li::before {
    content: counter(misi, decimal-leading-zero);
    font-size: 15px; font-weight: 700;
    color: var(--accent, var(--blue));
}

/* Nilai organisasi */
.values > * {
    padding-top: 20px;
    border-top: 3px solid var(--accent, var(--blue));
}

/* Aksen bergilir: biru -> hijau -> kuning-hijau */
.trio > :nth-child(3n+1), .accent-blue  { --accent: var(--blue); }
.trio > :nth-child(3n+2), .accent-green { --accent: var(--green); }
.trio > :nth-child(3n),   .accent-lime,
.accent-red                              { --accent: var(--lime-dark); }

@media (max-width: 820px) { .row-2 { grid-template-columns: 1fr; } }

/* ========== 10. TEKS PANJANG ========== */
.prose { max-width: 66ch; }
.prose p { font-size: 18px; line-height: 1.75; }
.prose p + p { margin-top: 1.15em; }
.prose h2 {
    margin: 1.8em 0 .5em;
    font-size: 23px; font-weight: 600; line-height: 1.3;
    letter-spacing: -0.015em;
}
.prose h2:first-child { margin-top: 0; }
.prose--center { margin: clamp(36px, 4vw, 56px) auto 0; }

/* ========== 11. GALERI ========== */
.filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: var(--gap); }
.pill {
    padding: 9px 16px;
    border: 1px solid var(--line); border-radius: 999px;
    background: var(--white);
    font-size: 14px; font-weight: 600;
    text-decoration: none;
    transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}
.pill:hover { border-color: var(--green); color: var(--green-dark); }
.pill.is-active { background: var(--green); border-color: var(--green); color: var(--white); }

.gallery {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 24px 20px;
}
.gallery-item { display: block; text-decoration: none; }
.gallery-item img {
    width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
    border-radius: var(--radius);
    background: var(--blue-soft);
    transition: opacity .15s ease;
}
.gallery-item:hover img { opacity: .9; }
.gallery-caption { display: block; margin-top: 10px; color: var(--muted); font-size: 15px; }
.gallery-item:hover .gallery-caption { color: var(--ink); }

.lightbox {
    width: min(1100px, 92vw);
    padding: 0; border: 0; background: transparent; overflow: visible;
}
.lightbox::backdrop { background: rgba(13, 27, 62, .92); }
.lightbox img {
    width: auto; max-width: 100%; max-height: 78vh;
    margin: 0 auto; border-radius: var(--radius);
}
.lightbox-caption { margin-top: 14px; text-align: center; color: var(--white); font-size: 15px; }
.lightbox-close { position: absolute; top: -52px; right: 0; background: var(--white); color: var(--ink); }

/* ========== 12. PAGINATION ========== */
.pagination {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
    margin-top: 56px;
}
.page-item {
    min-width: 42px; padding: 11px 14px; text-align: center;
    background: var(--white);
    border: 1px solid var(--line); border-radius: var(--radius);
    font-size: 14px; font-weight: 600; text-decoration: none;
}
a.page-item:hover { border-color: var(--blue); color: var(--blue); }
.page-item.is-current { background: var(--blue); border-color: var(--blue); color: var(--white); }
.page-item.is-disabled { background: transparent; color: #A7B0C2; }

/* ========== 13. KONTAK ========== */
.contact {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
    gap: 40px clamp(32px, 6vw, 88px);
    align-items: start;
}
.contact-card {
    display: flex; flex-direction: column; align-items: flex-start; gap: 6px;
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--line);
    border-top: 4px solid var(--accent, var(--blue));
    border-radius: var(--radius);
}
.contact-card .feature-text { margin-bottom: 20px; }
.contact-card .btn { margin-top: auto; }

.contact-details { display: grid; gap: 22px; margin-bottom: 32px; }
.contact-details dt { font-size: 14px; font-weight: 500; color: var(--muted); }
.contact-details dd { margin-top: 4px; max-width: 42ch; font-size: 18px; }

#lokasi { scroll-margin-top: 96px; }

@media (max-width: 820px) { .contact { grid-template-columns: 1fr; } }


/* ========== 14. HALAMAN ERROR ========== */
.error-page { padding-bottom: var(--space); }
.error-code {
    display: inline-block; margin-bottom: 16px;
    padding: 5px 12px;
    background: var(--lime-soft);
    border-radius: 999px;
    color: var(--lime-dark);
    font-size: 14px; font-weight: 700;
}
.error-actions { margin-top: 36px; }

/* ========== 15. FOOTER ========== */
.site-footer {
    position: relative;
    padding-block: 72px 28px;
    background: var(--navy); color: var(--white);
}

.footer-top {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
    gap: 44px 32px;
}
.footer-name { display: inline-block; text-decoration: none; }
.footer-logo { height: 44px; width: auto; }
.footer-tagline {
    margin-top: 14px; max-width: 30ch;
    color: #A9B4CB; font-size: 15px; line-height: 1.5;
}

.social { display: flex; gap: 14px; list-style: none; margin-top: 28px; }
.social a {
    display: grid; place-items: center;
    width: 40px; height: 40px;
    border: 1px solid rgba(255, 255, 255, .22); border-radius: var(--radius);
    color: #A9B4CB;
    transition: color .15s ease, border-color .15s ease;
}
.social a:hover { color: var(--white); border-color: var(--white); }

.footer-title {
    margin-bottom: 18px;
    color: var(--white);
    font-size: 14px; font-weight: 700; letter-spacing: .01em;
}
.footer-col ul { display: grid; gap: 12px; list-style: none; }
.footer-col a { color: #C7D0E2; font-size: 15px; text-decoration: none; }
.footer-col a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 4px; }
.footer-muted { color: #A9B4CB; font-size: 15px; }

/* Alamat di footer */
.footer-address { margin-top: 10px; max-width: 34ch; color: #A9B4CB; font-size: 15px; line-height: 1.5; }

/* Peta di halaman Kontak */
.map-head {
    display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between;
    gap: 8px 24px; margin-bottom: 20px;
}
.map-frame {
    width: 100%; height: 420px;
    border: 1px solid var(--line); border-radius: var(--radius);
    background: var(--blue-soft);
}

@media (max-width: 560px) { .map-frame { height: 300px; } }

.footer-copy {
    margin-top: 40px; padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    color: #A9B4CB; font-size: 14px;
}

.site-footer :focus-visible { outline-color: var(--white); }

@media (max-width: 900px) {
    .footer-top { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
    .footer-top { grid-template-columns: 1fr 1fr; }
    .map-frame { height: 260px; }
    .brand-logo { height: 32px; }
}

/* ========== AKSESIBILITAS ========== */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* Jarak bawah untuk halaman detail tanpa bagian "lainnya" */
article > .section:last-child { padding-bottom: var(--space); }

/* Gaya artikel B — Dokumen resmi */
.prose { max-width: 62ch; }
.prose p { font-size: 19px; line-height: 1.8; }
.prose p + p { margin-top: 1.25em; }
.prose p:first-child {
    padding-left: 20px;
    border-left: 3px solid var(--blue);
    font-size: 19px;
    font-weight: 500;
    color: var(--blue-dark);
}
.prose h2 {
    margin: 2em 0 .6em;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
    font-size: 22px;
}

/* Gambar di halaman detail tampil utuh, tidak dipotong */
article .hero-media {
    aspect-ratio: auto;
    object-fit: contain;
    background: var(--blue-soft);
}

/* Logo di bagian "Tentang kami": tampil utuh, tidak dipotong */
.split-media--logo {
    object-fit: contain;
    padding: clamp(32px, 4vw, 64px);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    min-height: 360px;
}
@media (min-width: 901px) {
    .split-media--logo { width: 100%; margin-right: 0; }
}

/* Galeri menyesuaikan bentuk asli tiap foto (tidak dipotong) */
.gallery {
    display: block;
    columns: 4 260px;
    column-gap: 20px;
}
.gallery > li {
    break-inside: avoid;
    margin-bottom: 24px;
}
.gallery-item img {
    aspect-ratio: auto;
    object-fit: contain;
}