:root {
  --navy: #17135f;
  --navy2: #22215f;
  --blue: #4ea3ff;
  --blue2: #2d7ff0;
  --mint: #0eaa88;
  --mint2: #dff7ef;
  --sky: #eaf4ff;
  --lav: #eef0ff;
  --cream: #fff8e7;
  --text: #111827;
  --muted: #697386;
  --line: #e8edf5;
  --bg: #ffffff;
  --soft: #f7fbff;
  --shadow: 0 20px 55px rgba(23, 19, 95, 0.10);
  --radius: 28px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  word-break: keep-all;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(232, 237, 245, .84);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(var(--max), calc(100% - 44px));
  min-height: 78px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(120px, 1fr);
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
  letter-spacing: -0.05em;
  color: var(--navy);
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue2));
  font-weight: 950;
  box-shadow: 0 12px 25px rgba(45, 127, 240, .22);
}

.brand-sub {
  display: block;
  margin-top: 1px;
  color: #6b7280;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0;
}

.nav {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  gap: 4px;
  padding: 7px;
  border: 1px solid rgba(226, 236, 247, .95);
  border-radius: 999px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 14px 36px rgba(23, 19, 95, .07);
  font-size: 14px;
  font-weight: 900;
  color: #334155;
  backdrop-filter: blur(14px);
}

.nav a {
  position: relative;
  min-width: 82px;
  padding: 11px 16px;
  border-radius: 999px;
  text-align: center;
  transition: .18s ease;
}

.nav a:hover {
  color: var(--navy);
  background: #f4f9ff;
}

.nav a.is-active {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 10px 22px rgba(23, 19, 95, .16);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 12px;
}

.icon-btn {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #20243a;
  background: #f5f8fc;
  font-size: 16px;
}

.menu-btn { display: none; }

.container {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

.hero {
  padding: 76px 0 36px;
}

.hero-top {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 38px;
  align-items: end;
  margin-bottom: 42px;
}

.hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(42px, 6vw, 72px);
  line-height: .95;
  letter-spacing: -0.075em;
  font-weight: 950;
}

.hero h1 span {
  display: block;
}

.hero-desc {
  margin: 20px 0 0;
  color: #33394b;
  font-size: 18px;
  line-height: 1.72;
  font-weight: 700;
}

.hero-bubble {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  padding: 24px 24px 20px;
  border-radius: 28px;
  background: linear-gradient(135deg, #eef8ff, #dcfff4);
  box-shadow: 0 14px 36px rgba(14, 170, 136, .11);
}

.hero-bubble b {
  display: block;
  color: var(--navy);
  font-size: 20px;
  letter-spacing: -0.04em;
}

.hero-bubble p {
  max-width: 210px;
  margin: 9px 0 18px;
  color: #4d5a6f;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 800;
}

.bubble-person {
  position: absolute;
  right: 16px;
  bottom: 0;
  width: 118px;
  height: 122px;
  border-radius: 38px 38px 0 0;
  background:
    radial-gradient(circle at 50% 24%, #ffd6ba 0 20px, transparent 21px),
    radial-gradient(circle at 42% 20%, #8b5e3c 0 13px, transparent 14px),
    linear-gradient(#56b7ff 0 54%, #2486ee 55% 100%);
}

.bubble-person::after {
  content: "☝";
  position: absolute;
  top: 22px;
  right: -2px;
  font-size: 38px;
}

.bubble-photo {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 132px;
  height: 104px;
  border: 4px solid rgba(255, 255, 255, .78);
  border-radius: 24px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 18px 28px rgba(23, 19, 95, .16);
}

.small-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--mint);
  font-size: 13px;
  font-weight: 950;
}

.hero-cards {
  display: grid;
  grid-template-columns: 1.12fr .54fr .54fr;
  gap: 20px;
}

.main-card,
.mini-card {
  position: relative;
  overflow: hidden;
  min-height: 288px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.main-card {
  padding: 42px 44px;
  color: #fff;
  background:
    linear-gradient(125deg, rgba(27, 102, 222, .94), rgba(86, 181, 255, .9)),
    url("generated/academy-hero-v2.webp") center/cover;
}

.main-card::after {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -70px;
  width: 260px;
  height: 260px;
  border-radius: 48px;
  background: rgba(255, 255, 255, .18);
  transform: rotate(38deg);
}

.main-card h2 {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0 0 24px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.06em;
}

.card-meta {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  max-width: 520px;
}

.card-meta span {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 10px;
  align-items: center;
  color: #eaf4ff;
  font-size: 14px;
  font-weight: 850;
}

.card-meta b {
  display: inline-flex;
  justify-content: center;
  padding: 5px 9px;
  border-radius: 7px;
  color: #fff;
  background: rgba(19, 25, 84, .72);
  font-size: 12px;
}

.slide-ui {
  position: absolute;
  right: 22px;
  bottom: 18px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 14px;
  color: #fff;
  background: rgba(19, 25, 84, .92);
  font-size: 12px;
  font-weight: 900;
}

.mini-card {
  padding: 30px 30px;
}

.mini-card.blue { background: #ddebff; }
.mini-card.green { background: #dff7ef; }

.mini-card small {
  display: block;
  margin-bottom: 16px;
  color: var(--blue2);
  font-weight: 950;
}

.mini-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 25px;
  line-height: 1.28;
  letter-spacing: -0.055em;
}

.mini-illust {
  position: absolute;
  right: 22px;
  bottom: 20px;
  font-size: 70px;
  filter: drop-shadow(0 16px 18px rgba(0, 0, 0, .08));
}

.btn-round {
  position: absolute;
  left: 30px;
  bottom: 30px;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: #121747;
  font-weight: 950;
}

.notice {
  display: grid;
  grid-template-columns: 110px 1fr 120px 96px;
  gap: 18px;
  align-items: center;
  min-height: 58px;
  margin-top: 22px;
  border-bottom: 1px solid var(--line);
  color: #4a5366;
  font-size: 14px;
  font-weight: 850;
}

.notice b {
  color: #111;
  font-weight: 950;
}

.quick {
  padding: 64px 0 34px;
  text-align: center;
}

.quick-row {
  display: flex;
  justify-content: center;
  gap: 58px;
  flex-wrap: wrap;
}

.quick-link {
  display: grid;
  place-items: center;
  gap: 10px;
  min-width: 78px;
  color: #283043;
  font-size: 13px;
  font-weight: 900;
}

.quick-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #f3f8ff;
  color: var(--blue2);
  font-size: 27px;
  box-shadow: 0 12px 28px rgba(60, 120, 220, .11);
}

.image-story {
  padding: 28px 0 36px;
}

.story-panel {
  display: grid;
  grid-template-columns: .78fr 1fr;
  gap: 34px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(14, 170, 136, .16);
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 0%, rgba(84, 183, 255, .2), transparent 32%),
    linear-gradient(135deg, #ffffff, #f1fbff);
  box-shadow: 0 24px 70px rgba(23, 19, 95, .08);
}

.story-copy h2 {
  margin: 12px 0 12px;
  color: var(--navy);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.065em;
  word-break: keep-all;
}

.story-copy p {
  margin: 0;
  color: #475569;
  font-size: 16px;
  line-height: 1.74;
  font-weight: 750;
}

.story-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.story-badges span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 13px;
  border-radius: 999px;
  color: #075985;
  background: #e0f2fe;
  font-size: 13px;
  font-weight: 950;
}

.story-badges span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 3px rgba(14, 170, 136, .12);
}

.story-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  min-height: 310px;
  border-radius: 28px;
  box-shadow: 0 22px 46px rgba(23, 19, 95, .15);
}

.story-photo::after {
  content: "1:1 학습상태 점검";
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
  background: rgba(11, 33, 83, .82);
  font-size: 13px;
  font-weight: 950;
  backdrop-filter: blur(10px);
}

.story-photo img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  display: block;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1120px) {
  .story-panel {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .story-copy {
    max-width: 720px;
  }

  .story-photo,
  .story-photo img {
    min-height: 280px;
  }
}

.section {
  padding: 86px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 38px;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--mint);
  font-size: 15px;
  font-weight: 950;
}

.section h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.28;
  letter-spacing: -0.06em;
}

.section-desc {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
  font-weight: 750;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy);
  font-size: 22px;
  background: #fff;
}

.library-controls {
  display: inline-flex;
  gap: 8px;
  padding: 6px;
  border: 1px solid #e3edf8;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(23, 19, 95, .07);
}

.library-control {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--navy);
  background: #f3f8ff;
  cursor: pointer;
  font-family: inherit;
  font-size: 22px;
  font-weight: 950;
  line-height: 1;
  transition: .18s ease;
}

.library-control:hover {
  color: #fff;
  background: var(--navy);
}

.library-carousel {
  position: relative;
  overflow: hidden;
  margin-top: 34px;
  padding: 10px;
  border: 1px solid rgba(14, 170, 136, .14);
  border-radius: 34px;
  background:
    radial-gradient(circle at 95% 8%, rgba(14, 170, 136, .15), transparent 28%),
    linear-gradient(135deg, #ffffff, #f4fbff);
  box-shadow: 0 26px 70px rgba(23, 19, 95, .08);
}

.library-track {
  display: flex;
  transition: transform .58s cubic-bezier(.22, .72, .2, 1);
  will-change: transform;
}

.library-slide {
  flex: 0 0 100%;
  min-width: 100%;
  display: grid;
  grid-template-columns: 1.08fr .82fr;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid #e7eff8;
  border-radius: 27px;
  background: #fff;
}

.library-slide .thumb {
  height: 390px;
  min-height: 100%;
  aspect-ratio: auto;
  border-radius: 0;
  box-shadow: none;
}

.library-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 46px;
}

.library-copy span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #075985;
  background: #e0f2fe;
  font-size: 13px;
  font-weight: 950;
}

.library-copy h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.18;
  letter-spacing: -0.065em;
}

.library-copy p {
  margin: 0;
  color: #526174;
  font-size: 16px;
  line-height: 1.76;
  font-weight: 750;
}

.library-copy a {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 12px 17px;
  border-radius: 999px;
  color: #fff;
  background: var(--navy);
  font-size: 13px;
  font-weight: 950;
}

