﻿/* ── Achievements page styles ────────────────────────────── */

/* ─── SECTION SHARED ─────────────────────────────────────── */
.ach-section {
  padding: 72px 80px;
  background: var(--white);
}
.ach-section--alt {
  background: #f4f5fb;
}
.ach-section-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}
.ach-section h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1.2;
  margin-bottom: 12px;
}
.ach-section-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: #555;
  max-width: 720px;
  margin-bottom: 36px;
}
.ach-sub-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 16px;
}

/* ─── HIGHLIGHTS GRID (Academic & Co-curricular) ─────────── */
.ach-grid {
  display: grid;
  gap: 22px;
}
.ach-grid--5 { grid-template-columns: repeat(5, 1fr); }
.ach-grid--3 { grid-template-columns: repeat(3, 1fr); }

.ach-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(62, 66, 150, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.ach-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(62, 66, 150, 0.15);
}
.ach-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #c8cbe8;
}
.ach-card-img .img-wrap {
  width: 100%;
  height: 100%;
  border-radius: 0;
  background: #c8cbe8;
}
.ach-card-img .img-wrap img { object-position: center; }
.ach-card-body {
  padding: 14px 16px 16px;
}
.ach-card-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.3;
}

/* ─── SPORTS MARQUEE ─────────────────────────────────────── */
.ach-sports-marquee-outer {
  overflow: hidden;
  margin-top: 4px;
}
.ach-sports-marquee-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: achSportsScroll 30s linear infinite;
}
.ach-sports-marquee-track:hover { animation-play-state: paused; }
@keyframes achSportsScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ach-sports-item {
  flex-shrink: 0;
  width: 220px;
  text-align: center;
}
.ach-sports-img {
  width: 220px;
  height: 200px;
  border-radius: 14px;
  overflow: hidden;
  background: #c0c3e0;
  margin-bottom: 12px;
  box-shadow: 0 6px 20px rgba(62, 66, 150, 0.12);
}
.ach-sports-img .img-wrap {
  width: 100%;
  height: 100%;
  border-radius: 0;
  background: #c0c3e0;
}
.ach-sports-img .img-wrap img { object-position: center; }
.ach-sports-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
}
.ach-sports-note {
  font-size: 12px;
  color: #999;
  font-style: italic;
  margin-top: 20px;
}

/* ─── ALUMNI ─────────────────────────────────────────────── */
.ach-alumni {
  background: var(--blue);
  padding: 72px 80px;
}
.ach-alumni h2 {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  line-height: 1.22;
  margin-bottom: 16px;
}
.ach-alumni-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin-bottom: 28px;
}
.ach-alumni-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ach-alumni-tag {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.92);
  padding: 7px 18px;
  border-radius: 100px;
  line-height: 1.2;
}

/* ─── LEGACY STATS ───────────────────────────────────────── */
.ach-legacy {
  background: #f4f5fb;
  padding: 72px 80px;
  text-align: center;
}
.ach-legacy-header h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1.22;
  margin-bottom: 0;
}
.ach-legacy-header p {
  font-size: 13px;
  color: #888;
  font-style: italic;
  margin-top: 8px;
}
.ach-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.ach-stat {
  background: #fff;
  border-radius: 16px;
  padding: 36px 20px;
  box-shadow: 0 4px 20px rgba(62, 66, 150, 0.08);
}
.ach-stat-number {
  font-size: 40px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 10px;
}
.ach-stat-label {
  font-size: 13.5px;
  font-weight: 500;
  color: #555;
  line-height: 1.4;
}
