/* =============================================
   EDUCATION PAGE
   ============================================= */

/* Hero */
.edu-hero {
  background: linear-gradient(135deg, var(--color-navy) 0%, #152d4a 100%);
  color: #fff;
  padding: 100px 24px 72px;
  text-align: center;
}
.edu-hero__inner {
  max-width: 720px;
  margin: 0 auto;
}
.edu-hero h1 {
  color: #fff;
  margin-bottom: 16px;
}
.edu-hero__sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* Sections */
.edu-section {
  padding: 80px 24px;
}
.edu-section--surface {
  background-color: var(--color-surface);
}
.edu-section__header {
  text-align: center;
  margin-bottom: 48px;
}

/* Card grid (formal degrees) */
.edu-cards-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.edu-card {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 12px rgba(30,58,95,0.07);
  padding: 32px 24px;
  text-align: center;
}
.edu-section--surface .edu-card {
  background: #fff;
}

.edu-card__icon {
  font-size: 2rem;
  margin-bottom: 14px;
}
.edu-card h4 {
  font-size: 1.0625rem;
  color: var(--color-navy);
  margin-bottom: 4px;
}
.edu-card__institution {
  font-size: 0.875rem;
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: 4px;
}
.edu-card__year {
  font-size: 0.8125rem;
  color: var(--color-subtext);
  margin-bottom: 12px;
}
.edu-card__detail {
  font-size: 0.875rem;
  color: var(--color-subtext);
  line-height: 1.65;
  margin: 0;
}

/* Wide cards (executive programmes, certifications) */
.edu-wide-list {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.edu-card--wide {
  max-width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
  padding: 28px;
}
.edu-card--wide .edu-card__icon {
  margin-bottom: 0;
  font-size: 1.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.edu-card--wide h4 { margin-bottom: 4px; }

/* Philosophy */
.edu-philosophy {
  background: var(--color-navy);
  color: #fff;
  padding: 80px 24px;
  text-align: center;
}
.edu-philosophy__inner {
  max-width: 640px;
  margin: 0 auto;
}
.edu-philosophy h2 {
  color: #fff;
  margin-bottom: 20px;
}
.edu-philosophy p {
  color: rgba(255,255,255,0.75);
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 28px;
}
.edu-philosophy .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.edu-philosophy .btn-outline:hover {
  background: #fff;
  color: var(--color-navy);
  border-color: #fff;
}

/* CTA */
.edu-cta {
  padding: 80px 24px;
  text-align: center;
}
.edu-cta__inner {
  max-width: 600px;
  margin: 0 auto;
}
.edu-cta__sub {
  color: var(--color-subtext);
  font-size: 1.0625rem;
  margin-bottom: 28px;
}
.edu-cta__buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  .edu-cards-grid {
    grid-template-columns: 1fr;
  }
  .edu-card--wide {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .edu-cta__buttons {
    flex-direction: column;
    align-items: center;
  }
  .edu-cta__buttons .btn-secondary,
  .edu-cta__buttons .btn-outline {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}
