/* ================= ABOUT PAGES ================= */

.about-wrapper {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
}

.about-wrapper h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #048149;
}

.about-wrapper p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.about-wrapper ul {
    padding-left: 20px;
}

.about-wrapper ul li {
    margin-bottom: 8px;
}

/* PROFIL PIMPINAN */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
    text-align: justify;
    max-width: 1100px;
    margin: 60px auto;   /* 🔑 jarak antar blok */
}

/* versi terbalik */
.two-column.reverse {
    grid-template-columns: 1.2fr 1fr;
}

.two-column.reverse img {
    order: 2;
}

.two-column.reverse div {
    order: 1;
}
.two-column img {
    width: 100%;
    max-width: 420px;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,.15);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .two-column {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .two-column img {
        max-width: 280px;
        margin: auto;
    }
}

/* STRUKTUR */
.struktur-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
}

.struktur-table th,
.struktur-table td {
    padding: 14px 16px;
    border: 1px solid #ddd;
}

.struktur-table th {
    background: #048149;
    color: white;
}
/* HERO STRUKTUR */


.struktur-gambar {
    width: 100%;
    margin: 0;
    padding: 0;

    display: flex;
    flex-direction: column;
    gap: 0; /* ga ada jarak aneh */
}

.struktur-gambar img {
    width: 100vw;      /* FULL layar */
    max-width: 100%;
    height: auto;
    display: block;
}


/* PROGRAM */
.program-list li {
    background: #f3fdf9;
    padding: 10px 14px;
    border-left: 4px solid #048149;
    margin-bottom: 10px;
    list-style: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .two-column {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
/* ===== HERO Kurikulum (model homepage) ===== */
.hero.hero-kurikulum {
    height: 430px;
    background: url("/images/kurikulum/hero.png") center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
}

/* Biar teks kebaca (optional tapi recommended) */
.hero.hero-kurikulum::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.35);
}

.hero.hero-kurikulum .hero-content {
    position: relative;
    text-align: center;
    padding: 0 16px;
    max-width: 900px;
}

.hero.hero-kurikulum h1 {
    margin: 0;
    font-size: 36px;
    font-weight: 900;
}

.hero.hero-kurikulum p {
    margin-top: 10px;
    font-size: 16px;
    opacity: .95;
}


.kurikulum-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  align-items: start;
}

.kurikulum-text {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  text-align: justify;
}

.kurikulum-text h2 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 800;
}

.kurikulum-list {
  margin: 0;
  padding-left: 18px;
  line-height: 1.9;
}

.kurikulum-note {
  margin-top: 14px;
  padding: 12px 14px;
  background: #f6f7fb;
  border-radius: 14px;
}

.kurikulum-side-img {
  width: 100%;
  height: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  display: block;
}

/* Responsive */
@media (max-width: 900px) {
  .kurikulum-grid {
    grid-template-columns: 1fr;
  }
  .kurikulum-hero-img {
    height: 240px;
  }
  .kurikulum-side-img {
    max-height: 260px;
  }
}
