/* Table umum */
.table-contents {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  color: #333;
}

/* Header & cell */
.table-contents th,
.table-contents td {
  border: 1px solid #d0d0d0;
  padding: 8px 10px;
  vertical-align: middle;
}

/* Header */
.table-contents thead th {
  background-color: #f2f2f2;
  text-align: center;
  font-weight: 600;
}

/* Row */
.table-contents tbody tr {
  background-color: #fff;
}

/* Zebra striping */
.table-contents tbody tr:nth-child(even) {
  background-color: #fafafa;
}

/* Hover effect */
.table-contents tbody tr:hover {
  background-color: #f0f7ff;
}

/* Section row (jika ada kategori) */
.table-contents .section {
  font-weight: 600;
  background-color: #e9ecef;
}

/* Alignment helper (opsional) */
.table-contents .text-center {
  text-align: center;
}

.table-contents .text-right {
  text-align: right;
}


.page-hero {
  position: relative !important;
  width: 100%;
  min-height: 300px;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: stretch;
}


.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.45) 35%,
    rgba(0,0,0,0.15) 60%,
    rgba(0,0,0,0.05) 100%
  );
  z-index: 1;
}


.page-hero-inner {
  position: relative !important;
  z-index: 2;

  width: 100%;
  max-width: 1200px;
  margin: 0 auto;

  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;

  padding-left: 40px;
}


.page-hero-title {
  color: #ffffff;
  font-size: 42px;
  font-weight: 700;
  margin: 0;

  text-align: left !important;
  white-space: nowrap;

  text-shadow: 0 4px 16px rgba(0,0,0,0.7);
}


@media (max-width: 768px) {
  .page-hero {
    min-height: 260px;
  }

  .page-hero-inner {
    padding-left: 20px;
  }

  .page-hero-title {
    font-size: 26px;
    white-space: normal;
  }
}


.pdf-wrapper {
    width: 100%;
    max-width: 1100px;
    height: 95vh;
    margin: 40px auto;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 25px 50px rgba(0,0,0,.1);
    overflow: hidden;
}

.pdf-frame {
    width: 100%;
    height: 100%;
    border: none;
}  



.org-image-wrapper {
    max-width: 1100px;
    padding: 20px;
    background: linear-gradient(145deg, #ffffff, #f2f4f8);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.org-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background-color: #fff;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}


@media (max-width: 768px) {
    .org-image-wrapper {
        padding: 14px;
    }

    .org-image {
        border-radius: 10px;
    }
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    border-radius: 14px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    animation: zoomIn 0.35s ease;
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 42px;
    color: #fff;
    cursor: pointer;
    font-weight: 300;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.lightbox-close:hover {
    transform: scale(1.2);
    opacity: 0.8;
}

/* Cursor zoom */
.org-image {
    cursor: zoom-in;
}

@keyframes zoomIn {
    from {
        transform: scale(0.85);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
 
.struktur-organisasi {
  background: #f4f6fb;
  padding: 40px 20px 60px;
  font-family: Arial, sans-serif;
}


.struktur-organisasi .section h3 {
  margin-bottom: 24px;
  font-size: 22px;
  font-weight: bold;
  color: #0b2c6d;
}


.struktur-organisasi .card-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* INI YANG KAMU BUTUH */
  gap: 32px;
}


.struktur-organisasi .card {
  width: 260px; /* 4 kolom desktop */
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}


.struktur-organisasi .card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 14px;
}


.struktur-organisasi .card h4 {
  margin: 14px 0 6px;
  font-size: 15px;
  font-weight: bold;
  color: #0b2c6d;
  text-align: left;
}

.struktur-organisasi .card p {
  margin: 0 0 6px;
  font-size: 14px;
  color: #333;
  text-align: left;
  line-height: 1.4;
}

.struktur-organisasi .card small {
  font-size: 13px;
  color: #555;
  text-align: left;
  display: block;
}

.struktur-organisasi .leader {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.struktur-organisasi .card.large {
  max-width: 300px;
}

.struktur-organisasi .card.large img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  background: #7a7a7a;
  border-radius: 14px;
}

@media (max-width: 1200px) {
  .struktur-organisasi .card {
    width: 240px;
  }
}

@media (max-width: 768px) {
  .struktur-organisasi .card {
    width: 320px;
  }
}

.leader-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}


.leader-card {
  display: flex;
  align-items: flex-start; /* ✅ teks ke atas */
  gap: 24px;
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  max-width: 760px;
  width: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}


.leader-card img {
  width: 260px;              
  aspect-ratio: 3 / 4;       
  object-fit: cover;
  border-radius: 14px;
  flex-shrink: 0;            
}

.leader-info h4 {
  margin: 0 0 10px;
  font-size: 26px;        
  font-weight: 700;
  color: #0b2c6d;
}


.leader-info p {
  margin: 0 0 6px;
  font-size: 20px;
  color: #333;
}

.leader-info small {
  font-size: 18px;
  color: #555;
}


.leader-desc {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid #e6eaf2;
  font-size: 18px;
  line-height: 1.7;
  color: #444;
}


.leader-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.leader-info .jabatan {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}


@media (max-width: 768px) {
  .leader-info h4 {
    font-size: 22px;
  }

  .leader-info .jabatan {
    font-size: 16px;
  }
}

 

