
/* ─── Theme Section Shell ────────────────────────── */
.intlz01-theme-section {
  padding: 80px 40px;
}

/* ─── Section Header ─────────────────────────────── */
.intlz01-team-header {
  text-align: center;
  margin-bottom: 56px;
}

.intlz01-team-header .eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.intlz01-team-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 14px;
}

.intlz01-team-header p {
  font-size: 16px;
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
  opacity: 0.72;
}

/* ─── Team Grid ──────────────────────────────────── */
.intlz01-team-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}

/* ─── Card ───────────────────────────────────────── */
.intlz01-team-card {
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.28s cubic-bezier(.22,.68,0,1.2), box-shadow 0.28s ease;
  position: relative;
}

.intlz01-team-card:hover {
  transform: translateY(-6px);
}

/* Photo wrapper */
.intlz01-team-card__photo {
  position: relative;
  aspect-ratio: 4 / 4.5;
  overflow: hidden;
  flex-shrink: 0;
}

.intlz01-team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.45s ease;
}

.intlz01-team-card:hover .intlz01-team-card__photo img {
  transform: scale(1.04);
}

/* Accent stripe across photo bottom */
.intlz01-team-card__photo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
}

/* Body */
.intlz01-team-card__body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.intlz01-team-card__name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 4px;
}