.library-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 18px 0 4px;
}

.library-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #c9d8e8;
  cursor: pointer;
  transition: .18s ease;
}

.library-dots button.is-active {
  width: 28px;
  background: var(--mint);
}

.library-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.library-card {
  min-width: 0;
}

.thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 15px;
  background: linear-gradient(135deg, #0b2153, #317fff);
  box-shadow: 0 20px 36px rgba(23, 19, 95, .14);
}

.thumb-diagnosis {
  background:
    linear-gradient(135deg, rgba(11, 33, 83, .68), rgba(49, 127, 255, .2)),
    url("generated/site3-hero.webp") center/cover;
}

.thumb-planner {
  background:
    linear-gradient(135deg, rgba(11, 33, 83, .65), rgba(14, 170, 136, .18)),
    url("generated/academy-consultation-v2.webp") center/cover;
}

.thumb-review {
  background:
    linear-gradient(135deg, rgba(11, 33, 83, .62), rgba(255, 138, 54, .18)),
    url("generated/site3-consult.webp") center/cover;
}

.thumb::after {
  content: attr(data-label);
  position: absolute;
  left: 20px;
  bottom: 20px;
  max-width: 82%;
  color: #fff;
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: -0.055em;
  font-weight: 950;
  text-shadow: 0 4px 16px rgba(0,0,0,.24);
}

.thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 22%, rgba(255, 255, 255, .42), transparent 16%),
    linear-gradient(135deg, rgba(0, 0, 0, .18), transparent);
}

.library-card h3 {
  margin: 18px 0 8px;
  color: #111827;
  font-size: 19px;
  letter-spacing: -0.04em;
}

.library-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
  font-size: 14px;
  font-weight: 700;
}

.library-slide .library-copy h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.18;
  letter-spacing: -0.065em;
}

.library-slide .library-copy p {
  margin: 0;
  color: #526174;
  font-size: 16px;
  line-height: 1.76;
  font-weight: 750;
}

.review-zone {
  padding: 92px 0;
  background: linear-gradient(110deg, #eaf4ff, #efffff);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  align-items: stretch;
}

.review-card {
  min-height: 290px;
  padding: 38px 34px;
  border: 1px solid rgba(14,170,136,.18);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(23, 19, 95, .08);
}

.review-card.featured {
  border: 2px solid var(--mint);
  transform: translateY(-16px);
}

.review-card h3 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.34;
  letter-spacing: -0.05em;
}

.review-card p {
  margin: 0;
  color: #5a657a;
  font-size: 14px;
  line-height: 1.78;
  font-weight: 700;
}

.review-meta {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--mint);
  font-size: 13px;
  font-weight: 950;
}

.feature {
  padding: 100px 0;
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  margin-top: 58px;
}

.feature-card {
  padding: 0 14px;
}

.feature-icon {
  width: 82px;
  height: 82px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  border-radius: 26px;
  background: #f2f7ff;
  font-size: 42px;
}

.feature-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 18px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
  font-weight: 700;
}

.about-hero {
  padding: 78px 0 48px;
  background:
    radial-gradient(circle at 78% 8%, rgba(14, 170, 136, .12), transparent 28%),
    radial-gradient(circle at 10% 12%, rgba(84, 183, 255, .2), transparent 30%),
    linear-gradient(180deg, #ffffff, #f6fbff);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: .95fr .82fr;
  gap: 42px;
  align-items: center;
}

.about-hero h1 {
  margin: 10px 0 18px;
  color: var(--navy);
  font-size: clamp(38px, 5.5vw, 66px);
  line-height: 1.08;
  letter-spacing: -0.075em;
  word-break: keep-all;
}

.about-hero p {
  max-width: 720px;
  margin: 0;
  color: #475569;
  font-size: 18px;
  line-height: 1.78;
  font-weight: 750;
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.btn.ghost-dark {
  color: var(--navy);
  border: 1px solid #d9e7f4;
  background: #fff;
}

.about-hero-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  min-height: 460px;
  border-radius: 38px;
  background: #eaf6ff;
  box-shadow: 0 30px 70px rgba(23, 19, 95, .14);
}

.about-hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.about-hero-photo figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 14px 18px;
  border-radius: 18px;
  color: #fff;
  background: rgba(11, 33, 83, .82);
  font-size: 14px;
  font-weight: 950;
  backdrop-filter: blur(12px);
}

.about-summary {
  padding: 22px 0 74px;
  background: #f6fbff;
}

.about-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about-summary article {
  min-height: 220px;
  padding: 28px;
  border: 1px solid rgba(14, 170, 136, .15);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 20px 48px rgba(23, 19, 95, .07);
}

.about-summary span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #fff;
  background: var(--mint);
  font-weight: 950;
}

.about-summary h2 {
  margin: 18px 0 10px;
  color: var(--navy);
  font-size: 22px;
  letter-spacing: -0.055em;
}

.about-summary p {
  margin: 0;
  color: #526174;
  line-height: 1.7;
  font-size: 15px;
  font-weight: 740;
}

.about-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about-process article {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid #e1edf7;
  border-radius: 26px;
  background: linear-gradient(180deg, #fff, #f8fcff);
  box-shadow: 0 18px 45px rgba(23, 19, 95, .06);
}

.about-process article::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: rgba(56, 189, 248, .13);
}

.about-process b {
  color: var(--mint);
  font-size: 13px;
  font-weight: 950;
}

.about-process h3 {
  margin: 12px 0 10px;
  color: var(--navy);
  font-size: 22px;
  letter-spacing: -0.05em;
}

.about-process p {
  margin: 0;
  color: #536273;
  line-height: 1.7;
  font-size: 14px;
  font-weight: 740;
}

.about-visual-band {
  padding: 28px 0 94px;
}

.about-visual-grid {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 38px;
  align-items: center;
  padding: 30px;
  border-radius: 36px;
  background: linear-gradient(135deg, #eef8ff, #ffffff);
  box-shadow: 0 24px 70px rgba(23, 19, 95, .08);
}

.about-visual-grid figure {
  overflow: hidden;
  margin: 0;
  border-radius: 28px;
}

.about-visual-grid img {
  width: 100%;
  height: 360px;
  display: block;
  object-fit: cover;
}

.about-visual-grid h2 {
  margin: 10px 0 14px;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.16;
  letter-spacing: -0.065em;
}

.about-visual-grid p {
  margin: 0;
  color: #475569;
  font-size: 16px;
  line-height: 1.76;
  font-weight: 750;
}

.about-check {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.about-check li {
  padding: 14px 16px;
  border-radius: 16px;
  color: #0f2a5f;
  background: #e9f7ff;
  font-weight: 900;
}

.tuition-faq {
  padding: 94px 0 34px;
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 213, 79, .2), transparent 28%),
    linear-gradient(180deg, #ffffff, #f4fbff);
}

.tuition-faq-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 24px;
  align-items: start;
}

.tuition-card,
.home-faq-list {
  border: 1px solid rgba(14, 170, 136, .16);
  border-radius: 28px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 24px 64px rgba(23, 19, 95, .08);
  backdrop-filter: blur(12px);
}

.tuition-card {
  overflow: hidden;
}

.tuition-card-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 22px 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), #1d4ed8 72%, #38bdf8);
}

.tuition-card-head span {
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -0.055em;
}

.tuition-card-head strong {
  padding: 8px 11px;
  border-radius: 999px;
  color: #dff7ff;
  background: rgba(255, 255, 255, .14);
  font-size: 12px;
  white-space: nowrap;
}

.tuition-tables {
  display: grid;
  gap: 16px;
  padding: 18px;
}

.tuition-table {
  overflow: hidden;
  border: 1px solid #e2ecf7;
  border-radius: 20px;
  background: #fff;
}

.tuition-table h3 {
  margin: 0;
  padding: 14px 16px;
  color: var(--navy);
  background: #edf7ff;
  font-size: 15px;
  letter-spacing: -0.035em;
}

.tuition-table.local h3 {
  background: #ebfff8;
}

.tuition-table table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  text-align: center;
}

.tuition-table th,
.tuition-table td {
  padding: 13px 8px;
  border-top: 1px solid #edf2f7;
  color: #334155;
  font-size: 14px;
  font-weight: 800;
}

.tuition-table th {
  color: #0f2a5f;
  background: #fbfdff;
  font-size: 13px;
  font-weight: 950;
}

.tuition-table td:first-child {
  color: #0b2153;
  font-weight: 950;
}

.fee-note {
  margin: 0;
  padding: 0 22px 22px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.64;
  font-weight: 750;
}

.home-faq-list {
  display: grid;
  gap: 0;
  overflow: hidden;
}

.home-faq-item {
  border-bottom: 1px solid #e6eef8;
}

.home-faq-item:last-child {
  border-bottom: 0;
}

.home-faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 72px;
  padding: 20px 22px;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.home-faq-item summary::-webkit-details-marker {
  display: none;
}

.home-faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  background: var(--mint);
  font-size: 18px;
  line-height: 1;
}

.home-faq-item[open] summary::after {
  content: "−";
  background: var(--navy);
}

.home-faq-item p {
  margin: -4px 22px 22px;
  padding: 16px 18px;
  border-radius: 18px;
  color: #475569;
  background: #f4f9ff;
  font-size: 14px;
  line-height: 1.72;
  font-weight: 750;
}

.sub-hero {
  padding: 72px 0 38px;
  background: linear-gradient(180deg, #fff, #f7fbff);
}

.breadcrumb {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  color: #788396;
  font-size: 14px;
  font-weight: 850;
}

.breadcrumb a { color: var(--blue2); }

.sub-hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.12;
  letter-spacing: -0.07em;
}

.sub-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.76;
  font-weight: 750;
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
}

.article-stack {
  display: grid;
  gap: 20px;
}

.article-card,
.side-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(23, 19, 95, .06);
}

.media-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  align-items: center;
}

.media-card > img,
.visual-side > img {
  width: 100%;
  display: block;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 18px 34px rgba(23, 19, 95, .12);
}

.media-card > img {
  height: 190px;
}

