.about-leadership {
  padding: var(--space-xl) 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

/* ── Background decorations ── */
.about-leadership__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.about-leadership__bg-glow {
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(0, 194, 168, 0.1) 0%, transparent 65%);
}

.about-leadership__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 194, 168, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 194, 168, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ── Section Header ── */
.about-leadership__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-xl);
  position: relative;
  z-index: 1;
}

.about-leadership__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-secondary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: var(--space-sm);
}

.about-leadership__eyebrow-line {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
}

.about-leadership__title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-sm);
}

.about-leadership__title em {
  font-style: normal;
  color: var(--secondary);
  position: relative;
}

.about-leadership__title em::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), transparent);
  border-radius: 2px;
}

.about-leadership__subtitle {
  font-family: var(--font-secondary);
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
}

/* ── Cards Grid ── */
.about-leadership__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}

/* ── Individual Card ── */
.about-leadership__card {
  position: relative;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 194, 168, 0.14);
  transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}

.about-leadership__card:hover {
  border-color: rgba(0, 194, 168, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(0, 194, 168, 0.15);
}

/* Teal corner accent */
.about-leadership__card-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 72px;
  height: 72px;
  border-top: 3px solid var(--secondary);
  border-right: 3px solid var(--secondary);
  border-radius: 0 var(--radius-md) 0 0;
  opacity: 0.5;
  transition: opacity 0.3s;
  pointer-events: none;
}

.about-leadership__card:hover .about-leadership__card-accent {
  opacity: 1;
}

.about-leadership__card-inner {
  display: flex;
  flex-direction: column;
}

/* ── Image Block ── */
.about-leadership__img-wrap {
  position: relative;
  flex-shrink: 0;
}

.about-leadership__img-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #0d2744, #0f3358);
}

.about-leadership__img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: grayscale(10%);
}

.about-leadership__card:hover .about-leadership__img-frame img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.about-leadership__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(11, 31, 58, 0.7) 100%
  );
  z-index: 1;
}

/* Role badge on the image */
.about-leadership__role-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--secondary);
  color: var(--primary);
  font-family: var(--font-primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 50px;
}

.about-leadership__role-icon {
  display: flex;
  align-items: center;
}

.about-leadership__role-icon svg {
  display: block;
}

/* ── Content Block ── */
.about-leadership__content {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.about-leadership__name-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.about-leadership__name {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 4px;
}

.about-leadership__name a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}

.about-leadership__name a:hover {
  color: var(--secondary);
}

.about-leadership__designation {
  font-family: var(--font-secondary);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--secondary);
  letter-spacing: 0.04em;
}

/* Social / external link button */
.about-leadership__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(0, 194, 168, 0.1);
  border: 1px solid rgba(0, 194, 168, 0.2);
  color: var(--secondary);
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}

.about-leadership__social:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--primary);
  transform: translateY(-2px);
}

/* Divider */
.about-leadership__divider {
  height: 1px;
  background: rgba(0, 194, 168, 0.12);
  margin-bottom: var(--space-sm);
}

/* Bio text */
.about-leadership__bio {
  font-family: var(--font-secondary);
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: var(--space-sm);
  flex: 1;
}

/* Expertise tags */
.about-leadership__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.about-leadership__tag {
  font-family: var(--font-secondary);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 5px 12px;
  border-radius: 50px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.about-leadership__card:hover .about-leadership__tag {
  background: rgba(0, 194, 168, 0.1);
  border-color: rgba(0, 194, 168, 0.25);
  color: var(--secondary);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about-leadership__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
}

@media (max-width: 640px) {
  .about-leadership__title {
    font-size: 1.8rem;
  }

  .about-leadership__content {
    padding: var(--space-sm);
  }

  .about-leadership__bio {
    font-size: 0.85rem;
  }
}