
/* ── Section ── */
.intlz04-section {
  padding: 88px 48px;
  background: #fff;
}

/* ── Header ── */
.intlz04-header {
  text-align: center;
  margin-bottom: 64px;
}

.intlz04-header__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 18px;
  opacity: 0.55;
}

.intlz04-header__eyebrow::before,
.intlz04-header__eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: currentColor;
}

.intlz04-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}

.intlz04-header p {
  font-size: 15px;
  font-weight: 400;
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.7;
  opacity: 0.5;
}

/* ── Grid ── */
.intlz04-team-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px 28px;
  max-width: 1100px;
  margin: 0 auto;
}

/* ── Card ── */
.intlz04-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

/* ── Avatar ring + photo ── */
.intlz04-card__avatar {
  position: relative;
  width: 148px;
  height: 148px;
  margin-bottom: 20px;
  flex-shrink: 0;
}

/* Rotating dashed ring on hover */
.intlz04-card__avatar::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px dashed currentColor;
  opacity: 0;
  transform: rotate(0deg);
  transition: opacity 0.3s ease;
  animation: none;
}

.intlz04-card:hover .intlz04-card__avatar::before {
  opacity: 0.4;
  animation: spin 12s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Solid accent ring */
.intlz04-card__avatar::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2.5px solid transparent;
  transition: border-color 0.3s ease, inset 0.3s ease;
}

.intlz04-card:hover .intlz04-card__avatar::after {
  inset: -4px;
}

.intlz04-card__photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.intlz04-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.45s ease;
}

.intlz04-card:hover .intlz04-card__photo img {
  transform: scale(1.08);
}

/* ── Name & role ── */
.intlz04-card__name {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 5px;
}

.intlz04-card__role {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 14px;
}

/* ── Socials — always visible, minimal ── */
.intlz04-card__socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.intlz04-social {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.intlz04-social:hover {
  transform: translateY(-2px);
  opacity: 0.75;
}

.intlz04-social svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

/* ── Hire Me button — minimal, text only ── */
.intlz04-card__cta {
  margin-top: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s ease, opacity 0.2s ease;
  opacity: 0.45;
}

.intlz04-card__cta:hover {
  gap: 9px;
  opacity: 1;
}

.intlz04-card__cta svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ════════════════════════════════════════
   THEME 1 — MIDNIGHT NAVY
════════════════════════════════════════ */
.intlz04-t-navy { background: #fff; color: #0f1626; }
.intlz04-t-navy .intlz04-header__eyebrow { color: #0f1626; }
.intlz04-t-navy .intlz04-header h2       { color: #0f1626; }
.intlz04-t-navy .intlz04-header p        { color: #0f1626; }
.intlz04-t-navy .intlz04-card__avatar::after  { }
.intlz04-t-navy .intlz04-card:hover .intlz04-card__avatar::after { border-color: #d4af37; }
.intlz04-t-navy .intlz04-card__avatar::before { color: #d4af37; }
.intlz04-t-navy .intlz04-card__name     { color: #0f1626; }
.intlz04-t-navy .intlz04-card__role     { color: #0f1626; }
.intlz04-t-navy .intlz04-social          { background: #f0f3fa; color: #0f1626; }
.intlz04-t-navy .intlz04-card__cta       { color: #0f1626; }

/* ════════════════════════════════════════
   THEME 2 — SAGE GREEN
════════════════════════════════════════ */
.intlz04-t-sage { background: #fff; color: #1e2b18; }
.intlz04-t-sage .intlz04-header__eyebrow { color: #1e2b18; }
.intlz04-t-sage .intlz04-header h2       { color: #1e2b18; }
.intlz04-t-sage .intlz04-header p        { color: #1e2b18; }
.intlz04-t-sage .intlz04-card:hover .intlz04-card__avatar::after { border-color: #3b5e2a; }
.intlz04-t-sage .intlz04-card__avatar::before { color: #3b5e2a; }
.intlz04-t-sage .intlz04-card__name     { color: #1e2b18; }
.intlz04-t-sage .intlz04-card__role     { color: #1e2b18; }
.intlz04-t-sage .intlz04-social          { background: #edf4e6; color: #3b5e2a; }
.intlz04-t-sage .intlz04-card__cta       { color: #3b5e2a; }

/* ════════════════════════════════════════
   THEME 3 — BLUSH CORAL
════════════════════════════════════════ */
.intlz04-t-coral { background: #fff; color: #2e1a16; }
.intlz04-t-coral .intlz04-header__eyebrow { color: #2e1a16; }
.intlz04-t-coral .intlz04-header h2       { color: #2e1a16; }
.intlz04-t-coral .intlz04-header p        { color: #2e1a16; }
.intlz04-t-coral .intlz04-card:hover .intlz04-card__avatar::after { border-color: #e87050; }
.intlz04-t-coral .intlz04-card__avatar::before { color: #e87050; }
.intlz04-t-coral .intlz04-card__name     { color: #2e1a16; }
.intlz04-t-coral .intlz04-card__role     { color: #2e1a16; }
.intlz04-t-coral .intlz04-social          { background: #fff0eb; color: #e87050; }
.intlz04-t-coral .intlz04-card__cta       { color: #c04a2a; }

/* ════════════════════════════════════════
   THEME 4 — SLATE PURPLE
════════════════════════════════════════ */
.intlz04-t-slate { background: #fff; color: #16141f; }
.intlz04-t-slate .intlz04-header__eyebrow { color: #16141f; }
.intlz04-t-slate .intlz04-header h2       { color: #16141f; }
.intlz04-t-slate .intlz04-header p        { color: #16141f; }
.intlz04-t-slate .intlz04-card:hover .intlz04-card__avatar::after { border-color: #8264e6; }
.intlz04-t-slate .intlz04-card__avatar::before { color: #8264e6; }
.intlz04-t-slate .intlz04-card__name     { color: #16141f; }
.intlz04-t-slate .intlz04-card__role     { color: #16141f; }
.intlz04-t-slate .intlz04-social          { background: #f2f0ff; color: #8264e6; }
.intlz04-t-slate .intlz04-card__cta       { color: #6244cc; }

/* ════════════════════════════════════════
   THEME 5 — CLEAN BLUE
════════════════════════════════════════ */
.intlz04-t-blue { background: #fff; color: #111827; }
.intlz04-t-blue .intlz04-header__eyebrow { color: #111827; }
.intlz04-t-blue .intlz04-header h2       { color: #111827; }
.intlz04-t-blue .intlz04-header p        { color: #111827; }
.intlz04-t-blue .intlz04-card:hover .intlz04-card__avatar::after { border-color: #1a5fb4; }
.intlz04-t-blue .intlz04-card__avatar::before { color: #1a5fb4; }
.intlz04-t-blue .intlz04-card__name     { color: #111827; }
.intlz04-t-blue .intlz04-card__role     { color: #111827; }
.intlz04-t-blue .intlz04-social          { background: #eef4fd; color: #1a5fb4; }
.intlz04-t-blue .intlz04-card__cta       { color: #1a5fb4; }

/* ── Responsive ── */
@media (max-width: 680px) {
  .intlz04-section { padding: 56px 20px; }
  .intlz04-team-group { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
}
@media (max-width: 400px) {
  .intlz04-team-group { grid-template-columns: 1fr; }
}