.visual-side > img {
  height: 188px;
  margin-bottom: 22px;
}

.article-card h2,
.side-card h2 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 28px;
  letter-spacing: -0.055em;
}

.article-card p,
.side-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
  font-weight: 700;
}

.side-card {
  align-self: start;
  position: sticky;
  top: 98px;
}

.check-list {
  display: grid;
  gap: 11px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 14px 16px;
  border-radius: 13px;
  color: #334155;
  background: #f2f7ff;
  font-weight: 850;
  line-height: 1.55;
}

.cta-band {
  margin: 26px auto 94px;
  padding: 42px;
  border-radius: 28px;
  color: #fff;
  background: linear-gradient(135deg, #0b2153, #1d4ed8 70%, #38bdf8);
  box-shadow: 0 26px 60px rgba(29, 78, 216, .24);
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.06em;
}

.cta-band p {
  max-width: 720px;
  margin: 14px 0 0;
  color: #dbeafe;
  line-height: 1.72;
  font-weight: 750;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 950;
}

.btn.white { color: var(--navy); background: #fff; }
.btn.ghost { color: #fff; border: 1px solid rgba(255,255,255,.42); }

.edu-hub-hero,
.edu-article-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 52px;
  background:
    radial-gradient(circle at 82% 10%, rgba(14, 170, 136, .16), transparent 28%),
    radial-gradient(circle at 12% 18%, rgba(84, 183, 255, .22), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f5fbff 100%);
}

.edu-hub-hero::after,
.edu-article-hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -48% auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(14, 170, 136, .08);
  pointer-events: none;
}

.edu-hub-hero .container,
.edu-article-hero .container {
  position: relative;
  z-index: 1;
}

.edu-hub-hero h1,
.edu-article-hero h1 {
  max-width: 840px;
  margin: 14px 0 18px;
  color: var(--navy);
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.12;
  letter-spacing: -0.062em;
}

.edu-hub-hero p,
.edu-article-hero p {
  max-width: 760px;
  margin: 0;
  color: #46546b;
  font-size: 18px;
  line-height: 1.78;
  font-weight: 800;
}

.edu-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.edu-card {
  position: relative;
  overflow: hidden;
  min-height: 214px;
  padding: 28px;
  border: 1px solid #dfeaf6;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(248, 252, 255, .98));
  box-shadow: 0 20px 50px rgba(23, 19, 95, .075);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.edu-card::after {
  content: "→";
  position: absolute;
  right: 22px;
  bottom: 20px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: #eef7ff;
  font-weight: 950;
}

.edu-card:hover {
  transform: translateY(-5px);
  border-color: rgba(14, 170, 136, .34);
  box-shadow: 0 26px 62px rgba(23, 19, 95, .12);
}

.edu-card span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  color: #007f72;
  background: #e8fbf5;
  font-size: 12px;
  font-weight: 950;
}

.edu-card h2 {
  margin: 18px 0 12px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.32;
  letter-spacing: -0.055em;
}

.edu-card p {
  margin: 0;
  padding-right: 28px;
  color: #5c687c;
  font-size: 14px;
  line-height: 1.72;
  font-weight: 750;
}

.edu-article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .74fr);
  gap: 34px;
  align-items: center;
}

.edu-article-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 34px;
  box-shadow: 0 30px 70px rgba(23, 19, 95, .15);
}

.edu-article-photo img {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.edu-article-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(15, 23, 42, .58));
}

.edu-article-photo figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 1;
  color: #fff;
  font-weight: 950;
  letter-spacing: -0.035em;
}

.edu-content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 26px;
  align-items: start;
}

.edu-main-card,
.edu-side-panel {
  border: 1px solid #dfeaf6;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 22px 56px rgba(23, 19, 95, .075);
}

.edu-main-card {
  padding: 40px;
}

.edu-main-card h2 {
  margin: 34px 0 12px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: -0.055em;
}

.edu-main-card h2:first-child {
  margin-top: 0;
}

.edu-main-card p {
  margin: 0;
  color: #475569;
  font-size: 16px;
  line-height: 1.9;
  font-weight: 720;
}

.edu-check-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.edu-check-list li {
  position: relative;
  padding: 14px 16px 14px 44px;
  border-radius: 18px;
  color: #354156;
  background: #f5faff;
  font-weight: 820;
  line-height: 1.55;
}

.edu-check-list li::before {
  content: "✓";
  position: absolute;
  left: 15px;
  top: 14px;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--mint);
  font-size: 12px;
}

.edu-side-panel {
  position: sticky;
  top: 104px;
  padding: 26px;
}

.edu-side-panel h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 22px;
  letter-spacing: -0.045em;
}

.edu-side-panel p {
  margin: 0;
  color: #5c687c;
  line-height: 1.72;
  font-weight: 760;
}

.edu-side-links {
  display: grid;
  gap: 9px;
  margin-top: 18px;
}

.edu-side-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid #dfeaf6;
  border-radius: 15px;
  color: var(--navy);
  background: #f8fbff;
  font-size: 14px;
  font-weight: 900;
}

.edu-side-links a::after {
  content: "›";
  color: var(--mint);
  font-size: 20px;
}

.academy-hero {
  overflow: hidden;
  padding: 72px 0 46px;
  background:
    radial-gradient(circle at 88% 12%, rgba(14, 170, 136, .16), transparent 30%),
    radial-gradient(circle at 8% 20%, rgba(84, 183, 255, .22), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}

.academy-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: center;
}

.academy-hero h1 {
  max-width: 860px;
  margin: 16px 0 16px;
  color: var(--navy);
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.1;
  letter-spacing: -0.065em;
}

.academy-hero p {
  max-width: 760px;
  margin: 0;
  color: #45566d;
  font-size: 17px;
  line-height: 1.78;
  font-weight: 780;
}

.academy-hero-panel {
  padding: 26px;
  border: 1px solid #dfeaf6;
  border-radius: 30px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 28px 70px rgba(23, 19, 95, .1);
}

.academy-hero-panel strong {
  display: block;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.35;
  letter-spacing: -0.055em;
}

.academy-hero-panel p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.7;
}

.academy-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.academy-stat {
  padding: 16px;
  border-radius: 18px;
  background: #f2f8ff;
}

.academy-stat b {
  display: block;
  color: var(--mint);
  font-size: 22px;
  font-weight: 950;
}

.academy-stat span {
  display: block;
  margin-top: 4px;
  color: #526176;
  font-size: 12px;
  font-weight: 850;
}

.academy-category-list {
  display: grid;
  gap: 18px;
}

.academy-category-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 30px;
  border: 1px solid #dfeaf6;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 22px 56px rgba(23, 19, 95, .075);
}

.academy-category-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 26px;
  letter-spacing: -0.055em;
}

.academy-category-card p {
  margin: 0;
  color: #5b687c;
  line-height: 1.72;
  font-weight: 760;
}

.academy-category-card .arrow {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--navy);
  font-size: 24px;
  font-weight: 950;
}

.academy-group-list {
  display: grid;
  gap: 22px;
}

.academy-region-group {
  overflow: hidden;
  padding: 28px;
  border: 1px solid #dfeaf6;
  border-radius: 30px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: 0 18px 46px rgba(23, 19, 95, .055);
}

.academy-region-group h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 22px;
  letter-spacing: -0.055em;
}

.academy-region-group h2::before {
  content: "";
  width: 8px;
  height: 24px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--mint), #52b7ff);
}

.academy-city-group {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 14px 0;
}

.academy-city-group + .academy-city-group {
  margin-top: 0;
  border-top: 1px dashed #d9e6f4;
}

.academy-city-title {
  position: relative;
  margin: 0;
  padding: 9px 0 0;
  color: #263855;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: -0.035em;
}

.academy-link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(104px, 1fr));
  gap: 8px;
}

.academy-link-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 11px;
  border: 1px solid #e2edf8;
  border-radius: 999px;
  color: #253654;
  background: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -0.04em;
  box-shadow: 0 6px 18px rgba(23, 19, 95, .035);
  transition: .16s ease;
}

.academy-link-grid a:hover {
  transform: translateY(-1px);
  color: var(--navy);
  border-color: rgba(14, 170, 136, .36);
  background: #effdfa;
  box-shadow: 0 10px 24px rgba(14, 170, 136, .09);
}

.academy-local-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid #dfeaf6;
  border-radius: 15px;
  color: var(--navy);
  background: #f8fbff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.academy-local-links a::after {
  content: "›";
  color: var(--mint);
  font-size: 20px;
}

.academy-page {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 42%, #ffffff 100%);
}

.academy-media-section {
  padding: 42px 0 24px;
}

.academy-media-section .container {
  width: 100%;
  max-width: none;
}

.academy-media-stack {
  display: grid;
  gap: 18px;
}

.hidden-representative {
  display: none;
}

.academy-visible-image {
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.academy-visible-image img {
  display: block;
  width: 100%;
  height: auto;
}

.academy-map-card {
  width: min(100% - 26px, 1320px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid #dfeaf6;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 22px 58px rgba(23, 19, 95, .08);
}

.academy-map-card img {
  display: block;
  width: 100%;
  height: auto;
}

.academy-map-caption {
  padding: 16px 20px;
  color: #475569;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 780;
  background: #f8fbff;
}

.academy-content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 26px;
  align-items: start;
}

.academy-main-article,
.academy-aside-card,
.academy-faq-card,
.academy-review-card,
.academy-local-links {
  border: 1px solid #dfeaf6;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 22px 56px rgba(23, 19, 95, .07);
}

.academy-main-article {
  padding: 42px;
}

.academy-main-article h2 {
  margin: 36px 0 14px;
  color: var(--navy);
  font-size: 26px;
  line-height: 1.32;
  letter-spacing: -0.055em;
}

.academy-main-article h2:first-child {
  margin-top: 0;
}

.academy-main-article p {
  margin: 0 0 18px;
  color: #44546a;
  font-size: 16px;
  line-height: 1.92;
  font-weight: 720;
}

.academy-intro-answer {
  margin: 18px 0 26px;
  padding: 24px;
  border: 1px solid rgba(31, 111, 235, .12);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(239, 247, 255, .95), rgba(255, 255, 255, .98));
}

