/* ============================================================
   Alumni Section — two-row horizontal slider + CTA pill
   ============================================================ */

.alumni-section {
  width: 100%;
  background: white;
  padding: 88px 0 96px;
  font-family: var(--font-sans);
  direction: rtl;
  position: relative;
  overflow: hidden;
}
.alumni-blob {
  width: 360px; height: 360px;
  background: var(--gt-pink-soft);
  top: -120px; left: -120px;
  opacity: 0.55;
}

.alumni-head-row {
  max-width: 1180px;
  margin: 0 auto 40px;
  padding: 0 64px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}
.alumni-head-text { max-width: 760px; }
.alumni-head-text h2 {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--gt-ink);
  margin: 0;
  text-wrap: balance;
}
.alumni-head-text p {
  font-size: 20px;
  font-weight: 500;
  color: var(--gt-body);
  margin: 14px 0 0;
  line-height: 1.5;
  text-wrap: pretty;
}

.alumni-arrows {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.alumni-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: white;
  border: 1.5px solid var(--gt-line);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 180ms var(--ease-warm), border-color 180ms var(--ease-warm);
}
.alumni-arrow:hover { background: var(--gt-pink-soft); border-color: var(--gt-pink); }

.alumni-rows {
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 8px 64px 20px;
  -webkit-overflow-scrolling: touch;
  direction: ltr; /* Force consistent scrollLeft=0 at left across all browsers */
}
.alumni-rows::-webkit-scrollbar { display: none; }
.alumni-row {
  display: flex;
  gap: 16px;
}

.alum-card {
  flex-shrink: 0;
  width: 230px;
  direction: rtl; /* Restore RTL text inside each card */
  background: white;
  border: 1px solid var(--gt-line-soft);
  border-radius: 16px;
  padding: 20px 22px 22px;
  box-shadow: 0 4px 16px rgba(110, 28, 64, 0.06);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.alum-card h4 {
  margin: 0;
  font-size: 19px;
  font-weight: 800;
  color: var(--gt-ink);
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.alum-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.alum-meta-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--gt-muted);
  font-weight: 500;
}
.alum-meta-line.phone {
  font-variant-numeric: tabular-nums;
}
.alum-meta-line .phone-text { direction: ltr; }

/* CTA pill (shared style) */
.alumni-cta-wrap {
  text-align: center;
  margin-top: 48px;
}
.cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: none;
  text-decoration: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 28%),
    linear-gradient(180deg, var(--gt-burgundy) 0%, var(--gt-burgundy-deep) 100%);
  color: white;
  font-family: inherit;
  font-weight: 800;
  letter-spacing: -0.01em;
  border-radius: 999px;
  cursor: pointer;
  padding: 18px 40px;
  font-size: 20px;
  transition: transform 220ms var(--ease-warm), box-shadow 220ms var(--ease-warm), filter 220ms var(--ease-warm);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.25),
    inset 0 -2px 0 rgba(0,0,0,0.18),
    0 10px 24px rgba(184, 51, 106, 0.32),
    0 2px 6px rgba(110, 28, 64, 0.2);
  position: relative;
  overflow: hidden;
}
.cta-pill:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.3),
    inset 0 -2px 0 rgba(0,0,0,0.18),
    0 16px 36px rgba(184, 51, 106, 0.42),
    0 2px 6px rgba(110, 28, 64, 0.22);
}
.cta-pill svg { transition: transform 280ms var(--ease-warm); }
.cta-pill:hover svg { transform: translateX(-6px); }

.alumni-cta-note {
  margin: 16px 0 0;
  color: var(--gt-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: 16px;
}

@media (max-width: 768px) {
  .alumni-section { padding: 52px 0 60px; }
  .alumni-head-row {
    padding: 0 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
  }
  .alumni-head-text h2 { font-size: 30px; line-height: 1.1; }
  .alumni-head-text p { font-size: 20px; }
  .alumni-arrows { display: none; }
  .alumni-rows { padding: 6px 20px 16px; gap: 12px; }
  .alumni-row { gap: 12px; }
  .alum-card { width: 200px; padding: 18px 18px 20px; }
  .alum-card h4 { font-size: 17px; }
  .alum-meta-line { font-size: 13px; }
  .alumni-cta-wrap { margin-top: 32px; padding: 0 20px; }
  .cta-pill { padding: 14px 28px; font-size: 17px; }
}
