/* ============================================================
   PT BADAK NGL — KOMISARIS PAGE STYLES
   ============================================================ */


/* ── Centered Profile Card (shared with direksi) ──────────── */
.dir-profile-center {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.06);
  height: 100%;
  transition: transform .3s, box-shadow .3s;
}
.dir-profile-center:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.13);
}
.dir-center-header {
  position: relative;
  height: 140px;
}
.dir-center-photo {
  position: absolute;
  bottom: -65px;
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #0057A8;
  box-shadow: 0 6px 24px rgba(0,0,0,0.22);
  background: #f0f0f0;
}
.dir-center-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.dir-center-body {
  padding: 80px 36px 36px;
}
.dir-center-body .dir-bio {
  text-align: justify;
}

/* ── Badge / name / title / divider / bio / highlights ─────── */
.dir-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px; font-weight: 800;
  letter-spacing: 1.8px; text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  width: fit-content;
}
.dir-name {
  font-size: 20px; font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 6px;
}
.dir-title {
  font-size: 13px; font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.dir-divider {
  height: 2px;
  border-radius: 2px;
  margin-bottom: 16px;
  width: 40px;
}
.dir-bio {
  font-size: 13.5px;
  color: #555;
  line-height: 1.85;
  margin-bottom: 20px;
}
.dir-highlights { display: flex; flex-wrap: wrap; gap: 8px; }
.dir-highlight {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600;
  color: var(--text-muted);
  background: var(--light-gray);
  border-radius: 8px;
  padding: 5px 10px;
}

/* ── Duty cards ────────────────────────────────────────────── */
.duty-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform .3s, box-shadow .3s;
  height: 100%;
}
.duty-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.12);
}
.duty-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal-mid));
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: #fff;
  margin-bottom: 20px;
}
.duty-card h5 { font-size: 17px; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.duty-card p  { font-size: 14px; color: #666; line-height: 1.75; margin: 0; }

/* =============================================================
   MOBILE RESPONSIVE
   ============================================================= */

@media (max-width: 767px) {
  .dir-center-body {
    padding: 72px 24px 28px;
  }
  .dir-name {
    font-size: 17px;
  }
  .dir-bio {
    font-size: 13px;
  }
  .duty-card {
    padding: 24px 20px;
  }
  .duty-card h5 {
    font-size: 15px;
  }
  .duty-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .dir-center-header {
    height: 100px;
  }
  .dir-center-photo {
    width: 110px;
    height: 110px;
    bottom: -55px;
  }
  .dir-center-body {
    padding: 64px 18px 24px;
  }
}
