/* About page */
/* Legacy / story */
.about-legacy {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.about-legacy-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: clamp(32px, 4.5vw, 48px);
}

.about-mini-stat {
  padding: 22px 18px 24px;
  text-align: center;
  background: #fff;
  border: 1px solid #e8ecf1;
  border-radius: 14px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 8px 24px rgba(15, 23, 42, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.about-mini-stat:hover {
  border-color: rgba(236, 103, 52, 0.35);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 12px 28px rgba(15, 23, 42, 0.07);
}

.about-mini-stat__value {
  display: block;
  font-size: clamp(1.55rem, 1.1rem + 1.1vw, 1.95rem);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

.about-mini-stat__label {
  display: block;
  margin-top: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #64748b;
  letter-spacing: 0.02em;
}

.about-legacy-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: clamp(28px, 4.5vw, 56px);
  align-items: start;
}

.about-legacy-visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.about-legacy-visual img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
  min-height: 240px;
  object-fit: cover;
}

.about-legacy-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 13px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(15, 23, 42, 0.88);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.about-legacy-copy p {
  margin: 0 0 16px;
}

.about-legacy-copy p:last-child {
  margin-bottom: 0;
}

.about-legacy-actions {
  margin-top: 22px;
}

/* Partner universities strip */
/* Partner universities strip — Premium Redesign */
.about-partners {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  padding: clamp(60px, 7vw, 90px) 0;
  border-bottom: 1px solid #e2e8f0;
  position: relative;
}

.about-partner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 28px);
  margin-top: 16px;
}

.about-partner-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 20px -4px rgba(15, 23, 42, 0.05), 0 1px 3px rgba(15, 23, 42, 0.03);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.35s ease;
  position: relative;
}

.about-partner-card:hover {
  transform: translateY(-8px);
  border-color: rgba(236, 103, 52, 0.4);
  box-shadow: 0 24px 48px -12px rgba(236, 103, 52, 0.18), 0 8px 16px -8px rgba(15, 23, 42, 0.06);
}

.about-partner-media {
  position: relative;
  width: 100%;
  height: 185px;
  overflow: hidden;
  background: #f1f5f9;
}

.about-partner-media__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-partner-card:hover .about-partner-media__img {
  transform: scale(1.06);
}

.about-partner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.02) 0%, rgba(15, 23, 42, 0.22) 100%);
  pointer-events: none;
}

