/* ============================================================
   RR GROUP – leadership.css
   Page-specific styles for Leadership & Team page.
   Base styles (navbar, footer, utilities) come from styles.css
   ============================================================ */

/* ---------- Shared helper ---------- */
.center-line {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   HERO BANNER
   ============================================================ */
.leadership-hero {
  position: relative;
  margin-top: 147px; /* top-strip (49px) + navbar (98px) */
  height: 380px;
  overflow: hidden;
  background: #1B3278; /* fallback if image missing */
}

.leadership-hero.hero-fallback {
  background: linear-gradient(135deg, #1B3278 0%, #0f1f4a 100%);
}

.leadership-hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.leadership-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 20, 60, 0.2) 0%,
    rgba(10, 20, 60, 0.1) 50%,
    rgba(10, 20, 60, 0.25) 100%
  );
}

/* ============================================================
   INTRO SECTION
   ============================================================ */
.lt-intro {
  background: var(--white);
  padding-bottom: 48px;
}

.lt-intro-inner {
  text-align: center;
  max-width: 820px;
}

.lt-intro-text {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--gray-text);
  text-align: center;
  margin: 0 auto;
}

/* ============================================================
   DIRECTORS SECTION
   ============================================================ */
.directors-section {
  background: var(--navy);
  padding: 72px 0 80px;
}

.directors-section .underline-center {
  margin-bottom: 56px;
}

/* Each director row */
.director-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 56px;
}

.director-card:last-child {
  margin-bottom: 0;
}

/* Photo */
.director-img-wrap {
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 2px;
}

.director-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 2px;
}

/* Placeholder for missing photo */
.placeholder-wrap .director-img {
  background: #ccc;
  object-fit: cover;
}

/* Text */
.director-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.director-role {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}

.director-bio {
  font-size: 0.875rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.85);
}

/* ============================================================
   OUR TEAM SECTION
   ============================================================ */
.our-team {
  background: #EAEBEC;
}

.our-team .title-underline {
  margin-bottom: 48px;
}

/* 2-column grid for team categories */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 80px;
}

.team-cat-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.team-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.team-list li {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #1B3278;
  padding-left: 18px;
  position: relative;
}

.team-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.5;
}

/* ============================================================
   RESPONSIVE – Tablet (≤ 900px)
   ============================================================ */
@media (max-width: 900px) {
  .leadership-hero {
    height: 260px;
  }

  .director-card {
    grid-template-columns: 220px 1fr;
    gap: 28px;
  }

  .director-img {
    height: 260px;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 48px;
  }
}

/* ============================================================
   RESPONSIVE – Mobile (≤ 600px)
   ============================================================ */
@media (max-width: 600px) {
  .leadership-hero {
    height: 200px;
  }

  .director-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .director-img {
    height: 260px;
    width: 100%;
  }

  .director-name {
    font-size: 1.3rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