.academy-intro-answer p:last-child,
.academy-prose-section p:last-child {
  margin-bottom: 0;
}

.academy-prose-section {
  position: relative;
  margin: 20px 0;
  padding: 26px 28px;
  border: 1px solid rgba(223, 234, 246, .9);
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(14, 170, 136, .08), transparent 34%),
    linear-gradient(180deg, #fff, #fbfdff);
}

.academy-prose-section::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 0;
  width: 5px;
  height: 34px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(180deg, #16bfa3, #2b6cf6);
}

.academy-prose-section h2 {
  margin-top: 0;
}

.academy-summary-box {
  margin-bottom: 26px;
  padding: 22px;
  border: 1px solid rgba(14, 170, 136, .2);
  border-radius: 24px;
  background: linear-gradient(135deg, #f0fffb, #f6fbff);
}

.academy-summary-box strong {
  display: block;
  margin-bottom: 8px;
  color: #007f72;
  font-size: 15px;
  font-weight: 950;
}

.academy-aside-card {
  position: sticky;
  top: 104px;
  padding: 26px;
}

.academy-aside-card h2,
.academy-faq-card h2,
.academy-review-card h2,
.academy-local-links h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 22px;
  letter-spacing: -0.05em;
}

.academy-aside-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.academy-aside-card dt {
  color: #7a8497;
  font-size: 12px;
  font-weight: 950;
}

.academy-aside-card dd {
  margin: 4px 0 0;
  color: #334155;
  line-height: 1.55;
  font-weight: 820;
}

.academy-school-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.academy-grade-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.academy-grade-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(43, 108, 246, .13);
  border-radius: 999px;
  background: #f3f8ff;
  color: #1f3b66;
  font-size: 12px;
  font-weight: 900;
}

.academy-grade-empty {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(100, 116, 139, .16);
  border-radius: 999px;
  background: #f8fafc;
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
}

.academy-school-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  color: #006b61;
  background: #e8fbf5;
  font-size: 12px;
  font-weight: 900;
}

.academy-tuition-row {
  margin-top: 4px;
  padding: 16px;
  border: 1px solid rgba(14, 170, 136, .2);
  border-radius: 18px;
  background:
    radial-gradient(circle at 94% 8%, rgba(78, 163, 255, .16), transparent 34%),
    linear-gradient(145deg, #f1fffb, #f5f9ff);
}

.academy-tuition-row dt {
  color: #087e70;
}

.academy-tuition-row dd {
  display: grid;
  gap: 8px;
}

.academy-tuition-link,
.academy-tuition-pending {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 46px;
  padding: 0 15px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: -.025em;
}

.academy-tuition-link {
  color: #fff;
  background: linear-gradient(135deg, #0eaa88, #2378e8);
  box-shadow: 0 12px 25px rgba(29, 126, 184, .18);
  transition: transform .18s ease, box-shadow .18s ease;
}

.academy-tuition-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(29, 126, 184, .24);
}

.academy-tuition-link span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 9px;
  background: rgba(255, 255, 255, .18);
  font-size: 15px;
}

.academy-tuition-note {
  display: block;
  color: #63748a;
  font-size: 11px;
  line-height: 1.55;
  font-weight: 750;
}

.academy-tuition-row.is-pending {
  border-color: #e1e8f1;
  background: #f8fafc;
}

.academy-tuition-pending {
  color: #64748b;
  border: 1px dashed #cbd5e1;
  background: #fff;
}

.academy-faq-card,
.academy-review-card,
.academy-local-links {
  padding: 30px;
}

.academy-faq-list {
  display: grid;
  gap: 12px;
}

.academy-faq-item {
  overflow: hidden;
  border: 1px solid #dfeaf6;
  border-radius: 18px;
  background: #f8fbff;
}

.academy-faq-item summary {
  cursor: pointer;
  padding: 17px 20px;
  color: var(--navy);
  font-weight: 950;
  line-height: 1.5;
}

.academy-faq-item summary::-webkit-details-marker {
  display: none;
}

.academy-faq-item p {
  margin: 0;
  padding: 0 20px 18px;
  color: #4b5a70;
  line-height: 1.75;
  font-weight: 720;
}

.academy-review-list {
  display: grid;
  gap: 14px;
}

.academy-review-item {
  margin: 0;
  padding: 22px;
  border-radius: 22px;
  color: #42526a;
  background: #f8fbff;
  line-height: 1.78;
  font-weight: 720;
}

.academy-review-note {
  margin: 0 0 14px;
  color: #7a8497;
  font-size: 13px;
  line-height: 1.65;
  font-weight: 760;
}

.academy-local-links {
  display: grid;
  gap: 14px;
}

.academy-local-links .links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #f8fafc;
}

.footer-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 84px;
  color: #7a8497;
  font-size: 15px;
  font-weight: 950;
  border-bottom: 1px solid var(--line);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 0 44px;
  color: #6f788a;
  font-size: 13px;
  line-height: 1.7;
  font-weight: 700;
}