.about-partner-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  font-size: 0.725rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 5px 12px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.badge-purple { background: rgba(147, 51, 234, 0.9); color: #ffffff; }
.badge-orange { background: rgba(234, 88, 12, 0.9); color: #ffffff; }
.badge-green  { background: rgba(16, 185, 129, 0.9); color: #ffffff; }
.badge-blue   { background: rgba(37, 99, 235, 0.9); color: #ffffff; }
.badge-pink   { background: rgba(219, 39, 119, 0.9); color: #ffffff; }
.badge-amber  { background: rgba(217, 119, 6, 0.9); color: #ffffff; }

.about-partner-info {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.about-partner-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 4px;
  line-height: 1.3;
}

.about-partner-location {
  font-size: 0.8125rem;
  color: #64748b;
  margin: 0 0 14px;
  font-weight: 500;
}

.about-partner-meta {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed #e2e8f0;
  margin-bottom: 16px;
}

.about-partner-courses {
  font-size: 0.78rem;
  font-weight: 600;
  color: #475569;
  letter-spacing: 0.01em;
}

.about-partner-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brand-orange, #ec6734);
}

.about-partner-arrow {
  display: inline-block;
  transition: transform 0.25s ease;
  font-size: 1.1rem;
}

.about-partner-card:hover .about-partner-arrow {
  transform: translateX(6px);
}

/* Timeline — desktop: inline row; mobile: vertical rail + stacked cards */
.about-timeline {
  background: linear-gradient(180deg, #fafbfc 0%, #f1f5f9 100%);
  border-bottom: 1px solid #e2e8f0;
}

.about-timeline-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border: none;
  max-width: none;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: clamp(12px, 1.8vw, 18px);
}

.about-timeline-item {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
  display: block;
}

.about-timeline-item::before {
  display: none;
}

.about-timeline-card {
  height: 100%;
  background: #fff;
  border: 1px solid #e8ecf1;
  border-radius: 14px;
  padding: 18px 16px 20px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
}

.about-timeline-card__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 14px;
  margin-bottom: 10px;
}

.about-timeline-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.5rem;
  padding: 7px 12px;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #475569 0%, #1e293b 100%);
  border-radius: 8px;
}

.about-timeline-item:first-child .about-timeline-badge {
  background: linear-gradient(135deg, var(--brand-orange) 0%, #c2410c 100%);
}

.about-timeline-badge--now {
  letter-spacing: 0.14em;
  background: linear-gradient(135deg, #0f766e 0%, #0d9488 100%);
}

.about-timeline-title {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-size: clamp(0.95rem, 0.88rem + 0.35vw, 1.0625rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

.about-timeline-card .about-prose {
  margin: 0;
  font-size: clamp(0.88rem, 0.82rem + 0.2vw, 0.95rem);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .about-timeline-list {
    display: block;
    flex-direction: unset;
    max-width: 680px;
    margin: 0 auto;
    padding: 4px 0 4px 26px;
    border-left: 3px solid #e2e8f0;
  }

  .about-timeline-item {
    flex: none;
    margin: 0 0 18px;
  }

  .about-timeline-item:last-child {
    margin-bottom: 0;
  }

  .about-timeline-item::before {
    display: block;
    content: "";
    position: absolute;
    left: -35px;
    top: 26px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #94a3b8;
    box-shadow: 0 0 0 4px #f1f5f9;
  }

  .about-timeline-item:first-child::before {
    top: 26px;
    background: var(--brand-orange);
    border-color: #fff;
    box-shadow: 0 0 0 4px rgba(236, 103, 52, 0.25);
  }

  .about-timeline-card {
    height: auto;
    padding: 18px 20px 20px;
  }

  .about-timeline-title {
    font-size: 1.0625rem;
  }

  .about-timeline-card .about-prose {
    font-size: 0.95rem;
  }
}

@media (max-width: 520px) {
  .about-timeline-list {
    padding-left: 22px;
  }

  .about-timeline-item::before {
    left: -31px;
  }

  .about-timeline-item:first-child::before {
    left: -31px;
  }
}

/* Who we are / role */
.about-role {
  background: #fff;
  border-bottom: 1px solid #e8ecf1;
}

.about-role-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 4.5vw, 56px);
  align-items: center;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.about-role-visual {
  position: relative;
}

.about-role-frame {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  overflow: hidden;
  /* border: 1px solid #e8ecf1; */
  /* box-shadow: 0 20px 48px rgba(15, 23, 42, 0.1); */
}

.about-role-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-role-accent {
  position: absolute;
  right: -8px;
  bottom: -12px;
  width: 45%;
  height: 35%;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(236, 103, 52, 0.12) 0%, rgba(32, 179, 74, 0.08) 100%);
  z-index: 0;
}

.about-role-content .about-section-title {
  max-width: none;
}

.about-role-content .about-lead {
  margin-top: 8px;
}

.about-role-content .about-prose {
  margin-top: 14px;
}

/* Benefits */
.about-benefits {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.about-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 22px);
}

.about-benefit-card {
  padding: clamp(24px, 2.6vw, 30px) 22px 26px;
  background: #fff;
  border: 1px solid #e8ecf1;
  border-radius: 14px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.95) inset, 0 10px 28px rgba(15, 23, 42, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.about-benefit-card:hover {
  transform: translateY(-3px);
  border-color: rgba(236, 103, 52, 0.22);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.09);
}

.about-benefit-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(150deg, #64748b 0%, #334155 100%);
  box-shadow: 0 8px 18px rgba(51, 65, 85, 0.25);
}

.about-benefit-card:nth-child(1) .about-benefit-icon {
  background: linear-gradient(150deg, #ff8c52 0%, var(--brand-orange) 50%, #ea580c 100%);
  box-shadow: 0 8px 20px rgba(236, 103, 52, 0.28);
}

.about-benefit-icon svg {
  width: 24px;
  height: 24px;
}

.about-benefit-card h3 {
  margin: 0 0 10px;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #0f172a;
}

.about-benefit-card p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #64748b;
}

/* Metrics — dark editorial panel (grid + swirl, high-contrast type) */
.about-metrics {
  position: relative;
  color: #f1f5f9;
  overflow: hidden;
  background-color: #0a0b0d;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.034) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.034) 1px, transparent 1px);
  background-size: 22px 22px;
  background-position: center top;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

.about-metrics::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 85% 55% at 50% -5%, rgba(255, 255, 255, 0.055), transparent 58%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(236, 103, 52, 0.08), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.about-metrics-deco {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.about-metrics-swirl {
  position: absolute;
  top: -12%;
  left: 50%;
  width: min(125vw, 1100px);
  height: auto;
  max-height: 85%;
  transform: translateX(-48%);
  opacity: 1;
}

.about-metrics-inner {
  position: relative;
  z-index: 1;
}

.about-metrics-sticker {
  position: absolute;
  top: clamp(18px, 4vw, 36px);
  right: clamp(10px, 3.5vw, 40px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 11px 14px 12px;
  max-width: 132px;
  text-align: center;
  background: linear-gradient(165deg, #bae6fd 0%, #7dd3fc 42%, #38bdf8 100%);
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35), 0 1px 0 rgba(255, 255, 255, 0.5) inset;
  transform: rotate(7deg);
}

.about-metrics-sticker__star {
  font-size: 0.65rem;
  line-height: 1;
  color: #fbbf24;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
}

.about-metrics-sticker__text {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.8125rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.25;
  color: #0f172a;
  letter-spacing: 0.01em;
}

.about-metrics-head {
  position: relative;
  z-index: 1;
}

.about-kicker--on-dark {
  color: #94a3b8;
  background: rgba(255, 255, 255, 0.06);
  border-left-color: #38bdf8;
}

.about-metrics-title {
  margin: 0 auto;
  max-width: 20ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.85rem, 1.2rem + 1.8vw, 2.75rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fafafa;
  text-align: center;
}

.about-title-rule--on-dark {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.08));
}

.about-metrics-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  margin-bottom: clamp(32px, 4.5vw, 48px);
}

.about-metric {
  text-align: center;
  padding: clamp(22px, 2.5vw, 30px) clamp(14px, 2vw, 20px) 26px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.about-metric:hover {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.14);
}

.about-metric__num {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  font-size: clamp(2.25rem, 1.5rem + 2.8vw, 3.35rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.about-metric__plus,
.about-metric__suffix {
  font-size: 0.5em;
  font-weight: 800;
  color: #7dd3fc;
  margin-left: 1px;
}

.about-metric__label {
  margin-top: 14px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #f8fafc;
  letter-spacing: 0.01em;
}

.about-metric__desc {
  margin: 10px 0 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #94a3b8;
  max-width: 240px;
  margin-left: auto;
  margin-right: auto;
}

.about-impact-panel {
  position: relative;
  z-index: 1;
  max-width: min(720px, 100%);
  margin: 0 auto;
  padding: clamp(22px, 3.2vw, 30px) clamp(20px, 3vw, 28px) clamp(24px, 3.2vw, 32px);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(12px);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 20px 48px rgba(0, 0, 0, 0.35);
}

.about-impact-panel__lead {
  margin: 0 0 clamp(16px, 2vw, 20px);
  font-size: clamp(1rem, 0.92rem + 0.28vw, 1.125rem);
  font-weight: 600;
  line-height: 1.45;
  text-align: center;
  color: #f1f5f9;
}

.about-impact-panel__list {
  list-style: none;
  margin: 0 0 clamp(20px, 2.5vw, 26px);
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-impact-panel__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #cbd5e1;
}

.about-impact-panel__check {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(236, 103, 52, 0.18);
  color: #fb923c;
}

.about-impact-panel__actions {
  text-align: center;
}

.about-impact-panel__actions .btn-primary {
  min-width: 11rem;
}

@media (max-width: 720px) {
  .about-metrics-sticker {
    transform: rotate(5deg) scale(0.88);
    padding: 9px 11px;
    top: 10px;
    right: 8px;
  }

  .about-metrics-head {
    padding-top: 52px;
  }
}

@media (max-width: 900px) {
  .about-legacy-stats {
    grid-template-columns: 1fr;
  }

  .about-legacy-body,
  .about-role-grid {
    grid-template-columns: 1fr;
  }

  .about-partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  @media (max-width: 600px) {
    .about-partner-grid {
      grid-template-columns: 1fr;
      max-width: 420px;
      margin: 0 auto;
    }
  }

  .about-role-visual {
    max-width: 420px;
    margin: 0 auto;
  }

  .about-benefit-grid {
    grid-template-columns: 1fr;
  }

  .about-metrics-strip {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-benefit-card:hover,
  .about-partner-card:hover {
    transform: none;
  }
}

/* ── About Section Headers ────────────────────────────────── */
.about-section-head {
  margin-bottom: 36px;
}

.about-kicker {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(236, 79, 37, 0.1);
  color: #ec4f25;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.about-section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 10px;
  line-height: 1.25;
}

.about-title-rule {
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ec4f25, #f59e0b);
  border-radius: 2px;
  margin: 12px 0 20px;
}

.about-deck {
  font-size: 1rem;
  color: #64748b;
  max-width: 640px;
  line-height: 1.65;
  margin: 0 0 16px;
}

.about-deck--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ── About Pillars Section ("Values that guide every decision") ── */
.about-pillars-sec {
  padding: clamp(60px, 7vw, 96px) 0;
  background: #ffffff;
}

.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 36px;
}

.about-pillar-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 36px 28px;
  transition: all 0.35s ease;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
}

.about-pillar-card:hover {
  transform: translateY(-8px);
  border-color: rgba(236, 79, 37, 0.35);
  box-shadow: 0 20px 48px rgba(236, 79, 37, 0.12);
  background: #ffffff;
}

.about-pillar-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(236, 79, 37, 0.12), rgba(245, 158, 11, 0.12));
  border: 1px solid rgba(236, 79, 37, 0.2);
  color: #ec4f25;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  flex-shrink: 0;
}

/* Crucial SVG size fix to prevent giant expanded icons */
.about-pillar-icon svg {
  width: 26px;
  height: 26px;
  stroke: #ec4f25;
  stroke-width: 2.2;
  fill: none;
}

.about-pillar-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 12px;
  line-height: 1.35;
}

.about-pillar-text {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.65;
  margin: 0;
}

/* ── About Partner Universities Deck ─────────────────────────── */
.about-partner-deck {
  padding: clamp(60px, 7vw, 96px) 0;
  background: linear-gradient(160deg, #f8fafc 0%, #f1f5f9 100%);
}

.about-partner-deck .about-section-head {
  text-align: center;
}

.about-partner-deck .about-title-rule {
  margin-left: auto;
  margin-right: auto;
}

.about-partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 36px;
}

.about-uni-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.about-uni-card:hover {
  transform: translateY(-8px);
  border-color: rgba(236, 79, 37, 0.35);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.12);
}

.about-uni-card__media {
  position: relative;
  width: 100%;
  height: 170px;
  overflow: hidden;
  background: #f1f5f9;
}

.about-uni-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.about-uni-card:hover .about-uni-card__media img {
  transform: scale(1.06);
}

.about-uni-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 14px;
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(8px);
}

