/* ══════════════════════════════════════════
   LEADERSHIP SLIDER SECTION
   Figma: "About Page — Leadership"
   • Full-width overflow clip viewport
   • Cards: photo left + content right
   • Peek of next card visible on right
   • Prev/Next chevron buttons + dot dots
══════════════════════════════════════════ */

/* ── Section wrapper ── */
.leadership-section {
  padding: 72px 0 80px 0;
  text-align: center;
  overflow: hidden;
}

.leadership-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: var(--heading-size);
  color: #0d0d0d;
  letter-spacing: -0.3px;
  margin-bottom: 44px;
}

/* ── Grid viewport ── */
.leadership-grid-wrap {
  width: 100%;
  padding: 0 80px;
  box-sizing: border-box;
  max-width: 1400px;
  margin: 0 auto;
}

/* ── Grid: 3 cards in a row ── */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── Individual card ── */
.leadership-grid .leader-card {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  height: auto !important;
  min-height: auto !important;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.08);
}

/* ── Top: portrait photo ── */
.leadership-grid .leader-photo-wrap {
  flex: none !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1 / 1 !important;
  overflow: hidden;
  position: relative;
}

.leadership-grid .leader-photo {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.4s ease;
}

.leader-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}

.leadership-grid .leader-card:hover .leader-photo {
  transform: scale(1.03);
}

/* ── Right: content ── */
.leader-content {
  flex: 1;
  padding: 36px 40px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: left;
  overflow-y: auto;
}

/* Role label */
.leader-role {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.4px;
  color: #8b1a1a;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}

/* Name */
.leader-name {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: var(--subheading-size);
  color: #0d0d0d;
  letter-spacing: -0.3px;
  line-height: 1.15;
  margin-bottom: 6px;
}

/* Specialty / background line */
.leader-specialty {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: var(--content-size);
  color: #666;
  margin-bottom: 18px;
}

/* Bio paragraph */
.leader-bio {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: var(--content-size);
  color: #444;
  line-height: 1.75;
  margin-bottom: 24px;
  flex: 1;
}

/* Pull quote */
.leader-quote {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(139, 26, 26, 0.06);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 0;
}

.leader-quote-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.leader-quote p {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: var(--content-size);
  color: #3a1010;
  line-height: 1.6;
  margin: 0;
}

/* Removed slider nav and dot styles */

/* ── Dark mode ── */
body.dark .leadership-heading {
  color: #f0f0f0;
}

body.dark .leader-card {
  background: #1e1e1e;
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.35);
}

body.dark .leader-name {
  color: #f0f0f0;
}

body.dark .leader-specialty {
  color: #888;
}

body.dark .leader-bio {
  color: #aaa;
}

body.dark .leader-quote {
  background: rgba(139, 26, 26, 0.12);
}

body.dark .leader-quote p {
  color: #e8c0c0;
}

body.dark .leader-nav-btn {
  border-color: #333;
  background: #1e1e1e;
  color: #ccc;
}

body.dark .leader-nav-btn:hover:not(:disabled) {
  border-color: #8b1a1a;
  color: #e03030;
}

body.dark .leader-dot {
  background: #444;
}

body.dark .leader-dot--active {
  background: #e03030;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .leadership-grid-wrap {
    padding: 0 20px;
  }

  .leadership-grid {
    grid-template-columns: 1fr;
  }

  .leadership-grid .leader-card {
    width: 100% !important;
  }

  .leadership-grid .leader-photo-wrap {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
  }

  .leadership-grid .leader-photo {
    object-position: center center;
  }

  .leader-content {
    padding: 24px 24px 28px 24px;
  }

  .leader-name {
    font-size: 22px;
  }

  .leadership-heading {
    font-size: 26px;
  }
}

/* ══════════════════════════════════════════
   CTA SECTION
   Floating white card on bg-texture,
   centred heading + subtext + red button
══════════════════════════════════════════ */
.about-cta-section {
  padding: 64px 80px 72px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* The white floating card */
.about-cta-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 60px 80px 64px 80px;
  text-align: center;
  max-width: 780px;
  width: 100%;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* Heading */
.about-cta-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: var(--heading-size);
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: #0d0d0d;
  margin-bottom: 18px;
}

/* Sub-text */
.about-cta-subtext {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: var(--content-size);
  color: #666;
  line-height: 1.65;
  margin-bottom: 36px;
}

/* Red CTA button */
.about-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #8b1a1a;
  color: #ffffff;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
  box-shadow: 0 4px 16px rgba(139, 26, 26, 0.30);
}

.about-cta-btn:hover {
  background: #7a1616;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139, 26, 26, 0.38);
}

.about-cta-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(139, 26, 26, 0.22);
}

/* Dark mode */
body.dark .about-cta-card {
  background: #1e1e1e;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.40);
}

body.dark .about-cta-heading {
  color: #f0f0f0;
}

body.dark .about-cta-subtext {
  color: #888;
}

/* Responsive */
@media (max-width: 900px) {
  .about-cta-section {
    padding: 48px 24px 56px 24px;
  }

  .about-cta-card {
    padding: 40px 28px 44px 28px;
    border-radius: 16px;
  }

  .about-cta-heading {
    font-size: 26px;
  }
}

/* ── About page: 768px tablet ─────────────────────── */
@media (max-width: 768px) {

  /* Hero: pull red card out of absolute, stack below soldier */
  .deploy-section .deploy-bottom {
    display: flex;
    flex-direction: column;
    height: auto;
    overflow: visible;
  }

  .deploy-section .soldier-wrapper {
    position: relative !important;
    width: 100%;
    height: 320px;
    order: 1;
    flex-shrink: 0;
  }

  .about-card-warpper {
    position: relative !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 0 0 14px 14px;
    padding: 28px 24px;
    flex-direction: column;
    order: 2;
    box-sizing: border-box;
  }

  .about-card-title {
    font-size: 22px;
    padding: 0;
  }

  .about-card-desc {
    font-size: 13px;
    padding: 0;
    margin-top: 8px;
  }

  /* Our Story */
  .story-section {
    padding: 48px 24px 56px;
  }

  .story-heading {
    font-size: 22px;
    margin-bottom: 32px;
  }

  .story-cards-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .story-card {
    padding: 26px 22px 30px;
  }

  /* Leadership Slider */
  .leadership-section {
    padding: 48px 0 56px;
  }

  .leadership-heading {
    font-size: 28px;
    margin-bottom: 32px;
    padding: 0 24px;
  }

  .leadership-grid-wrap {
    padding: 0 24px;
  }

  .leadership-grid .leader-card {
    width: 100% !important;
  }

  .leadership-grid .leader-photo-wrap {
    flex: none !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
    overflow: hidden;
  }

  /* Center face in landscape-oriented stacked card */
  .leadership-grid .leader-photo {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center center;
  }

  .leader-content {
    padding: 28px 28px 32px;
  }

  .leader-name {
    font-size: 24px;
  }

  .leader-bio {
    font-size: 13px;
  }

  .leader-quote p {
    font-size: 12.5px;
  }

  /* CTA */
  .about-cta-section {
    padding: 40px 20px 48px;
  }

  .about-cta-card {
    padding: 40px 28px 44px;
  }

  .about-cta-heading {
    font-size: 26px;
  }
}


