/* ==========================================================================
   ESN BELGIUM - STUDENT PAGE STYLES (FOCUSED & CLEAN)
   ========================================================================== */

.student-hero-banner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem auto;
}

.student-hero-banner .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 1rem;
  background: var(--esn-cyan-light);
  color: var(--esn-cyan-dark);
  border: 1px solid var(--esn-cyan-border);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.student-hero-banner h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 850;
  color: var(--esn-navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.student-hero-banner p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Tab Switcher ── */
.student-tab-switcher-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 3.5rem;
}

.student-tab-switcher {
  display: inline-flex;
  background: #f1f5f9;
  padding: 0.4rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  gap: 0.35rem;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.03);
}

.student-tab-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.85rem;
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-muted);
  background: transparent;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.student-tab-toggle:hover {
  color: var(--esn-navy);
}

.student-tab-toggle.active {
  color: var(--esn-navy);
  background: #ffffff;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08), 0 1px 2px rgba(15, 23, 42, 0.04);
}

.student-tab-toggle svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke-width: 2.2;
}

.student-tab-toggle.active svg {
  color: var(--esn-cyan);
}

/* ── Incoming Section Layout ── */
.student-incoming-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.student-incoming-text h2 {
  font-size: 2.2rem;
  font-weight: 850;
  color: var(--esn-navy);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.student-incoming-text p {
  font-size: 1.05rem;
  color: var(--text-main);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.student-incoming-image-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  border: 1px solid var(--border);
  background: #ffffff;
  text-align: center;
}

.student-incoming-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.student-incoming-image-wrap:hover img {
  transform: scale(1.02);
}

/* ── Outgoing Section Layout ── */
.student-outgoing-wrapper {
  max-width: 960px;
  margin: 0 auto;
}

.student-outgoing-banner-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  border: 1px solid var(--border);
  margin-bottom: 2.5rem;
  background: #ffffff;
}

.student-outgoing-banner-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.student-outgoing-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}

.student-outgoing-card h2 {
  font-size: 2.2rem;
  font-weight: 850;
  color: var(--esn-navy);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.student-questions-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.student-questions-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--esn-navy);
  line-height: 1.55;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1rem 1.25rem;
}

.student-questions-list li svg {
  width: 20px;
  height: 20px;
  color: var(--esn-cyan);
  flex-shrink: 0;
  margin-top: 0.2rem;
  stroke-width: 2.5;
}

.student-text-body {
  font-size: 1.05rem;
  color: var(--text-main);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.student-highlight-box {
  background: #f0f9ff;
  border-left: 4px solid var(--esn-cyan);
  border-radius: 8px;
  padding: 1.15rem 1.35rem;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--esn-navy);
  margin-bottom: 2.5rem;
}

.student-subheading {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--esn-navy);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #f1f5f9;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .student-incoming-card {
    grid-template-columns: 1fr;
    padding: 2rem;
    gap: 2rem;
  }
  .student-outgoing-card {
    padding: 2rem;
  }
  .student-tab-switcher {
    width: 100%;
    flex-direction: column;
    border-radius: 16px;
  }
  .student-tab-toggle {
    width: 100%;
    justify-content: center;
  }
}