.footer-brand {
  color: var(--navy);
  font-size: 26px;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.wawa-fixed-fab-container {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.wawa-fab-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 10px 16px;
  border-radius: 10px;
  color: #fff;
  background: var(--navy);
  box-shadow: 0 14px 32px rgba(23, 19, 95, .16);
  font-size: 13px;
  font-weight: 950;
  white-space: nowrap;
}

.fab-call { background: linear-gradient(135deg, #1d4ed8, #38bdf8); }
.fab-sms { color: var(--navy); border: 1px solid #dce9fd; background: #fff; }
.fab-consult { color: var(--navy); border: 1px solid #dce9fd; background: #fff; }

.pulse-effect { animation: fabPulse 2s infinite; }
@keyframes fabPulse {
  0% { box-shadow: 0 0 0 0 rgba(56, 189, 248, .42); }
  70% { box-shadow: 0 0 0 12px rgba(56, 189, 248, 0); }
  100% { box-shadow: 0 0 0 0 rgba(56, 189, 248, 0); }
}

@media (max-width: 980px) {
  .header-inner {
    display: flex;
    min-height: auto;
    padding: 14px 0;
    align-items: center;
    flex-direction: column;
    gap: 12px;
  }

  .nav {
    width: auto;
    max-width: 100%;
    justify-content: center;
    gap: 4px;
    overflow-x: visible;
    padding: 6px;
  }

  .nav a {
    min-width: auto;
    padding: 10px 14px;
    font-size: 13px;
  }

  .header-actions { display: none; }
  .menu-btn { display: grid; }

  .hero-top,
  .hero-cards,
  .story-panel,
  .about-hero-grid,
  .about-summary-grid,
  .about-process,
  .about-visual-grid,
  .library-slide,
  .library-grid,
  .review-grid,
  .feature-grid,
  .tuition-faq-grid,
  .article-layout,
  .media-card,
  .edu-card-grid,
  .edu-article-grid,
  .edu-content-layout,
  .academy-hero-grid,
  .academy-content-layout,
  .academy-local-links .links {
    grid-template-columns: 1fr;
  }

  .hero-bubble { display: none; }
  .notice { grid-template-columns: 92px 1fr; }
  .notice .date,
  .notice .control { display: none; }
  .side-card { position: static; }
  .review-card.featured { transform: none; }
  .library-slide .thumb {
    height: 310px;
    min-height: 0;
  }
  .library-copy {
    padding: 30px;
  }
  .about-hero-photo,
  .about-hero-photo img { min-height: 360px; }
  .about-visual-grid img { height: 300px; }
  .edu-side-panel { position: static; }
  .edu-article-photo img { height: 320px; }
  .academy-aside-card { position: static; }
  .academy-category-card { grid-template-columns: 1fr; }
  .academy-city-group { grid-template-columns: 92px minmax(0, 1fr); }
  .academy-link-grid { grid-template-columns: repeat(auto-fit, minmax(92px, 1fr)); }
}

@media (max-width: 640px) {
  .container { width: min(100% - 26px, var(--max)); }
  .site-header { position: sticky; }
  .header-inner { width: min(100% - 20px, var(--max)); }
  .brand { align-self: flex-start; }
  .nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-radius: 18px;
  }
  .nav a {
    width: 100%;
    padding: 10px 2px;
    font-size: 11px;
    letter-spacing: -0.04em;
  }
  .hero { padding: 50px 0 24px; }
  .hero h1 { font-size: clamp(40px, 14vw, 56px); }
  .hero-desc { font-size: 16px; }
  .about-hero { padding: 48px 0 30px; }
  .about-hero h1 {
    font-size: clamp(34px, 10.5vw, 48px);
    line-height: 1.12;
  }
  .about-hero p { font-size: 15px; line-height: 1.68; }
  .about-hero-photo,
  .about-hero-photo img { min-height: 260px; }
  .about-hero-photo figcaption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 11px 13px;
    font-size: 12px;
  }
  .about-summary { padding: 16px 0 54px; }
  .about-summary article,
  .about-process article { padding: 22px; border-radius: 22px; }
  .about-visual-band { padding: 16px 0 68px; }
  .about-visual-grid { padding: 18px; border-radius: 26px; }
  .about-visual-grid img { height: 230px; }
  .about-visual-grid h2 { font-size: clamp(28px, 8vw, 36px); }
  .main-card, .mini-card { min-height: 230px; padding: 28px; }
  .main-card h2 { font-size: 28px; }
  .library-section .section-head {
    gap: 18px;
  }
  .library-controls {
    align-self: flex-start;
  }
  .library-control {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }
  .library-carousel {
    margin-top: 24px;
    padding: 8px;
    border-radius: 24px;
  }
  .library-slide {
    border-radius: 19px;
  }
  .library-slide .thumb {
    height: 250px;
  }
  .library-copy {
    padding: 22px 18px 20px;
  }
  .library-copy span {
    margin-bottom: 12px;
    padding: 7px 10px;
    font-size: 12px;
  }
  .library-slide .library-copy h3 {
    font-size: clamp(26px, 7.5vw, 34px);
    line-height: 1.16;
  }
  .library-slide .library-copy p {
    font-size: 14px;
    line-height: 1.68;
  }
  .library-copy a {
    margin-top: 18px;
    padding: 10px 14px;
  }
  .image-story { padding: 12px 0 24px; }
  .story-panel {
    padding: 22px 18px 18px;
    border-radius: 24px;
    gap: 18px;
    background: linear-gradient(180deg, #f5fcff, #ffffff);
  }
  .story-copy h2 {
    margin-top: 8px;
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.16;
    letter-spacing: -0.06em;
  }
  .story-copy p {
    font-size: 15px;
    line-height: 1.68;
  }
  .story-badges {
    display: flex;
    gap: 0;
    overflow: hidden;
    margin-top: 16px;
    width: 100%;
    border: 1px solid #d7ecfb;
    border-radius: 16px;
    background: #f4fbff;
  }
  .story-badges span {
    flex: 1;
    justify-content: center;
    min-width: 0;
    padding: 12px 4px;
    border-radius: 0;
    background: transparent;
    color: #075985;
    font-size: 12px;
    letter-spacing: -0.03em;
    white-space: nowrap;
  }
  .story-badges span + span {
    border-left: 1px solid #d7ecfb;
  }
  .story-badges span::before {
    width: 5px;
    height: 5px;
    box-shadow: none;
  }
  .story-photo,
  .story-photo img {
    width: 100%;
    min-height: 0;
    height: 240px;
    border-radius: 20px;
  }
  .story-photo::after {
    left: 12px;
    bottom: 12px;
    padding: 8px 11px;
    font-size: 12px;
  }
  .media-card > img,
  .visual-side > img { height: 210px; }
  .quick-row { gap: 20px; justify-content: space-between; }
  .quick-link { min-width: 70px; }
  .section, .review-zone, .feature, .tuition-faq { padding: 68px 0; }
  .section-head { align-items: flex-start; flex-direction: column; }
  .tuition-card-head {
    align-items: flex-start;
    flex-direction: column;
    padding: 20px;
  }
  .tuition-tables { padding: 14px; gap: 12px; }
  .tuition-table { overflow-x: auto; }
  .tuition-table table { min-width: 420px; }
  .tuition-table th,
  .tuition-table td { padding: 12px 7px; font-size: 13px; }
  .home-faq-item summary {
    min-height: 64px;
    padding: 18px;
    font-size: 15px;
    line-height: 1.45;
  }
  .home-faq-item p {
    margin: -2px 16px 18px;
    padding: 14px;
    font-size: 13px;
  }
  .edu-hub-hero,
  .edu-article-hero { padding: 48px 0 32px; }
  .edu-hub-hero h1,
  .edu-article-hero h1 {
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.14;
  }
  .edu-hub-hero p,
  .edu-article-hero p { font-size: 15px; line-height: 1.7; }
  .edu-card { min-height: auto; padding: 22px; border-radius: 22px; }
  .edu-card h2 { font-size: 18px; }
  .edu-main-card { padding: 24px; border-radius: 24px; }
  .edu-main-card h2 { font-size: 22px; }
  .edu-main-card p { font-size: 15px; line-height: 1.82; }
  .edu-article-photo { border-radius: 24px; }
  .edu-article-photo img { height: 250px; }
  .edu-side-panel { padding: 22px; border-radius: 22px; }
  .academy-hero { padding: 48px 0 30px; }
  .academy-hero h1 {
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.14;
  }
  .academy-hero p { font-size: 15px; line-height: 1.7; }
  .academy-hero-panel,
  .academy-region-group,
  .academy-main-article,
  .academy-aside-card,
  .academy-faq-card,
  .academy-review-card,
  .academy-local-links {
    padding: 22px;
    border-radius: 22px;
  }
  .academy-stat-grid { grid-template-columns: 1fr; }
  .academy-city-group {
    display: block;
    padding: 16px 0;
  }
  .academy-city-title {
    margin: 0 0 10px;
    padding: 0;
  }
  .academy-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }
  .academy-media-section { padding: 26px 0 12px; }
  .academy-media-section .container { width: 100%; }
  .academy-media-stack { gap: 14px; }
  .academy-visible-image {
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .academy-map-card {
    margin: 0 13px;
    border-radius: 22px;
  }
  .academy-main-article h2 { font-size: 22px; }
  .academy-main-article p { font-size: 15px; line-height: 1.82; }
  .academy-intro-answer,
  .academy-prose-section {
    padding: 20px;
    border-radius: 20px;
  }
  .academy-link-grid a {
    min-height: 36px;
    padding: 0 8px;
    font-size: 12.5px;
  }
  .academy-local-links a { min-height: 42px; padding: 0 12px; font-size: 13px; }
  .footer-logos { flex-wrap: wrap; padding: 18px 0; }
  .footer-bottom { flex-direction: column; }
  .wawa-fixed-fab-container { right: 12px; bottom: 14px; }
  .wawa-fab-item { padding: 9px 12px; font-size: 12px; }
}

/* Core pages refinement: home, about, education and consultation */
.core-page :where(a, button, summary):focus-visible {
  outline: 3px solid rgba(45, 127, 240, .46);
  outline-offset: 3px;
}

.core-page .hero-kicker {
  margin: 0 0 16px;
  color: var(--mint);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
}

.core-page.home-page .hero h1 {
  max-width: 850px;
  font-size: clamp(44px, 5.5vw, 68px);
  line-height: 1.02;
}

.core-page.home-page .hero h1 span + span { margin-top: 6px; }

.core-page.home-page .mini-card h3 {
  max-width: 230px;
  line-height: 1.34;
}

.core-page.home-page .mini-illust {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(23, 19, 95, .1);
  border-radius: 20px;
  color: var(--navy);
  background: rgba(255, 255, 255, .62);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: .08em;
}

.core-page.home-page .notice a:not(.control) {
  min-width: 0;
  color: #334155;
  font-weight: 850;
}

.core-page.home-page .notice .control {
  color: var(--navy);
  font-size: 13px;
  font-weight: 950;
  white-space: nowrap;
}

.core-page.home-page .quick-icon {
  color: var(--blue2);
  font-size: 12px;
  letter-spacing: .08em;
  background: linear-gradient(145deg, #f8fbff, #eaf3ff);
  border: 1px solid #e0eafb;
}

.core-page.home-page .feature-icon {
  color: var(--blue2);
  font-size: 13px;
  letter-spacing: .08em;
  background: linear-gradient(145deg, #f5fbff, #e2f5ef);
}

.responsibility-section {
  background: linear-gradient(180deg, #fff, #f7fbff);
}

.responsibility-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.responsibility-grid article {
  position: relative;
  min-height: 240px;
  padding: 30px;
  border: 1px solid #dfe9f6;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(23, 19, 95, .06);
}

.responsibility-grid article::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  height: 4px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(90deg, var(--blue2), var(--mint));
}

.responsibility-grid span,
.edu-side-label {
  color: var(--mint);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .12em;
}

.responsibility-grid h3 {
  margin: 22px 0 12px;
  color: var(--navy);
  font-size: 22px;
  letter-spacing: -.045em;
}

.responsibility-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 700;
}

.compact-faq-section { padding-top: 34px; }

.compact-faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: 34px;
  align-items: start;
}

.compact-faq-layout > div:first-child {
  position: sticky;
  top: 112px;
  padding: 30px;
  border-radius: 26px;
  color: #fff;
  background: linear-gradient(145deg, var(--navy), #283d91);
  box-shadow: var(--shadow);
}

.compact-faq-layout > div:first-child .eyebrow { color: #76e3c7; }
.compact-faq-layout > div:first-child h2 { margin: 12px 0; font-size: 30px; letter-spacing: -.055em; }
.compact-faq-layout > div:first-child p { margin: 0; color: rgba(255,255,255,.82); line-height: 1.75; font-weight: 700; }

.contact-hero { padding-bottom: 64px; }

.contact-channel-section {
  margin-top: -24px;
  padding-bottom: 34px;
}

.contact-channel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.contact-channel {
  display: grid;
  grid-template-columns: 46px 1fr 28px;
  gap: 16px;
  align-items: center;
  min-height: 158px;
  padding: 24px;
  border: 1px solid #dce7f5;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(23, 19, 95, .08);
  transition: transform .18s ease, border-color .18s ease;
}

.contact-channel:hover { transform: translateY(-4px); border-color: rgba(45,127,240,.35); }
.contact-channel > span { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 15px; color: #fff; background: var(--navy); font-size: 12px; font-weight: 950; }
.contact-channel small { color: var(--mint); font-size: 10px; font-weight: 950; letter-spacing: .12em; }
.contact-channel h2 { margin: 7px 0 6px; color: var(--navy); font-size: 19px; letter-spacing: -.045em; }
.contact-channel p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; font-weight: 700; }
.contact-channel > b { color: var(--blue2); font-size: 20px; }

.contact-step-list { display: grid; gap: 12px; }
.contact-step-list > div { display: grid; grid-template-columns: 38px 1fr; gap: 14px; align-items: start; padding: 16px; border-radius: 18px; background: #f5f9ff; }
.contact-step-list b { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; color: #fff; background: var(--blue2); }
.contact-step-list p { display: grid; gap: 3px; }
.contact-step-list strong { color: var(--navy); font-size: 15px; }

.edu-start-section { padding: 62px 0 20px; }
.edu-concern-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.edu-concern-grid a { position: relative; min-height: 150px; padding: 24px; border: 1px solid #dce8f5; border-radius: 24px; background: linear-gradient(145deg, #fff, #f4f9ff); box-shadow: 0 16px 40px rgba(23,19,95,.06); }
.edu-concern-grid a::after { content: "→"; position: absolute; right: 22px; bottom: 18px; color: var(--blue2); font-weight: 950; }
.edu-concern-grid span { display: block; margin-bottom: 12px; color: var(--muted); font-size: 13px; font-weight: 800; }
.edu-concern-grid strong { color: var(--navy); font-size: 19px; line-height: 1.4; letter-spacing: -.045em; }

.edu-featured-section { padding-bottom: 24px; }
.edu-featured-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.edu-featured-card { display: flex; min-height: 290px; padding: 28px; flex-direction: column; border-radius: 28px; color: #fff; background: linear-gradient(145deg, var(--navy), #3156b5); box-shadow: var(--shadow); }
.edu-featured-card:nth-child(2) { color: var(--navy); background: linear-gradient(145deg, #dff6ff, #dfe9ff); }
.edu-featured-card:nth-child(3) { color: #123e36; background: linear-gradient(145deg, #dcf8ef, #f4fff9); }
.edu-featured-card span { font-size: 11px; font-weight: 950; letter-spacing: .08em; opacity: .78; }
.edu-featured-card h2 { margin: 28px 0 14px; font-size: 27px; line-height: 1.25; letter-spacing: -.055em; }
.edu-featured-card p { margin: 0; font-size: 14px; line-height: 1.72; font-weight: 700; opacity: .8; }
.edu-featured-card b { margin-top: auto; padding-top: 24px; font-size: 13px; }

.edu-library-section { background: linear-gradient(180deg, #fff, #f7fbff); }
.edu-filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; padding: 8px; border: 1px solid #e1eaf5; border-radius: 20px; background: #fff; box-shadow: 0 14px 36px rgba(23,19,95,.05); }
.edu-filter-bar button { min-height: 42px; padding: 0 18px; border: 0; border-radius: 14px; color: #536175; background: transparent; font: inherit; font-size: 13px; font-weight: 900; cursor: pointer; }
.edu-filter-bar button:hover { color: var(--navy); background: #f0f6ff; }
.edu-filter-bar button.is-active { color: #fff; background: var(--navy); box-shadow: 0 9px 20px rgba(23,19,95,.16); }
.education-hub-page .edu-card { min-height: 240px; display: flex; flex-direction: column; }
.education-hub-page .edu-card::after { display: none; }
.education-hub-page .edu-card b { margin-top: auto; color: var(--blue2); font-size: 18px; }
.education-hub-page .edu-card[hidden] { display: none !important; }
.edu-empty { padding: 26px; text-align: center; color: var(--muted); border-radius: 20px; background: #f5f9ff; font-weight: 800; }

.edu-answer-section { margin-top: -20px; padding: 0 0 28px; position: relative; z-index: 2; }
.edu-answer-card { display: grid; grid-template-columns: 110px minmax(220px,.7fr) minmax(0,1.3fr); gap: 22px; align-items: center; padding: 26px 30px; border: 1px solid #dce8f5; border-radius: 26px; background: #fff; box-shadow: 0 20px 50px rgba(23,19,95,.08); }
.edu-answer-card > span { display: grid; place-items: center; min-height: 52px; border-radius: 16px; color: #fff; background: var(--mint); font-size: 13px; font-weight: 950; }
.edu-answer-card h2 { margin: 0; color: var(--navy); font-size: 21px; line-height: 1.42; letter-spacing: -.045em; }
.edu-answer-card p { margin: 0; color: #4f5e72; font-size: 15px; line-height: 1.75; font-weight: 750; }

.edu-main-card.upgraded { display: grid; gap: 18px; padding: 0; border: 0; background: transparent; box-shadow: none; }
.edu-prose-block { display: grid; grid-template-columns: 54px 1fr; gap: 20px; padding: 30px; border: 1px solid #dfe9f5; border-radius: 26px; background: #fff; box-shadow: 0 16px 40px rgba(23,19,95,.055); }
.edu-prose-block.practical { background: linear-gradient(145deg, #f3f8ff, #fff); }
.edu-prose-block.parent-note { border-color: #caece3; background: linear-gradient(145deg, #effbf7, #fff); }
.edu-block-number { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 17px; color: var(--blue2); background: #eef5ff; font-size: 12px; font-weight: 950; letter-spacing: .08em; }
.edu-prose-block h2 { margin: 3px 0 15px; color: var(--navy); font-size: 23px; line-height: 1.4; letter-spacing: -.05em; }
.edu-prose-block p { margin: 0; color: #566478; font-size: 15px; line-height: 1.85; font-weight: 700; }
.edu-prose-block p + p { margin-top: 12px; }
.edu-action-steps { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 10px; margin: 20px 0 0; padding: 0; list-style: none; }
.edu-action-steps li { display: grid; gap: 10px; align-content: start; min-height: 128px; padding: 17px; border-radius: 18px; background: #fff; border: 1px solid #e0eaf6; }
.edu-action-steps b { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 9px; color: #fff; background: var(--navy); font-size: 11px; }
.edu-action-steps span { color: #36465d; font-size: 13px; line-height: 1.62; font-weight: 850; }
.education-article-page .edu-check-list { margin-top: 18px; }
.education-article-page .edu-side-panel { top: 112px; }
.education-article-page .edu-side-panel h2 { margin-top: 12px; }
.education-article-page .edu-faq-section { background: #f7fbff; }

@media (max-width: 980px) {
  .responsibility-grid,
  .contact-channel-grid,
  .edu-concern-grid,
  .edu-featured-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .compact-faq-layout { grid-template-columns: 1fr; }
  .compact-faq-layout > div:first-child { position: static; }
  .edu-answer-card { grid-template-columns: 96px 1fr; }
  .edu-answer-card p { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .core-page .nav a { min-height: 44px; display: flex; align-items: center; justify-content: center; font-size: 12px; }
  .core-page.home-page .hero { padding-top: 42px; }
  .core-page.home-page .hero-kicker { margin-bottom: 12px; font-size: 10px; }
  .core-page.home-page .hero h1 { font-size: clamp(34px, 10.2vw, 43px); line-height: 1.1; letter-spacing: -.065em; }
  .core-page.home-page .hero-desc { margin-top: 16px; line-height: 1.7; }
  .core-page.home-page .notice { grid-template-columns: 82px minmax(0,1fr); gap: 10px; }
  .core-page.home-page .notice .control { grid-column: 2; justify-self: start; }
  .core-page.home-page .quick-row { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 7px; }
  .core-page.home-page .quick-link { min-width: 0; font-size: 10px; }
  .core-page.home-page .quick-icon { width: 40px; height: 40px; font-size: 10px; }
  .responsibility-grid,
  .contact-channel-grid,
  .edu-concern-grid,
  .edu-featured-grid { grid-template-columns: 1fr; }
  .responsibility-grid article { min-height: 0; padding: 24px; }
  .compact-faq-layout > div:first-child { padding: 24px; border-radius: 22px; }
  .compact-faq-layout > div:first-child h2 { font-size: 25px; }
  .contact-hero { padding-bottom: 48px; }
  .contact-channel-section { margin-top: -14px; }
  .contact-channel { min-height: 126px; padding: 20px; grid-template-columns: 42px 1fr 22px; }
  .contact-channel > span { width: 42px; height: 42px; }
  .contact-channel h2 { font-size: 17px; }
  .contact-step-list > div { padding: 14px; }
  .edu-start-section { padding-top: 48px; }
  .edu-concern-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
  .edu-concern-grid a { min-height: 132px; padding: 18px; border-radius: 20px; }
  .edu-concern-grid span { font-size: 11px; }
  .edu-concern-grid strong { font-size: 16px; }
  .edu-featured-card { min-height: 230px; padding: 24px; }
  .edu-featured-card h2 { margin-top: 22px; font-size: 23px; }
  .edu-filter-bar { gap: 6px; padding: 6px; border-radius: 18px; }
  .edu-filter-bar button { min-height: 40px; padding: 0 12px; font-size: 12px; }
  .education-hub-page .edu-card { min-height: 0; }
  .edu-answer-section { margin-top: -12px; padding-bottom: 20px; }
  .edu-answer-card { grid-template-columns: 1fr; gap: 12px; padding: 20px; border-radius: 22px; }
  .edu-answer-card > span { min-height: 40px; width: 86px; }
  .edu-answer-card h2 { font-size: 19px; }
  .edu-answer-card p { grid-column: auto; font-size: 14px; }
  .edu-prose-block { grid-template-columns: 1fr; gap: 14px; padding: 22px; border-radius: 22px; }
  .edu-block-number { width: 44px; height: 44px; border-radius: 14px; }
  .edu-prose-block h2 { font-size: 20px; }
  .edu-prose-block p { font-size: 14px; line-height: 1.8; }
  .edu-action-steps { grid-template-columns: 1fr; }
  .edu-action-steps li { grid-template-columns: 28px 1fr; align-items: center; min-height: 0; }
  .home-page .tuition-table { overflow: visible; }
  .home-page .tuition-table table { min-width: 0; width: 100%; border-collapse: separate; }
  .home-page .tuition-table thead { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
  .home-page .tuition-table tbody { display: grid; gap: 10px; }
  .home-page .tuition-table tr { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); overflow: hidden; border: 1px solid #e2eaf5; border-radius: 16px; background: #fff; }
  .home-page .tuition-table td { display: grid; gap: 3px; padding: 11px 5px; border: 0; text-align: center; font-size: 12px; }
  .home-page .tuition-table td:first-child { grid-column: 1 / -1; padding: 9px; color: var(--navy); background: #eef5ff; font-weight: 950; }
  .home-page .tuition-table td:not(:first-child)::before { color: #7b8798; font-size: 10px; font-weight: 900; }
  .home-page .tuition-table td:nth-child(2)::before { content: "초등"; }
  .home-page .tuition-table td:nth-child(3)::before { content: "중등"; }
  .home-page .tuition-table td:nth-child(4)::before { content: "고등"; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .pulse-effect { animation: none; }
  .library-track,
  .edu-card,
  .contact-channel { transition: none; }
}

.error-main {
  min-height: calc(100vh - 180px);
  display: grid;
  align-items: center;
  padding: 70px 0;
  background: radial-gradient(circle at 20% 10%, rgba(78,163,255,.16), transparent 30%), linear-gradient(180deg,#fff,#f5fbff);
}

.error-card {
  display: grid;
  grid-template-columns: 180px minmax(0,1fr);
  gap: 42px;
  align-items: center;
  padding: 52px;
  border: 1px solid #dce7f5;
  border-radius: 34px;
  background: #fff;
  box-shadow: var(--shadow);
}

.error-card > span { color: #dfeaff; font-size: clamp(76px,12vw,150px); line-height: .8; font-weight: 950; letter-spacing: -.08em; }
.error-card h1 { margin: 12px 0 14px; color: var(--navy); font-size: clamp(34px,5vw,54px); line-height: 1.14; letter-spacing: -.065em; }
.error-card p { max-width: 680px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.75; font-weight: 700; }
.error-card .actions { margin-top: 24px; }
.error-card .btn.white { color: #fff; background: var(--navy); }
.error-card .btn.ghost { color: var(--navy); border-color: #d7e2f1; }

@media (max-width: 640px) {
  .error-main { padding: 42px 0; }
  .error-card { grid-template-columns: 1fr; gap: 24px; padding: 28px; border-radius: 26px; }
  .error-card > span { font-size: 82px; }
  .error-card h1 { font-size: 32px; }
}

/* Academy category directory: compact region navigation for 371 local pages */
.academy-directory-page .section-head {
  align-items: end;
  margin-bottom: 24px;
}

.academy-directory-page .academy-directory-tools {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
  gap: 22px;
  margin-bottom: 18px;
  padding: 24px;
  border: 1px solid #dce8f5;
  border-radius: 26px;
  background: linear-gradient(135deg, #f5fbff 0%, #ffffff 52%, #f0fcf9 100%);
  box-shadow: 0 18px 46px rgba(23, 19, 95, .06);
}

.academy-directory-search label,
.academy-region-shortcuts > span {
  display: block;
  margin-bottom: 10px;
  color: #263855;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: -.035em;
}

.academy-search-field {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  min-height: 50px;
  padding: 0 10px 0 15px;
  border: 1px solid #cadbed;
  border-radius: 15px;
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
}

.academy-search-field:focus-within {
  border-color: var(--mint);
  box-shadow: 0 0 0 4px rgba(14, 170, 136, .1);
}

.academy-search-field > span {
  color: var(--mint);
  font-size: 22px;
  font-weight: 950;
  transform: rotate(-20deg);
}

.academy-search-field input {
  min-width: 0;
  height: 48px;
  padding: 0 10px;
  border: 0;
  outline: 0;
  color: var(--navy);
  background: transparent;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
}

.academy-search-field input::placeholder { color: #8c99aa; }

.academy-search-field button {
  min-height: 32px;
  padding: 0 10px;
  border: 0;
  border-radius: 9px;
  color: #496078;
  background: #edf4fb;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.academy-search-status {
  min-height: 20px;
  margin: 8px 2px 0;
  color: #6a778a;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 760;
}

.academy-region-shortcut-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 7px;
}

.academy-region-shortcut-grid button {
  min-height: 38px;
  padding: 0 7px;
  border: 1px solid #dce8f4;
  border-radius: 11px;
  color: #40536d;
  background: rgba(255, 255, 255, .9);
  font-size: 12.5px;
  font-weight: 900;
  letter-spacing: -.03em;
  cursor: pointer;
  transition: border-color .16s ease, background .16s ease, color .16s ease, transform .16s ease;
}

.academy-region-shortcut-grid button:hover,
.academy-region-shortcut-grid button[aria-pressed="true"] {
  color: #fff;
  border-color: var(--navy);
  background: var(--navy);
  transform: translateY(-1px);
}

.academy-directory-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 2px 12px;
  color: #65758a;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 760;
}

.academy-directory-summary strong {
  flex: 0 0 auto;
  color: var(--navy);
  font-size: 15px;
  font-weight: 950;
}

.academy-directory-page .academy-group-list { gap: 12px; }

.academy-directory-page .academy-region-group {
  padding: 0;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(23, 19, 95, .045);
}

.academy-directory-page .academy-region-group[hidden] { display: none; }

.academy-region-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
  padding: 17px 22px;
  list-style: none;
  cursor: pointer;
  user-select: none;
}

.academy-region-summary::-webkit-details-marker { display: none; }
.academy-region-summary::marker { content: ""; }

.academy-region-heading {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.academy-region-heading::before {
  content: "";
  width: 7px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--mint), #52b7ff);
}

.academy-region-heading strong {
  color: var(--navy);
  font-size: 20px;
  letter-spacing: -.05em;
}

.academy-region-heading small {
  color: #78869a;
  font-size: 12px;
  font-weight: 850;
}

.academy-region-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  color: #53647a;
  font-size: 12px;
  font-weight: 900;
}

.academy-region-action b {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--navy);
  background: #eef5fc;
  transition: transform .18s ease, color .18s ease, background .18s ease;
}

.academy-region-accordion[open] .academy-region-action span::before { content: "접기"; }
.academy-region-accordion[open] .academy-region-action span { font-size: 0; }
.academy-region-accordion[open] .academy-region-action span::before { font-size: 12px; }
.academy-region-accordion[open] .academy-region-action b {
  color: #fff;
  background: var(--mint);
  transform: rotate(180deg);
}

.academy-region-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0 18px 18px;
  border-top: 1px solid #e8eff7;
}

.academy-directory-page .academy-city-group {
  display: block;
  min-width: 0;
  padding: 17px;
  border: 1px solid #e4edf7;
  border-radius: 16px;
  background: #f9fbfe;
}

.academy-directory-page .academy-city-group + .academy-city-group {
  margin-top: 0;
  border-top: 1px solid #e4edf7;
}

.academy-directory-page .academy-city-group[hidden] { display: none; }

.academy-directory-page .academy-city-title {
  margin: 0 0 11px;
  padding: 0;
  color: var(--navy);
  font-size: 14px;
}

.academy-directory-page .academy-link-grid {
  grid-template-columns: repeat(auto-fit, minmax(112px, 1fr));
  gap: 7px;
}

.academy-directory-page .academy-link-grid a {
  justify-content: space-between;
  min-height: 40px;
  padding: 0 11px 0 13px;
  border-color: #dfe9f4;
  border-radius: 11px;
  color: #344862;
  background: #fff;
  box-shadow: none;
  font-size: 12.5px;
}

.academy-directory-page .academy-link-grid a::after {
  content: "›";
  color: #9aa9bb;
  font-size: 18px;
  line-height: 1;
}

.academy-directory-page .academy-link-grid a:hover {
  color: #087f68;
  border-color: rgba(14, 170, 136, .38);
  background: #f1fcf9;
}

.academy-directory-page .academy-link-grid a[hidden] { display: none; }

@media (max-width: 820px) {
  .academy-directory-page .academy-directory-tools { grid-template-columns: 1fr; }
  .academy-region-shortcut-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .academy-directory-page .section-head { display: block; margin-bottom: 18px; }
  .academy-directory-page .section-head .section-desc { margin-top: 10px; }
  .academy-directory-page .academy-directory-tools {
    gap: 18px;
    margin-inline: -2px;
    padding: 18px;
    border-radius: 20px;
  }
  .academy-region-shortcut-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 6px; }
  .academy-region-shortcut-grid button { min-height: 38px; padding: 0 4px; font-size: 12px; }
  .academy-directory-summary { display: block; margin-bottom: 11px; }
  .academy-directory-summary strong { display: block; margin-bottom: 3px; }
  .academy-directory-page .academy-region-group { border-radius: 17px; }
  .academy-region-summary { min-height: 68px; padding: 14px 16px; }
  .academy-region-heading { gap: 10px; }
  .academy-region-heading::before { width: 6px; height: 26px; }
  .academy-region-heading strong { font-size: 18px; }
  .academy-region-heading small { font-size: 11px; }
  .academy-region-action > span { display: none; }
  .academy-region-content { grid-template-columns: 1fr; gap: 9px; padding: 0 10px 10px; }
  .academy-directory-page .academy-city-group { padding: 14px; border-radius: 14px; }
  .academy-directory-page .academy-link-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; }
  .academy-directory-page .academy-link-grid a {
    min-height: 42px;
    padding: 0 8px 0 10px;
    border-radius: 10px;
    font-size: 12px;
  }
}

@media (max-width: 380px) {
  .academy-region-shortcut-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .academy-region-heading small { display: none; }
}

/* Local academy pages: subject switch and supporting navigation */
.academy-navigation-section {
  padding-top: 34px;
  background: linear-gradient(180deg, rgba(246, 250, 255, 0) 0%, #f6faff 100%);
}

.academy-page-navigation {
  gap: 20px;
  padding: 30px;
  border: 1px solid #dbe7f4;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 22px 58px rgba(23, 19, 95, .07);
}

.academy-navigation-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 500px);
  gap: 24px;
  align-items: end;
}

.academy-navigation-head .eyebrow { margin-bottom: 7px; }

.academy-navigation-head h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(23px, 2.6vw, 32px);
  line-height: 1.25;
  letter-spacing: -.055em;
}

.academy-navigation-head p {
  margin: 0;
  color: #66758a;
  font-size: 14px;
  line-height: 1.72;
  font-weight: 760;
}

.academy-subject-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.academy-page-navigation .academy-subject-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 92px;
  padding: 18px 20px;
  border: 1px solid #dce8f4;
  border-radius: 20px;
  color: var(--navy);
  background: #f8fbff;
  box-shadow: none;
}

.academy-page-navigation .academy-subject-card::after { content: none; }

.academy-page-navigation .academy-subject-card.is-current {
  color: #fff;
  border-color: transparent;
  background:
    radial-gradient(circle at 90% 15%, rgba(82, 183, 255, .32), transparent 34%),
    linear-gradient(135deg, #17135f 0%, #253f96 100%);
}

.academy-page-navigation .academy-subject-card.is-related {
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.academy-page-navigation .academy-subject-card.is-related:hover {
  color: #087f68;
  border-color: rgba(14, 170, 136, .38);
  background: #f1fcf9;
  box-shadow: 0 14px 30px rgba(14, 170, 136, .09);
  transform: translateY(-2px);
}

.academy-subject-badge {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  color: #087f68;
  background: #dff8f1;
  font-size: 13px;
  font-weight: 950;
}

.academy-subject-card.is-current .academy-subject-badge {
  color: #fff;
  background: rgba(255, 255, 255, .16);
}

.academy-subject-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.academy-subject-copy small {
  color: #77869a;
  font-size: 11px;
  font-weight: 900;
}

.academy-subject-copy strong {
  overflow: hidden;
  color: inherit;
  font-size: 17px;
  line-height: 1.35;
  letter-spacing: -.045em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.academy-subject-card.is-current .academy-subject-copy small { color: rgba(255, 255, 255, .7); }

.academy-current-label {
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  color: rgba(255, 255, 255, .88);
  font-size: 10.5px;
  font-weight: 900;
}

.academy-card-arrow {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #087f68;
  background: #e4f8f3;
  font-size: 18px;
  font-weight: 950;
}

.academy-support-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid #e8eff7;
}

.academy-page-navigation .academy-support-links a {
  min-height: 44px;
  border-radius: 12px;
  color: #455a73;
  background: #f7f9fc;
  box-shadow: none;
  font-size: 13px;
}

.academy-page-navigation .academy-support-links a:hover {
  color: var(--navy);
  border-color: #cddced;
  background: #eef4fb;
}

@media (max-width: 820px) {
  .academy-navigation-head { grid-template-columns: 1fr; gap: 10px; }
  .academy-subject-switch { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .academy-navigation-section { padding-top: 18px; }
  .academy-page-navigation {
    gap: 16px;
    padding: 20px;
    border-radius: 22px;
  }
  .academy-navigation-head h2 { font-size: 23px; }
  .academy-navigation-head p { font-size: 13px; }
  .academy-page-navigation .academy-subject-card {
    gap: 11px;
    min-height: 82px;
    padding: 15px;
    border-radius: 16px;
  }
  .academy-subject-badge { width: 42px; height: 42px; border-radius: 13px; font-size: 12px; }
  .academy-subject-copy strong { font-size: 15px; }
  .academy-current-label { display: none; }
  .academy-card-arrow { width: 32px; height: 32px; }
  .academy-support-links { gap: 6px; }
  .academy-page-navigation .academy-support-links a {
    justify-content: center;
    min-height: 48px;
    padding: 7px;
    text-align: center;
    font-size: 11.5px;
    line-height: 1.35;
  }
  .academy-page-navigation .academy-support-links a::after { display: none; }
}

/* Local academy manuscript: mobile-first editorial reading layout */
.academy-main-article {
  counter-reset: academy-manuscript;
  overflow: hidden;
}

.academy-summary-box {
  position: relative;
  margin-bottom: 20px;
  padding: 26px 28px;
  border-color: rgba(14, 170, 136, .22);
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0, rgba(45, 127, 240, .1), transparent 38%),
    linear-gradient(135deg, #effcf8 0%, #f6fbff 100%);
}

.academy-summary-box strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: #087f68;
  letter-spacing: -.025em;
}

.academy-summary-box strong::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #16bfa3;
  box-shadow: 0 0 0 5px rgba(22, 191, 163, .12);
}

.academy-intro-answer {
  position: relative;
  margin: 0 0 8px;
  padding: 24px 26px 26px;
  border: 0;
  border-bottom: 1px solid #e3ebf5;
  border-radius: 0;
  background: transparent;
}

.academy-intro-answer::before {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 30px;
  left: 0;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #16bfa3, #2b6cf6);
}

.academy-intro-answer p {
  color: #263b58;
  font-size: 17px;
  line-height: 1.86;
}

.academy-prose-section {
  counter-increment: academy-manuscript;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  column-gap: 18px;
  margin: 0;
  padding: 32px 2px;
  border: 0;
  border-bottom: 1px solid #e8eef6;
  border-radius: 0;
  background: transparent;
}

.academy-prose-section:last-child { border-bottom: 0; }

.academy-prose-section::before {
  content: counter(academy-manuscript, decimal-leading-zero);
  position: static;
  grid-column: 1;
  grid-row: 1 / span 30;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #087f68;
  background: #e6f8f3;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .04em;
}

.academy-prose-section:nth-of-type(even)::before {
  color: #225fc7;
  background: #eaf2ff;
}

.academy-prose-section h2,
.academy-prose-section p {
  grid-column: 2;
  min-width: 0;
}

.academy-prose-section h2 {
  margin: 2px 0 15px;
  text-wrap: balance;
}

.academy-prose-section p {
  max-width: 74ch;
  font-weight: 650;
  text-wrap: pretty;
}

.academy-prose-section h2 + p {
  color: #344862;
  font-weight: 720;
}

.academy-faq-item summary {
  position: relative;
  padding-right: 52px;
}

.academy-faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: #087f68;
  background: #e4f8f3;
  font-size: 18px;
  line-height: 1;
  transform: translateY(-50%);
}

.academy-faq-item[open] summary::after { content: "−"; }

.academy-review-item {
  position: relative;
  padding: 24px 24px 24px 54px;
  border: 1px solid #e2ebf5;
  background: linear-gradient(145deg, #fbfdff, #f5f9ff);
}

.academy-review-item::before {
  content: "“";
  position: absolute;
  top: 13px;
  left: 20px;
  color: #16a88c;
  font-family: Georgia, serif;
  font-size: 42px;
  line-height: 1;
  opacity: .9;
}

@media (max-width: 640px) {
  .academy-content-layout { gap: 16px; }

  .academy-main-article {
    padding: 18px;
    border-radius: 20px;
    box-shadow: 0 14px 36px rgba(23, 19, 95, .055);
  }

  .academy-summary-box {
    margin-bottom: 14px;
    padding: 19px 18px 20px;
    border-radius: 17px;
  }

  .academy-summary-box strong {
    margin-bottom: 9px;
    font-size: 13px;
  }

  .academy-summary-box p {
    margin: 0;
    color: #354b63;
    font-size: 14px;
    line-height: 1.75;
    font-weight: 670;
  }

  .academy-intro-answer {
    margin-bottom: 0;
    padding: 18px 4px 22px 16px;
  }

  .academy-intro-answer::before {
    top: 21px;
    bottom: 25px;
    width: 3px;
  }

  .academy-intro-answer p {
    margin: 0;
    color: #263b58;
    font-size: 15px;
    line-height: 1.78;
    font-weight: 720;
  }

  .academy-prose-section {
    grid-template-columns: 34px minmax(0, 1fr);
    column-gap: 11px;
    padding: 26px 0;
  }

  .academy-prose-section::before {
    width: 32px;
    height: 32px;
    border-radius: 11px;
    font-size: 10px;
  }

  .academy-main-article .academy-prose-section h2 {
    margin: 1px 0 13px;
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: -.045em;
  }

  .academy-main-article .academy-prose-section p {
    margin-bottom: 13px;
    color: #526176;
    font-size: 14.5px;
    line-height: 1.78;
    font-weight: 620;
  }

  .academy-main-article .academy-prose-section h2 + p {
    color: #354861;
    font-weight: 690;
  }

  .academy-aside-card,
  .academy-faq-card,
  .academy-review-card {
    padding: 19px;
    border-radius: 20px;
  }

  .academy-aside-card dl { gap: 0; }

  .academy-aside-card dl > div {
    padding: 13px 0;
    border-bottom: 1px solid #e8eef6;
  }

  .academy-aside-card dl > div:first-child { padding-top: 4px; }
  .academy-aside-card dl > div:last-child { padding-bottom: 2px; border-bottom: 0; }

  .academy-aside-card dl > .academy-tuition-row {
    margin-top: 6px;
    padding: 14px;
    border-bottom: 1px solid rgba(14, 170, 136, .2);
    border-radius: 16px;
  }

  .academy-tuition-link,
  .academy-tuition-pending {
    min-height: 48px;
    font-size: 13px;
  }

  .academy-faq-list { gap: 9px; }

  .academy-faq-item { border-radius: 15px; }

  .academy-faq-item summary {
    padding: 15px 45px 15px 15px;
    font-size: 14px;
    line-height: 1.55;
  }

  .academy-faq-item summary::after {
    right: 13px;
    width: 24px;
    height: 24px;
    font-size: 16px;
  }

  .academy-faq-item p {
    padding: 0 15px 16px;
    font-size: 13.5px;
    line-height: 1.72;
  }

  .academy-review-list { gap: 10px; }

  .academy-review-item {
    padding: 19px 17px 19px 43px;
    border-radius: 17px;
    font-size: 13.5px;
    line-height: 1.75;
    font-weight: 650;
  }

  .academy-review-item::before {
    top: 12px;
    left: 14px;
    font-size: 34px;
  }
}

/* 지역별 학원 페이지: 첫 화면에서 상담 판단 정보를 바로 확인하도록 정리 */
.academy-quick-info-section {
  padding: 30px 0 6px;
}

.academy-quick-info-layout {
  display: grid;
  gap: 16px;
}

.academy-summary-box.academy-top-answer {
  margin: 0;
  padding: 24px 28px;
}

.academy-quick-info-section .academy-aside-card {
  position: static;
  top: auto;
  padding: 24px 28px;
}

.academy-quick-info-section .academy-aside-card dl {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.academy-quick-info-section .academy-aside-card dl > div {
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid #e5edf6;
  border-radius: 16px;
  background: #fbfdff;
}

.academy-quick-info-section .academy-aside-card dl > .academy-tuition-row {
  grid-column: 1 / -1;
  margin: 0;
  border-color: rgba(14, 170, 136, .2);
}

.academy-content-layout.academy-content-single {
  grid-template-columns: minmax(0, 1fr);
}

@media (max-width: 900px) {
  .academy-quick-info-section .academy-aside-card dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .academy-quick-info-section {
    padding: 18px 0 4px;
  }

  .academy-quick-info-layout {
    gap: 12px;
  }

  .academy-summary-box.academy-top-answer,
  .academy-quick-info-section .academy-aside-card {
    padding: 18px;
    border-radius: 20px;
  }

  .academy-quick-info-section .academy-aside-card dl {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .academy-quick-info-section .academy-aside-card dl > div {
    padding: 12px 13px;
    border-bottom: 1px solid #e5edf6;
    border-radius: 14px;
  }

  .academy-quick-info-section .academy-aside-card dl > .academy-tuition-row {
    grid-column: auto;
    padding: 14px;
  }
}