.badge-purple { background: rgba(243, 232, 255, 0.94); color: #6b21a8; border: 1px solid rgba(216, 180, 254, 0.8); }
.badge-orange { background: rgba(255, 247, 237, 0.94); color: #c2410c; border: 1px solid rgba(255, 237, 213, 0.8); }
.badge-green { background: rgba(236, 253, 245, 0.94); color: #047857; border: 1px solid rgba(167, 243, 208, 0.8); }
.badge-blue { background: rgba(239, 246, 255, 0.94); color: #1d4ed8; border: 1px solid rgba(191, 219, 254, 0.8); }
.badge-pink { background: rgba(253, 242, 248, 0.94); color: #be185d; border: 1px solid rgba(251, 207, 232, 0.8); }
.badge-amber { background: rgba(255, 251, 235, 0.94); color: #b45309; border: 1px solid rgba(253, 230, 138, 0.8); }

.about-uni-card__body {
  padding: 22px 24px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.about-uni-card__title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 6px;
  line-height: 1.3;
}

.about-uni-card__loc {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 16px;
}

.about-uni-card__loc svg {
  fill: #94a3b8;
  flex-shrink: 0;
}

.about-uni-card__programs {
  margin-top: auto;
  padding: 12px 14px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #f1f5f9;
}

.about-uni-card__programs-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #94a3b8;
  margin-bottom: 4px;
}

.about-uni-card__courses {
  font-size: 0.86rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  line-height: 1.4;
}

.about-uni-card__footer {
  padding: 16px 24px 22px;
}

.about-uni-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px 18px;
  border-radius: 50px;
  background: #0f172a;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

.about-uni-card__btn svg {
  transition: transform 0.25s ease;
}

.about-uni-card__btn:hover {
  background: #ec4f25;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(236, 79, 37, 0.3);
}

.about-uni-card__btn:hover svg {
  transform: translateX(4px);
}

/* Responsive Grid Adjustments */
@media (max-width: 1024px) {
  .about-pillars-grid,
  .about-partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .about-pillars-grid,
  .about-partner-grid {
    grid-template-columns: 1fr;
  }
}
