﻿/* ── Academics page styles ───────────────────────────────── */

/* ─── SECTION LABEL (above heading) ─────────────────────── */
.acad-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}

/* ─── KEY FOCUS AREAS GRID ───────────────────────────────── */
.acad-focus-heading {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #888;
  margin-top: 22px;
  margin-bottom: 12px;
}
.acad-focus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.acad-focus-item {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--blue);
  padding: 10px 14px;
  background: rgba(62, 66, 150, 0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 9px;
  line-height: 1.3;
}
.acad-focus-item::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

/* Reversed fac-item: right-align text but left-align the focus grid */
.fac-item--rev .acad-focus-grid {
  direction: rtl;
}
.fac-item--rev .acad-focus-item {
  direction: ltr;
}
.fac-item--rev .fac-text .acad-label,
.fac-item--rev .fac-text .acad-focus-heading {
  text-align: right;
}

/* ─── HERO CTA BUTTONS (fac-hero variant) ───────────────── */
.fac-hero-btns {
  display: flex;
  gap: 14px;
  margin-top: 26px;
  flex-wrap: wrap;
}

/* ─── ACADEMIC OVERVIEW (centered text section) ─────────── */
.acad-overview {
  padding: 80px;
  background: var(--white);
}
.acad-overview-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.acad-overview-inner h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1.2;
  margin-bottom: 22px;
}
.acad-overview-inner p {
  font-size: 14px;
  color: #555;
  line-height: 1.62;
  margin-bottom: 16px;
}

/* ─── WHY STAND APART — PILLAR CARDS ────────────────────── */
.acad-pillars {
  padding: 80px;
  background: var(--blue);
}
.acad-pillars-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  margin-bottom: 10px;
}
.acad-pillars h2 {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 48px;
}
.acad-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.acad-pillar-card {
  background: #fff;
  border-radius: 14px;
  padding: 30px 22px;
  text-align: center;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.15);
}
.acad-pillar-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(62, 66, 150, 0.1);
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.acad-pillar-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.acad-pillar-label {
  font-size: 13px;
  font-weight: 700;
  color: #1e2060;
  line-height: 1.4;
}

/* ─── HERO TAG ────────────────────────────────────────────── */
.acad-hero-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50px;
  padding: 5px 14px;
  margin-bottom: 14px;
}

/* ─── EMOJI FOCUS ITEMS (emoji icon replaces dot) ───────── */
.acad-emoji-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.acad-emoji-item {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--blue);
  padding: 10px 14px;
  background: rgba(62, 66, 150, 0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.3;
}

/* ─── LEARNING APPROACH SECTION (standalone blue) ───────── */
.acad-approach {
  padding: 80px;
  background: var(--blue);
  text-align: center;
}
.acad-approach-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
}
.acad-approach h2 {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 18px;
}
.acad-approach > p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto 44px;
}
.acad-approach-pills {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1000px;
  margin: 0 auto;
}
.acad-approach-pill {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  padding: 18px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
}

/* ─── ASSESSMENT SECTION ──────────────────────────────────── */
.acad-assessment {
  padding: 80px;
  background: #f6f7fc;
}
.acad-assessment-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.acad-assessment-inner h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1.2;
  margin-bottom: 22px;
}
.acad-assessment-inner p {
  font-size: 14px;
  color: #555;
  line-height: 1.62;
  margin-bottom: 16px;
}