.intlz01-team-card__role {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.intlz01-team-card__bio {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  flex: 1;
  opacity: 0.78;
  margin-bottom: 20px;
}

/* Social row */
.intlz01-team-card__socials {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.intlz01-team-card__social-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.18s, transform 0.18s;
  text-decoration: none;
  flex-shrink: 0;
}

.intlz01-team-card__social-btn:hover {
  opacity: 0.82;
  transform: scale(1.12);
}

.intlz01-team-card__social-btn svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

/* CTA row */
.intlz01-team-card__actions {
  display: flex;
  gap: 10px;
}

.intlz01-team-btn {
  flex: 1;
  padding: 10px 14px;
  border-radius: 10px;
  border: 2px solid transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: opacity 0.18s, transform 0.16s;
  text-align: center;
}

.intlz01-team-btn:hover {
  opacity: 0.87;
  transform: scale(0.98);
}

.intlz01-team-btn--outline {
  background: transparent !important;
  border-color: currentColor;
}

/* ════════════════════════════════════════════════════
   THEME 1 — MIDNIGHT NAVY
   dark navy bg · gold accents · white cards
════════════════════════════════════════════════════ */
.theme-navy {
  background: #ffffff;
  color: #0f1626;
}

.theme-navy .intlz01-team-header .eyebrow {
  background: #0f1626;
  color: #d4af37;
}

.theme-navy .intlz01-team-header h2 { color: #0f1626; }
.theme-navy .intlz01-team-header p  { color: #5a6070; }

.theme-navy .intlz01-team-card {
  background: #f0f3fa;
  box-shadow: 0 4px 24px rgba(15,22,38,0.08);
  border: 1px solid #dce3f0;
}
.theme-navy .intlz01-team-card:hover {
  box-shadow: 0 16px 48px rgba(15,22,38,0.14);
}

.theme-navy .intlz01-team-card__photo::after { background: #d4af37; }
.theme-navy .intlz01-team-card__name  { color: #0f1626; }
.theme-navy .intlz01-team-card__role  { color: #96700a; }
.theme-navy .intlz01-team-card__bio   { color: #4a5570; }

.theme-navy .intlz01-team-card__social-btn {
  background: #0f1626;
  color: #d4af37;
}

.theme-navy .intlz01-team-btn {
  background: #0f1626;
  color: #d4af37;
}
.theme-navy .intlz01-team-btn--outline {
  background: transparent !important;
  border: 2px solid #0f1626 !important;
  color: #0f1626;
}

/* ════════════════════════════════════════════════════
   THEME 2 — SAGE GREEN
   warm off-white bg · deep sage + terracotta
════════════════════════════════════════════════════ */
.theme-sage {
  background: #ffffff;
  color: #2a2f25;
}

.theme-sage .intlz01-team-header .eyebrow {
  background: #3b5e2a;
  color: #f6faf3;
}

.theme-sage .intlz01-team-header h2 { color: #1e2b18; }
.theme-sage .intlz01-team-header p  { color: #6b7a62; }

.theme-sage .intlz01-team-card {
  background: #f6faf3;
  box-shadow: 0 4px 28px rgba(42,47,37,0.08);
  border: 1px solid #ccdfc2;
}
.theme-sage .intlz01-team-card:hover {
  box-shadow: 0 16px 48px rgba(42,47,37,0.14);
}

.theme-sage .intlz01-team-card__photo::after { background: #c05a3a; }
.theme-sage .intlz01-team-card__name  { color: #1e2b18; }
.theme-sage .intlz01-team-card__role  { color: #c05a3a; }
.theme-sage .intlz01-team-card__bio   { color: #6b7a62; }

.theme-sage .intlz01-team-card__social-btn {
  background: #3b5e2a;
  color: #f6faf3;
}

.theme-sage .intlz01-team-btn {
  background: #3b5e2a;
  color: #f0ede4;
}
.theme-sage .intlz01-team-btn--outline {
  background: transparent !important;
  border: 2px solid #3b5e2a !important;
  color: #3b5e2a;
}

/* ════════════════════════════════════════════════════
   THEME 3 — BLUSH CORAL
   soft cream bg · coral pink · warm rose
════════════════════════════════════════════════════ */
.theme-coral {
  background: #ffffff;
  color: #2e1a16;
}

.theme-coral .intlz01-team-header .eyebrow {
  background: #e87050;
  color: #ffffff;
}

.theme-coral .intlz01-team-header h2 { color: #2e1a16; }
.theme-coral .intlz01-team-header p  { color: #9a7060; }

.theme-coral .intlz01-team-card {
  background: #fff8f5;
  box-shadow: 0 4px 24px rgba(192,74,42,0.07);
  border: 1px solid #f5d0c2;
}
.theme-coral .intlz01-team-card:hover {
  box-shadow: 0 16px 48px rgba(192,74,42,0.14);
}

.theme-coral .intlz01-team-card__photo::after { background: #e87050; }
.theme-coral .intlz01-team-card__name  { color: #2e1a16; }
.theme-coral .intlz01-team-card__role  { color: #c04a2a; }
.theme-coral .intlz01-team-card__bio   { color: #9a7060; }

.theme-coral .intlz01-team-card__social-btn {
  background: #e87050;
  color: #ffffff;
}

.theme-coral .intlz01-team-btn {
  background: #e87050;
  color: #fff;
}
.theme-coral .intlz01-team-btn--outline {
  background: transparent !important;
  border: 2px solid #e87050 !important;
  color: #c04a2a;
}

/* ════════════════════════════════════════════════════
   THEME 4 — SLATE PURPLE
   very dark slate bg · violet + lavender
════════════════════════════════════════════════════ */
.theme-slate {
  background: #ffffff;
  color: #ddd8f0;
}

.theme-slate .intlz01-team-header .eyebrow {
  background: #8264e6;
  color: #ffffff;
}

.theme-slate .intlz01-team-header h2 { color: #16141f; }
.theme-slate .intlz01-team-header p  { color: #666088; }

.theme-slate .intlz01-team-card {
  background: #f7f5ff;
  box-shadow: 0 4px 24px rgba(130,100,230,0.10);
  border: 1px solid #e8e3f8;
}
.theme-slate .intlz01-team-card:hover {
  box-shadow: 0 16px 48px rgba(100,70,200,0.16);
}

.theme-slate .intlz01-team-card__photo::after { background: #8264e6; }
.theme-slate .intlz01-team-card__name  { color: #16141f; }
.theme-slate .intlz01-team-card__role  { color: #6244cc; }
.theme-slate .intlz01-team-card__bio   { color: #5a5478; }

.theme-slate .intlz01-team-card__social-btn {
  background: #8264e6;
  color: #ffffff;
}

.theme-slate .intlz01-team-btn {
  background: #8264e6;
  color: #fff;
}
.theme-slate .intlz01-team-btn--outline {
  background: transparent !important;
  border: 2px solid #8264e6 !important;
  color: #6244cc;
}

/* ════════════════════════════════════════════════════
   THEME 5 — CLEAN LIGHT (minimal white)
   pure white bg · charcoal + cerulean blue
════════════════════════════════════════════════════ */
.theme-white {
  background: #ffffff;
  color: #1a1a1a;
}

.theme-white .intlz01-team-header .eyebrow {
  background: #1a5fb4;
  color: #ffffff;
}

.theme-white .intlz01-team-header h2 { color: #111111; }
.theme-white .intlz01-team-header p  { color: #787878; }

.theme-white .intlz01-team-card {
  background: #f8f8f8;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border: 1px solid #ebebeb;
}
.theme-white .intlz01-team-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.10);
  border-color: #d0d0d0;
}

.theme-white .intlz01-team-card__photo::after { background: #1a5fb4; }
.theme-white .intlz01-team-card__name  { color: #111111; }
.theme-white .intlz01-team-card__role  { color: #1a5fb4; }
.theme-white .intlz01-team-card__bio   { color: #787878; }

.theme-white .intlz01-team-card__social-btn {
  background: #1a5fb4;
  color: #ffffff;
}

.theme-white .intlz01-team-btn {
  background: #1a5fb4;
  color: #fff;
}
.theme-white .intlz01-team-btn--outline {
  background: transparent !important;
  border: 2px solid #1a5fb4 !important;
  color: #1a5fb4;
}

/* ─── Responsive ─────────────────────────────────── */
@media (max-width: 680px) {
  .intlz01-theme-section { padding: 56px 20px; }
  .intlz01-team-group { grid-template-columns: 1fr 1fr; gap: 18px; }
  .intlz01-team-card__body { padding: 16px 18px 18px; }
}

@media (max-width: 440px) {
  .intlz01-team-group { grid-template-columns: 1fr; }
}
