/* leadership page */

/* ── Industry card placeholder ── */
.ind-img-placeholder {
  background: var(--red);
  background-image: url('pattern.svg');
  background-size: 140%;
  background-position: center;
  background-repeat: no-repeat;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: .55rem !important; line-height: normal !important; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.45);
}

/* team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  margin-top: 48px;
}
.team-card {
  display: flex; flex-direction: column;
  background: #fff;
  overflow: hidden;
  border: 1.5px solid var(--red);
}

.team-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
}
.team-card__img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  display: block;
  transition: transform .5s ease;
}
.team-card:hover .team-card__btn::before { transform: scaleX(1); transition: transform .3s ease; }

.team-card__info {
  background: var(--cream);
  padding: 24px 20px 20px;
  text-align: center;
  flex: 1;
}
.team-card__cat {
  font-family: 'Inter', sans-serif;
  font-size: .55rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--red); display: block; margin-bottom: 10px;
}
.team-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--dark); letter-spacing: -.01em;
  margin-bottom: 8px; line-height: 1.2;
}
.team-card__role {
  font-family: 'Inter', sans-serif;
  font-size: .7rem; font-weight: 400;
  color: var(--muted); line-height: 1.5;
}
.team-card__btn {
  display: block;
  text-align: center;
  margin-top: 0;
}

@media(max-width:900px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:600px) { .team-grid { grid-template-columns: 1fr; } }

/* overview grid */
.ldrs-overview { margin-top: 56px; }

.ldrs-category { margin-bottom: 72px; }
.ldrs-category:last-child { margin-bottom: 0; }

.ldrs-category__label {
  font-family: 'Inter', sans-serif;
  font-size: .58rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--red); margin-bottom: 8px; display: block;
}
.ldrs-category__rule {
  width: 100%; height: 1px;
  background: var(--border); margin-bottom: 36px;
}

.ldrs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px,4vw,48px);
}

.ldrs-card { display: flex; flex-direction: column; }

.ldrs-card__img {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--cream);
  margin-bottom: 20px;
}
.ldrs-card__img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  display: block;
  transition: transform .55s ease;
}
.ldrs-card:hover .ldrs-card__img img { transform: scale(1.04); }

.ldrs-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--dark); letter-spacing: -.01em;
  margin-bottom: 4px;
}
.ldrs-card__title {
  font-family: 'Inter', sans-serif;
  font-size: .6rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--red); margin-bottom: 14px;
}
.ldrs-card__summary {
  font-size: .84rem; font-weight: 300;
  color: var(--muted); line-height: 1.72;
  flex: 1; margin-bottom: 16px;
}
.ldrs-card__tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 18px;
}
.ldrs-card__tag {
  font-family: 'Inter', sans-serif;
  font-size: .55rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--red); border: 1px solid var(--red);
  padding: 4px 10px;
}
.ldrs-card__link {
  font-family: 'Inter', sans-serif;
  font-size: .58rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--dark); transition: color .2s;
}
.ldrs-card__link:hover { color: var(--red); }

.profile-email {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  color: var(--dark);
  margin-top: 16px;
  word-break: break-all;
}
.profile-email strong { color: var(--red); }

/* profile page */
.profile-main {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: clamp(40px,6vw,100px);
  align-items: start;
}
.profile-main__left {
  position: sticky; top: 120px;
  display: flex; flex-direction: column; gap: 28px;
  align-self: start;
}
.profile-main__img {
  aspect-ratio: 1/1;
  overflow: hidden;
  border: 2px solid var(--red);
  flex-shrink: 0;
  font-size: 0;
  line-height: 0;
}
.profile-main__img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  display: block;
  vertical-align: bottom;
}
.profile-main__about-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem,3vw,2.8rem);
  font-weight: 700; color: var(--dark);
  letter-spacing: -.01em; margin-top: 0; margin-bottom: 40px;
  line-height: 1.1;
}
.profile-main__intro {
  font-size: .95rem; font-weight: 500;
  color: #6b6b6b; line-height: 1.75;
  margin-bottom: 20px;
}
.profile-main__bio {
  font-size: .95rem; font-weight: 300;
  color: #6b6b6b; line-height: 1.85;
}
.profile-main__bio p + p { margin-top: 20px; }

/* key info */
.profile-key { margin-top: 0; }
.profile-key__label {
  font-family: 'Inter', sans-serif;
  font-size: .58rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--red); margin-bottom: 24px; display: block;
}
.profile-key__list { display: flex; flex-direction: column; gap: 0; }
.profile-key__item {
  display: grid;
  grid-template-columns: 24px 140px 1fr;
  gap: 12px; align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: .88rem; line-height: 1.6;
}
.profile-key__item:first-child { border-top: 1px solid var(--border); }
.profile-key__icon { margin-top: 8px; flex-shrink: 0; }
.profile-key__field {
  font-weight: 600; color: var(--dark);
  font-size: .82rem;
}
.profile-key__value {
  font-weight: 300; color: #6b6b6b;
  font-size: .88rem;
}
.profile-key__field,
.profile-key__value {
  opacity: 0; transition: opacity .4s ease;
}
.profile-key__field.tc-text-show,
.profile-key__value.tc-text-show { opacity: 1; }

/* ── Engagements ── */
.profile-engagements { display: flex; flex-direction: column; gap: 40px; }
.profile-engagement { display: flex; gap: 28px; align-items: flex-start; }
.profile-engagement__num {
  font-family: 'Gloock', serif;
  font-size: clamp(2rem,3vw,2.8rem);
  color: var(--red); line-height: 1;
  flex-shrink: 0; width: 56px;
}
.profile-engagement__text {
  font-size: .95rem; font-weight: 300;
  color: #6b6b6b; line-height: 1.85;
  padding-top: 8px;
}
.profile-engagement__text strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700;
  color: var(--dark); display: block; margin-bottom: 8px;
}

/* ── Section title ── */
.profile-section { margin-top: 72px; }
.profile-section__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem,3vw,2.8rem);
  font-weight: 700; color: var(--dark);
  letter-spacing: -.01em; margin-bottom: 36px;
  line-height: 1.1;
}

/* ── Responsive ── */
@media(max-width:1024px) {
  .profile-main { grid-template-columns: 260px 1fr; gap: 40px; }
}
@media(max-width:768px) {
  .team-grid { grid-template-columns: 1fr 1fr; }
  .profile-main { grid-template-columns: 1fr; gap: 32px; }
  .profile-main__left { position: static; max-width: 280px; }
  .profile-main__img { aspect-ratio: 1/1; }
  .profile-section__title { font-size: 1.4rem; }
  .profile-engagements { grid-template-columns: 1fr; gap: 32px; }
}
@media(max-width:500px) {
  .team-grid { grid-template-columns: 1fr; }
}
@media(max-width:600px) {
  .ldrs-grid { grid-template-columns: 1fr; }
}
