/* ===========================
   ICOVRI 10 — Leadership Section
   =========================== */

#leadership { background: #dff9fc; }

/* ---- 4-column grid ---- */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ---- Card ---- */
.leader-card {
  background: #ffffff;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
}

.leader-card:hover {
  box-shadow: 0 8px 32px rgba(26, 184, 212, .15);
  border-color: var(--teal-bright);
}

/* ---- Photo ---- */
.leader-photo-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #e8f7fa;
}

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

.leader-card:hover .leader-photo-wrap img {
  transform: scale(1.04);
}

/* ---- Info strip ---- */
.leader-info {
  padding: 20px 18px;
  border-top: 2px solid var(--teal-bright);
}

.leader-role {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #c9a227;
  font-weight: 700;
  margin-bottom: 6px;
}

.leader-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: #083b45;
  margin-bottom: 6px;
  line-height: 1.3;
}

.leader-title {
  font-size: 12px;
  color: #3a6e7e;
  line-height: 1.5;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .leadership-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .leadership-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .leader-info { padding: 14px; }
  .leader-name { font-size: 14px; }
}
