/*
 * =============================================================================
 * Home.css
 * 파이드로스 메인 페이지 전용 스타일
 * - Hero/시스템 소개/주제 카드/공지/상담/지도/푸터 반응형 포함
 * =============================================================================
 */

/* ==========================================================================
   [01] Page Shell + Motion System
   ========================================================================== */
.page-home-eduleb {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-bottom: 7rem;
  overflow-x: clip;
  font-family:
    "Avenir Next", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
  color: #4a5355;
}

.page-home-eduleb .wow {
  opacity: 0;
  visibility: hidden;
  will-change: transform, opacity;
  animation-duration: var(--wow-duration, 0.9s);
  animation-delay: var(--wow-delay, 0s);
  animation-fill-mode: both;
}

.page-home-eduleb .wow.is-visible {
  visibility: visible;
}

.page-home-eduleb .wow.is-visible.fadeInUp {
  animation-name: wowFadeInUp;
}

.page-home-eduleb .wow.is-visible.fadeInLeft {
  animation-name: wowFadeInLeft;
}

.page-home-eduleb .wow.is-visible.fadeInRight {
  animation-name: wowFadeInRight;
}

.page-home-eduleb .wow.is-visible.zoomIn {
  animation-name: wowZoomIn;
}

@keyframes wowFadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, var(--wow-distance, 32px), 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes wowFadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(calc(var(--wow-distance, 32px) * -1), 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes wowFadeInRight {
  from {
    opacity: 0;
    transform: translate3d(var(--wow-distance, 32px), 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes wowZoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.9, 0.9, 1);
  }

  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

@keyframes eduFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -10px, 0);
  }
}

/* ==========================================================================
   [02] Accessibility: Reduced Motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .page-home-eduleb .wow,
  .edu-hero-insight,
  .edu-card-notice,
  .edu-card-stat {
    opacity: 1 !important;
    visibility: visible !important;
    animation: none !important;
    transform: none !important;
  }
}

/* ==========================================================================
   [03] Typography + Shared Layout Foundation
   ========================================================================== */
.page-home-eduleb h1,
.page-home-eduleb h2,
.page-home-eduleb h3,
.page-home-eduleb h4,
.page-home-eduleb a,
.page-home-eduleb strong {
  font-family:
    "Avenir Next", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  color: #0b104a;
}

.edu-shell {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-inline: clamp(1rem, 3vw, 2.8rem);
}

/* ==========================================================================
   [04] Section Heading + Shared Button System
   ========================================================================== */
.edu-section-kicker,
.edu-section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.2rem;
  padding: 0.38rem 0.92rem 0.38rem 0.58rem;
  border-radius: 999px;
  border: 1px solid rgba(82, 95, 225, 0.1);
  background: rgba(255, 255, 255, 0.92);
  color: #525fe1;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.edu-section-kicker::before,
.edu-section-label::before {
  content: "";
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #525fe1 0%, #f26b65 100%);
  box-shadow: 0 0 0 0.22rem rgba(82, 95, 225, 0.12);
}

.edu-section-heading {
  position: relative;
  width: min(100%, 1320px);
  margin: 0 auto 2.35rem;
  padding-bottom: 1.1rem;
}

.edu-section-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 11rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(82, 95, 225, 0.42), rgba(82, 95, 225, 0));
}

.edu-section-heading.center {
  text-align: center;
}

.edu-section-heading.center::after {
  left: 50%;
  transform: translateX(-50%);
}

.edu-section-heading.center p {
  width: min(100%, 42rem);
  margin: 1rem auto 0;
  text-wrap: balance;
}

.edu-section-heading.split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.edu-section-copy {
  display: grid;
  gap: 0.7rem;
  max-width: 47rem;
}

.edu-section-heading h2 {
  margin-top: 0.2rem;
  font-size: clamp(2rem, 3.6vw, 2.85rem);
  letter-spacing: -0.05em;
  line-height: 1.12;
  font-weight: 700;
}

.edu-section-heading p {
  color: #667085;
  font-size: 1rem;
  line-height: 1.8;
}

.edu-section-heading.split .edu-btn {
  flex: none;
}

.edu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.3rem;
  padding: 0 1.25rem;
  border-radius: 14px;
  border: 1px solid transparent;
  font-size: 0.94rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.edu-btn:hover,
.edu-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(11, 16, 74, 0.1);
}

.edu-btn-primary {
  background: #525fe1;
  border-color: #525fe1;
  color: #fff !important;
}

.edu-btn-primary:hover,
.edu-btn-primary:focus-visible {
  background: #f26b65;
  border-color: #f26b65;
  color: #fff !important;
}

.edu-btn-primary:visited,
.edu-topic-link:visited,
.nav-cta:visited {
  color: #fff;
}

.edu-btn-secondary {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(82, 95, 225, 0.12);
  color: #0b104a;
}

.edu-btn-secondary:hover,
.edu-btn-secondary:focus-visible {
  background: #f7f8ff;
  color: #0b104a;
}

.edu-btn-ghost {
  background: transparent;
  border-color: rgba(11, 16, 74, 0.09);
  color: #0b104a;
}

.edu-btn-ghost:hover,
.edu-btn-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.8);
  color: #0b104a;
}

/* ==========================================================================
   [05] Hero Area (Copy + Visual + Floating Cards)
   ========================================================================== */
.edu-hero-section {
  position: relative;
  overflow: hidden;
  padding: 2.35rem 0 4.65rem;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.edu-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.82) 52%, rgba(255, 255, 255, 0.7) 100%);
}

.edu-hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: 2rem;
  align-items: center;
  min-height: 42rem;
}

.edu-hero-copy h1 {
  margin: 1.15rem 0 0;
  font-size: clamp(3.6rem, 7vw, 5.85rem);
  line-height: 1.03;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.edu-title-line {
  display: block;
}

.edu-title-accent {
  color: #525fe1;
}

.edu-hero-copy p {
  max-width: 39rem;
  margin-top: 1.4rem;
  color: #667085;
  font-size: 1.02rem;
  line-height: 1.9;
}

.edu-hero-tags,
.edu-category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.edu-hero-tags {
  margin-top: 1.7rem;
}

.edu-hero-tags span,
.edu-tag-link,
.edu-pill {
  display: inline-flex;
  align-items: center;
  min-height: 2.7rem;
  padding: 0 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(82, 95, 225, 0.12);
  color: #0b104a;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 14px 30px rgba(82, 95, 225, 0.08);
}

.edu-tag-link:hover,
.edu-tag-link:focus-visible {
  color: #525fe1;
  border-color: rgba(82, 95, 225, 0.2);
  transform: translateY(-1px);
}

.edu-tag-link,
.edu-counter-card,
.edu-flow-node,
.edu-about-evidence-card,
.edu-card-notice,
.edu-card-stat {
  text-decoration: none;
}

.edu-hero-actions,
.edu-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.7rem;
}

.edu-call-label-mobile {
  display: none;
}

.edu-btn .edu-call-label-mobile,
.edu-phone-box .edu-call-label-mobile {
  display: none;
}

.edu-hero-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.7rem;
}

.edu-mini-card {
  padding: 1.1rem 1.2rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(82, 95, 225, 0.1);
  box-shadow: 0 16px 34px rgba(11, 16, 74, 0.08);
}

.edu-mini-card span {
  display: block;
  color: #667085;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.edu-mini-card strong {
  display: block;
  margin-top: 0.55rem;
  font-size: 1.02rem;
  line-height: 1.6;
}

.edu-hero-visual {
  position: relative;
  isolation: isolate;
  min-height: 42rem;
}

.edu-hero-board {
  position: absolute;
  inset: 1.2rem 0 0 1rem;
  overflow: hidden;
  border-radius: 38px;
  border: 1px solid rgba(82, 95, 225, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(238, 242, 255, 0.94)),
    #fff;
  box-shadow: 0 32px 80px rgba(11, 16, 74, 0.14);
}

.edu-hero-notice {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 2;
  padding: 1rem 1.05rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(82, 95, 225, 0.14);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 34px rgba(11, 16, 74, 0.12);
}

.edu-hero-notice h3 {
  margin: 0.75rem 0 0;
  color: #0b104a;
  font-size: clamp(1.12rem, 2.2vw, 1.55rem);
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.edu-hero-notice p:last-child {
  margin: 0.55rem 0 0;
  color: #667085;
  font-size: 0.9rem;
}

.edu-hero-board::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(82, 95, 225, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(82, 95, 225, 0.06) 1px, transparent 1px);
  background-size: 30px 30px;
}

.edu-hero-board-main {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
  mix-blend-mode: multiply;
}

.edu-hero-board-inset {
  position: absolute;
  inset: 11% 8% 16% 8%;
  overflow: hidden;
  padding: 1rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 48px rgba(11, 16, 74, 0.12);
}

.edu-hero-board-inset img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
  background: #fff;
}

.edu-hero-insight {
  position: absolute;
  left: 6%;
  bottom: 2rem;
  z-index: 2;
  width: min(18.5rem, 36%);
  padding: 1rem 1.1rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 54px rgba(11, 16, 74, 0.16);
  animation: eduFloat 5.8s ease-in-out 1.1s infinite;
}

.edu-hero-insight-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 1.85rem;
  padding: 0 0.7rem;
  border-radius: 999px;
  background: #eef2ff;
  color: #525fe1;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.edu-hero-insight strong {
  display: block;
  margin-top: 0.75rem;
  color: #0b104a;
  font-size: 1.1rem;
  line-height: 1.45;
}

.edu-hero-insight-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.95rem;
}

.edu-hero-insight-list li {
  padding-top: 0.72rem;
  border-top: 1px solid rgba(82, 95, 225, 0.12);
}

.edu-hero-insight-list span {
  display: block;
  color: #0b104a;
  font-size: 0.86rem;
  font-weight: 700;
}

.edu-hero-insight-list p {
  margin-top: 0.25rem;
  color: #667085;
  font-size: 0.84rem;
  line-height: 1.65;
}

.edu-floating-card {
  position: absolute;
  border-radius: 24px;
  box-shadow: 0 24px 54px rgba(11, 16, 74, 0.16);
}

.edu-floating-card:hover,
.edu-floating-card:focus-visible {
  transform: translateY(-2px);
}

.edu-card-notice {
  display: block;
  left: 0;
  top: 3.5rem;
  width: min(100%, 18rem);
  padding: 1.25rem 1.35rem;
  background: #fff;
  animation: eduFloat 5.2s ease-in-out 0.4s infinite;
  color: #0b104a;
}

.edu-card-notice span,
.edu-card-stat span {
  display: block;
  color: #667085;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.edu-card-notice strong {
  display: block;
  margin-top: 0.65rem;
  font-size: 1.35rem;
  line-height: 1.45;
}

.edu-card-notice p {
  margin-top: 0.7rem;
  color: #667085;
}

.edu-card-stat {
  display: block;
  padding: 1rem 1.15rem;
  color: #fff;
}

.edu-card-stat strong {
  display: block;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 800;
}

.edu-card-stat span {
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-transform: none;
}

.edu-card-stat.is-blue {
  right: 1rem;
  top: 8.5rem;
  max-width: 14rem;
  background: #525fe1;
  animation: eduFloat 4.8s ease-in-out 0.8s infinite;
}

.edu-card-stat.is-coral {
  right: 0;
  bottom: 3rem;
  max-width: 15rem;
  background: #f26b65;
  animation: eduFloat 5.4s ease-in-out 1.3s infinite;
}

/* ==========================================================================
   [06] KPI Counter Cards
   ========================================================================== */
.edu-counter-section {
  display: none;
}

.edu-counter-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  width: min(100%, 1320px);
  margin: 0 auto;
  align-items: start;
}

.edu-counter-card {
  position: relative;
  display: grid;
  gap: 0.75rem;
  min-height: 0;
  padding: 1rem 1.1rem 1.05rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 248, 255, 0.98));
  box-shadow: 0 16px 34px rgba(11, 16, 74, 0.06);
  border: 1px solid rgba(82, 95, 225, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  overflow: hidden;
}

.edu-counter-card::before,
.edu-counter-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.edu-counter-card::before {
  left: 1rem;
  right: 1rem;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #525fe1, rgba(82, 95, 225, 0.22));
}

.edu-counter-card::after {
  right: -1.6rem;
  bottom: -1.8rem;
  width: 7.6rem;
  height: 7.6rem;
  border-radius: 50%;
  opacity: 0.28;
}

.edu-counter-card.is-notice::after {
  background:
    linear-gradient(rgba(82, 95, 225, 0.11), rgba(82, 95, 225, 0.11)) 50% 18% / 1px 58% no-repeat,
    linear-gradient(rgba(82, 95, 225, 0.11), rgba(82, 95, 225, 0.11)) 20% 50% / 58% 1px no-repeat,
    radial-gradient(circle at 50% 50%, transparent 0 1.8rem, rgba(82, 95, 225, 0.08) 1.8rem 1.92rem, transparent 1.96rem);
}

.edu-counter-card.is-archive::after {
  background:
    linear-gradient(135deg, transparent 48.2%, rgba(82, 95, 225, 0.12) 49% 50.3%, transparent 51.1%) 50% 50% / 72% 72% no-repeat,
    linear-gradient(rgba(82, 95, 225, 0.1), rgba(82, 95, 225, 0.1)) 24% 72% / 52% 1px no-repeat,
    linear-gradient(rgba(82, 95, 225, 0.1), rgba(82, 95, 225, 0.1)) 24% 28% / 1px 44% no-repeat;
}

.edu-counter-card.is-program::after {
  background:
    linear-gradient(rgba(82, 95, 225, 0.1), rgba(82, 95, 225, 0.1)) 22% 72% / 56% 1px no-repeat,
    linear-gradient(rgba(82, 95, 225, 0.1), rgba(82, 95, 225, 0.1)) 22% 22% / 1px 50% no-repeat,
    radial-gradient(118% 118% at 22% 72%, transparent 61%, rgba(82, 95, 225, 0.1) 61.8% 63.6%, transparent 64.4%) 22% 18% / 68% 60% no-repeat;
}

.edu-counter-card.is-contact::after {
  background:
    linear-gradient(rgba(82, 95, 225, 0.11), rgba(82, 95, 225, 0.11)) 22% 68% / 54% 1px no-repeat,
    linear-gradient(152deg, transparent 47%, rgba(82, 95, 225, 0.12) 48.1% 49.4%, transparent 50.6%) 30% 56% / 1.9rem 1.9rem no-repeat,
    linear-gradient(45deg, transparent 46.5%, rgba(82, 95, 225, 0.12) 47.8% 49.1%, transparent 50.3%) 52% 42% / 2rem 2rem no-repeat;
}

.edu-counter-card:hover,
.edu-counter-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(82, 95, 225, 0.18);
  box-shadow: 0 22px 42px rgba(11, 16, 74, 0.1);
}

.edu-counter-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.edu-counter-kicker,
.edu-counter-arrow {
  display: inline-flex;
  align-items: center;
  min-height: 1.8rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
}

.edu-counter-kicker {
  padding: 0 0.72rem;
  background: #eef2ff;
  color: #525fe1;
  letter-spacing: 0.08em;
}

.edu-counter-arrow {
  color: #98a2b3;
}

.edu-counter-card h2 {
  margin-top: 0.15rem;
  font-size: clamp(1.85rem, 2.35vw, 2.2rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.edu-counter-card.is-contact h2 {
  font-size: clamp(1.7rem, 2.12vw, 2rem);
  letter-spacing: -0.06em;
  white-space: nowrap;
}

.edu-counter-card.is-program h2 {
  font-size: clamp(1.78rem, 2.2vw, 2.08rem);
}

.edu-counter-card p {
  margin-top: 0;
  max-width: 16ch;
  color: #475467;
  font-size: 0.88rem;
  line-height: 1.55;
  font-weight: 600;
}

/* ==========================================================================
   [07] Section Wrappers (공통 섹션 여백)
   ========================================================================== */
.edu-promo-section,
.edu-about-section,
.edu-notice-section,
.edu-management-section,
.edu-blog-section,
.edu-contact-section {
  padding: 5rem 0;
}

.edu-contact-section {
  padding-bottom: 2rem;
}

.edu-promo-section {
  padding: 4.7rem 0 4.3rem;
  background:
    radial-gradient(circle at 5% 6%, rgba(214, 255, 56, 0.16), transparent 23%),
    radial-gradient(circle at 95% 8%, rgba(242, 107, 101, 0.08), transparent 25%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(248, 247, 239, 0.26));
}

.edu-inline-accent {
  color: #525fe1;
  font-weight: 700;
}

.edu-inline-nowrap {
  white-space: nowrap;
}

/* ==========================================================================
   [08] Promo Ribbon + Flow Nodes + Promo Cards
   ========================================================================== */
.edu-promo-section .edu-section-heading p strong {
  color: #525fe1;
  font-weight: 900;
}

.edu-promo-section .edu-section-heading {
  margin-bottom: 2rem;
}

.edu-promo-section .edu-section-copy {
  align-items: center;
}

.edu-promo-section .edu-section-heading h2 {
  max-width: none;
  font-size: clamp(2.1rem, 3.1vw, 3.15rem);
  line-height: 1.14;
  text-align: center;
}

.edu-promo-section .edu-section-heading p {
  max-width: 37rem;
  margin-top: 1rem;
  text-align: center;
}

.edu-promo-ribbon {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1.1rem;
  width: min(100%, 1260px);
  margin: 0 auto 1rem;
  padding: 1.3rem 1.35rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(82, 95, 225, 0.09);
  box-shadow: 0 22px 48px rgba(11, 16, 74, 0.08);
  overflow: hidden;
  isolation: isolate;
}

.edu-promo-ribbon::before,
.edu-promo-ribbon::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.edu-promo-ribbon::before {
  inset: 1.1rem auto 1.1rem 1.1rem;
  width: min(32rem, 48%);
  border-radius: 20px;
  opacity: 0.75;
  background:
    linear-gradient(rgba(82, 95, 225, 0.11), rgba(82, 95, 225, 0.11)) 17% 74% / 34% 1px no-repeat,
    linear-gradient(rgba(82, 95, 225, 0.11), rgba(82, 95, 225, 0.11)) 25% 18% / 1px 58% no-repeat,
    radial-gradient(circle at 46% 58%, transparent 0 2.55rem, rgba(82, 95, 225, 0.09) 2.55rem 2.7rem, transparent 2.72rem),
    radial-gradient(circle at 46% 58%, transparent 0 4.35rem, rgba(82, 95, 225, 0.08) 4.35rem 4.5rem, transparent 4.52rem),
    radial-gradient(circle at 62% 42%, rgba(82, 95, 225, 0.14) 0 0.16rem, transparent 0.18rem),
    radial-gradient(circle at 31% 77%, rgba(82, 95, 225, 0.1) 0 0.14rem, transparent 0.16rem),
    repeating-linear-gradient(90deg, rgba(82, 95, 225, 0.04) 0 1px, transparent 1px 2.4rem),
    repeating-linear-gradient(0deg, rgba(82, 95, 225, 0.04) 0 1px, transparent 1px 2.4rem);
}

.edu-promo-ribbon::after {
  right: -5.5rem;
  bottom: -7.5rem;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  opacity: 0.58;
  transform: rotate(-14deg);
  background:
    linear-gradient(rgba(82, 95, 225, 0.12), rgba(82, 95, 225, 0.12)) 50% 16% / 1px 68% no-repeat,
    linear-gradient(rgba(82, 95, 225, 0.12), rgba(82, 95, 225, 0.12)) 17% 50% / 68% 1px no-repeat,
    radial-gradient(circle at 50% 50%, transparent 0 4.8rem, rgba(82, 95, 225, 0.09) 4.8rem 4.95rem, transparent 4.98rem),
    radial-gradient(circle at 50% 50%, transparent 0 7rem, rgba(82, 95, 225, 0.08) 7rem 7.16rem, transparent 7.2rem),
    radial-gradient(circle at 50% 50%, transparent 0 9.25rem, rgba(82, 95, 225, 0.06) 9.25rem 9.4rem, transparent 9.45rem);
}

.edu-promo-ribbon-copy,
.edu-promo-ribbon-steps {
  position: relative;
  z-index: 1;
}

.edu-promo-ribbon-copy strong {
  display: block;
  margin-top: 0.7rem;
  color: #0b104a;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.32;
  font-weight: 700;
  text-wrap: balance;
}

.edu-promo-ribbon-copy p {
  margin-top: 0.75rem;
  color: #667085;
  line-height: 1.72;
}

.edu-promo-ribbon-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  align-items: stretch;
}

.edu-flow-node {
  position: relative;
  color: inherit;
  display: grid;
  align-content: space-between;
  gap: 0.45rem;
  padding: 0.95rem 0.9rem;
  border-radius: 17px;
  background: linear-gradient(180deg, rgba(245, 247, 255, 0.96), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(82, 95, 225, 0.1);
  min-height: 11rem;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  isolation: isolate;
}

.edu-flow-node > * {
  position: relative;
  z-index: 1;
}

.edu-flow-node::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0.82;
  pointer-events: none;
}

.edu-flow-node:nth-child(1)::before {
  background:
    linear-gradient(rgba(82, 95, 225, 0.12), rgba(82, 95, 225, 0.12)) 60% 27% / 2.9rem 1px no-repeat,
    linear-gradient(rgba(82, 95, 225, 0.12), rgba(82, 95, 225, 0.12)) 78% 10% / 1px 3rem no-repeat,
    radial-gradient(circle at 78% 28%, rgba(82, 95, 225, 0.15) 0 0.15rem, transparent 0.18rem),
    radial-gradient(circle at 78% 28%, transparent 0 0.92rem, rgba(82, 95, 225, 0.12) 0.92rem 1.02rem, transparent 1.06rem),
    radial-gradient(circle at 78% 28%, transparent 0 1.62rem, rgba(82, 95, 225, 0.08) 1.62rem 1.73rem, transparent 1.78rem);
}

.edu-flow-node:nth-child(2)::before {
  background:
    linear-gradient(135deg, transparent 48.5%, rgba(82, 95, 225, 0.12) 49.2% 50.4%, transparent 51.1%) 73% 56% / 3.95rem 3.95rem no-repeat,
    linear-gradient(rgba(82, 95, 225, 0.12), rgba(82, 95, 225, 0.12)) 70% 44% / 1px 2.7rem no-repeat,
    linear-gradient(rgba(82, 95, 225, 0.12), rgba(82, 95, 225, 0.12)) 73% 69% / 3.35rem 1px no-repeat,
    radial-gradient(circle at 70% 69%, rgba(82, 95, 225, 0.14) 0 0.14rem, transparent 0.17rem),
    radial-gradient(circle at 89% 69%, rgba(82, 95, 225, 0.1) 0 0.12rem, transparent 0.15rem);
}

.edu-flow-node:nth-child(3)::before {
  background:
    linear-gradient(rgba(82, 95, 225, 0.12), rgba(82, 95, 225, 0.12)) 69% 36% / 1px 3rem no-repeat,
    linear-gradient(rgba(82, 95, 225, 0.12), rgba(82, 95, 225, 0.12)) 69% 71% / 3.45rem 1px no-repeat,
    radial-gradient(110% 110% at 69% 71%, transparent 61%, rgba(82, 95, 225, 0.11) 61.8% 63.6%, transparent 64.3%) 60% 34% / 4rem 3.7rem no-repeat,
    radial-gradient(circle at 86% 31%, rgba(82, 95, 225, 0.1) 0 0.13rem, transparent 0.16rem);
}

.edu-flow-node:nth-child(4)::before {
  background:
    linear-gradient(rgba(82, 95, 225, 0.1), rgba(82, 95, 225, 0.1)) 66% 61% / 1px 2.5rem no-repeat,
    linear-gradient(rgba(82, 95, 225, 0.1), rgba(82, 95, 225, 0.1)) 79% 72% / 4rem 1px no-repeat,
    linear-gradient(155deg, transparent 47%, rgba(82, 95, 225, 0.12) 48.1% 49.3%, transparent 50.6%) 66% 56% / 2.15rem 2.15rem no-repeat,
    linear-gradient(45deg, transparent 46.5%, rgba(82, 95, 225, 0.12) 47.8% 49%, transparent 50.3%) 78% 54% / 2.35rem 2.35rem no-repeat,
    radial-gradient(circle at 68% 66%, rgba(82, 95, 225, 0.15) 0 0.14rem, transparent 0.17rem),
    radial-gradient(circle at 79% 54%, rgba(82, 95, 225, 0.15) 0 0.14rem, transparent 0.17rem),
    radial-gradient(circle at 90% 62%, rgba(82, 95, 225, 0.15) 0 0.14rem, transparent 0.17rem);
}

.edu-flow-node:hover,
.edu-flow-node:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(82, 95, 225, 0.2);
  box-shadow: 0 16px 34px rgba(11, 16, 74, 0.08);
}

.edu-flow-node::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% - 0.3rem);
  width: 0.95rem;
  height: 2px;
  background: linear-gradient(90deg, rgba(82, 95, 225, 0.3), rgba(82, 95, 225, 0));
}

.edu-flow-node:last-child::after {
  display: none;
}

.edu-promo-ribbon-steps em,
.edu-promo-ribbon-steps strong,
.edu-flow-node small {
  display: block;
  font-style: normal;
}

.edu-promo-ribbon-steps em {
  color: #525fe1;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.edu-promo-ribbon-steps strong {
  margin-top: 1.8rem;
  color: #0b104a;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
}

.edu-flow-node small {
  color: #667085;
  font-size: 0.76rem;
  line-height: 1.48;
}

.edu-promo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  width: min(100%, 1320px);
  margin: 0 auto;
}

.edu-promo-card {
  position: relative;
  padding: 1.55rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 34px rgba(11, 16, 74, 0.06);
  border: 1px solid rgba(82, 95, 225, 0.08);
  scroll-margin-top: 7rem;
  overflow: hidden;
  isolation: isolate;
}

.edu-promo-card::before {
  content: "";
  position: absolute;
  left: 1.7rem;
  right: 1.7rem;
  top: 0;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #525fe1, #8e97ff);
}

.edu-promo-card::after {
  content: "";
  position: absolute;
  inset: auto -0.4rem -0.65rem auto;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  opacity: 0.5;
  pointer-events: none;
}

.edu-promo-card > * {
  position: relative;
  z-index: 1;
}

.edu-promo-card:nth-child(1)::after {
  background:
    linear-gradient(rgba(82, 95, 225, 0.12), rgba(82, 95, 225, 0.12)) 50% 12% / 1px 64% no-repeat,
    linear-gradient(rgba(82, 95, 225, 0.12), rgba(82, 95, 225, 0.12)) 18% 50% / 64% 1px no-repeat,
    radial-gradient(circle at 50% 50%, transparent 0 2rem, rgba(82, 95, 225, 0.1) 2rem 2.12rem, transparent 2.15rem),
    radial-gradient(circle at 50% 50%, transparent 0 3.45rem, rgba(82, 95, 225, 0.08) 3.45rem 3.58rem, transparent 3.62rem),
    radial-gradient(circle at 63% 37%, rgba(82, 95, 225, 0.16) 0 0.14rem, transparent 0.17rem);
}

.edu-promo-card:nth-child(2)::after {
  background:
    linear-gradient(135deg, transparent 48.2%, rgba(82, 95, 225, 0.12) 49% 50.3%, transparent 51.1%) 50% 50% / 78% 78% no-repeat,
    linear-gradient(rgba(82, 95, 225, 0.12), rgba(82, 95, 225, 0.12)) 22% 76% / 58% 1px no-repeat,
    linear-gradient(rgba(82, 95, 225, 0.12), rgba(82, 95, 225, 0.12)) 22% 24% / 1px 52% no-repeat,
    radial-gradient(circle at 22% 76%, rgba(82, 95, 225, 0.14) 0 0.14rem, transparent 0.17rem),
    radial-gradient(circle at 78% 76%, rgba(82, 95, 225, 0.14) 0 0.14rem, transparent 0.17rem),
    radial-gradient(circle at 22% 24%, rgba(82, 95, 225, 0.14) 0 0.14rem, transparent 0.17rem);
}

.edu-promo-card:nth-child(3)::after {
  background:
    linear-gradient(rgba(82, 95, 225, 0.11), rgba(82, 95, 225, 0.11)) 24% 72% / 58% 1px no-repeat,
    linear-gradient(rgba(82, 95, 225, 0.11), rgba(82, 95, 225, 0.11)) 24% 18% / 1px 54% no-repeat,
    radial-gradient(120% 120% at 24% 72%, transparent 61%, rgba(82, 95, 225, 0.11) 61.8% 63.7%, transparent 64.4%) 24% 18% / 70% 62% no-repeat,
    radial-gradient(circle at 58% 39%, rgba(82, 95, 225, 0.14) 0 0.14rem, transparent 0.17rem),
    radial-gradient(circle at 74% 58%, rgba(82, 95, 225, 0.11) 0 0.12rem, transparent 0.15rem);
}

.edu-promo-card:nth-child(4)::after {
  background:
    linear-gradient(rgba(82, 95, 225, 0.1), rgba(82, 95, 225, 0.1)) 22% 72% / 56% 1px no-repeat,
    linear-gradient(rgba(82, 95, 225, 0.1), rgba(82, 95, 225, 0.1)) 22% 24% / 1px 48% no-repeat,
    linear-gradient(149deg, transparent 47%, rgba(82, 95, 225, 0.12) 48.1% 49.4%, transparent 50.6%) 30% 55% / 1.95rem 1.95rem no-repeat,
    linear-gradient(45deg, transparent 46.5%, rgba(82, 95, 225, 0.12) 47.8% 49.1%, transparent 50.3%) 50% 42% / 2.1rem 2.1rem no-repeat,
    linear-gradient(152deg, transparent 47%, rgba(82, 95, 225, 0.12) 48.1% 49.4%, transparent 50.6%) 69% 31% / 1.8rem 1.8rem no-repeat,
    radial-gradient(circle at 22% 72%, rgba(82, 95, 225, 0.15) 0 0.14rem, transparent 0.17rem),
    radial-gradient(circle at 43% 55%, rgba(82, 95, 225, 0.15) 0 0.14rem, transparent 0.17rem),
    radial-gradient(circle at 61% 41%, rgba(82, 95, 225, 0.15) 0 0.14rem, transparent 0.17rem),
    radial-gradient(circle at 78% 28%, rgba(82, 95, 225, 0.15) 0 0.14rem, transparent 0.17rem);
}

.edu-promo-card span {
  color: #525fe1;
  font-size: 1.25rem;
  font-weight: 800;
}

.edu-promo-card h3 {
  margin-top: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.edu-promo-card p {
  margin-top: 0.75rem;
  color: #667085;
  line-height: 1.8;
}

.edu-promo-list {
  display: grid;
  gap: 0.5rem;
  margin-top: 1rem;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

.edu-promo-list li {
  position: relative;
  padding-left: 1rem;
  color: #0b104a;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.65;
}

.edu-promo-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: #525fe1;
}

.edu-promo-result {
  margin-top: 1.15rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(82, 95, 225, 0.12);
}

.edu-promo-result small,
.edu-promo-result strong {
  display: block;
}

.edu-promo-result small {
  color: #667085;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.edu-promo-result strong {
  margin-top: 0.45rem;
  color: #0b104a;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
}

/* ==========================================================================
   [09] Parent Report Section
   ========================================================================== */
.edu-parent-report-section {
  padding: 4.5rem 0 4.2rem;
  background:
    radial-gradient(circle at 90% 0%, rgba(214, 255, 56, 0.2), transparent 24%),
    radial-gradient(circle at 8% 74%, rgba(82, 95, 225, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(250, 248, 241, 0.98), rgba(246, 243, 233, 0.98));
}

.edu-parent-report-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
  gap: 1.3rem;
  align-items: center;
  width: min(100%, 1320px);
  margin: 0 auto;
}

.edu-parent-report-visual {
  position: relative;
  min-height: 28rem;
  padding: 1rem;
  border: 1px solid rgba(82, 95, 225, 0.12);
  border-radius: 28px;
  background:
    linear-gradient(rgba(82, 95, 225, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(82, 95, 225, 0.06) 1px, transparent 1px),
    rgba(248, 250, 255, 0.86);
  background-size: 28px 28px, 28px 28px, auto;
  box-shadow: 0 24px 52px rgba(11, 16, 74, 0.09);
  overflow: hidden;
}

.edu-parent-report-paper {
  position: absolute;
  inset: 3.25rem 3.1rem auto;
  min-height: 15rem;
  padding: 1.4rem;
  border-radius: 22px;
  background:
    linear-gradient(rgba(82, 95, 225, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(82, 95, 225, 0.045) 1px, transparent 1px),
    rgba(255, 255, 255, 0.72);
  background-size: 24px 24px, 24px 24px, auto;
  border: 1px solid rgba(82, 95, 225, 0.09);
}

.edu-report-score,
.edu-report-memo {
  position: absolute;
  top: 1.25rem;
  color: rgba(102, 112, 133, 0.24);
  font-size: 0.8rem;
  font-weight: 700;
}

.edu-report-score {
  left: 1.25rem;
}

.edu-report-memo {
  right: 1.25rem;
}

.edu-parent-report-paper h3,
.edu-parent-report-paper p {
  text-align: center;
}

.edu-parent-report-paper h3 {
  margin-top: 0.55rem;
  color: #0b104a;
  font-size: 1.55rem;
  line-height: 1.2;
}

.edu-parent-report-paper p {
  margin-top: 0.5rem;
  color: #667085;
  font-size: 0.86rem;
  font-weight: 700;
}

.edu-parent-report-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 2.2rem;
}

.edu-parent-report-mini-grid article {
  min-height: 5rem;
  padding: 0.9rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(82, 95, 225, 0.12);
}

.edu-parent-report-mini-grid strong,
.edu-parent-report-mini-grid span {
  display: block;
}

.edu-parent-report-mini-grid strong {
  color: #0b104a;
  font-size: 0.8rem;
}

.edu-parent-report-mini-grid span {
  margin-top: 0.3rem;
  color: #667085;
  font-size: 0.7rem;
  line-height: 1.4;
}

.edu-parent-report-overlay {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 2rem;
  padding: 1.05rem 1.15rem;
  border-radius: 20px;
  background: rgba(15, 22, 84, 0.88);
  box-shadow: 0 24px 48px rgba(11, 16, 74, 0.2);
}

.edu-parent-report-overlay span,
.edu-parent-report-overlay strong {
  display: block;
}

.edu-parent-report-overlay span {
  color: #d6ff38;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.edu-parent-report-overlay strong {
  margin-top: 0.5rem;
  color: #fff;
  font-size: 1rem;
  line-height: 1.45;
}

.edu-parent-report-overlay ul {
  display: grid;
  gap: 0.3rem;
  margin: 0.65rem 0 0;
  padding-left: 1rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  line-height: 1.45;
}

.edu-parent-report-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  margin-top: 0.85rem;
  padding: 0.75rem;
  border-radius: 16px;
  background: rgba(20, 32, 118, 0.74);
}

.edu-parent-report-flow em,
.edu-parent-report-flow strong,
.edu-parent-report-flow small {
  display: block;
  font-style: normal;
}

.edu-parent-report-flow em {
  display: inline-grid;
  place-items: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  background: rgba(82, 95, 225, 0.42);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 900;
}

.edu-parent-report-flow strong {
  margin-top: 0.25rem;
  color: #fff;
  font-size: 0.75rem;
}

.edu-parent-report-flow small {
  margin-top: 0.18rem;
  color: rgba(214, 221, 255, 0.76);
  font-size: 0.66rem;
}

.edu-parent-report-copy h2 {
  margin-top: 0.65rem;
  max-width: 15ch;
  color: #0b104a;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.edu-parent-report-copy > p {
  margin-top: 1.35rem;
  max-width: 44rem;
  color: #667085;
  line-height: 1.8;
}

.edu-parent-report-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.edu-parent-report-cards article,
.edu-parent-related-card {
  border: 1px solid rgba(82, 95, 225, 0.09);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 30px rgba(11, 16, 74, 0.045);
}

.edu-parent-report-cards article {
  min-height: 10rem;
  padding: 1rem;
  border-radius: 18px;
}

.edu-parent-report-cards span,
.edu-parent-report-cards strong,
.edu-parent-report-cards p,
.edu-parent-related-card span,
.edu-parent-related-card strong,
.edu-parent-related-card p {
  display: block;
}

.edu-parent-report-cards span,
.edu-parent-related-card span {
  color: #525fe1;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.edu-parent-report-cards strong {
  margin-top: 0.45rem;
  color: #0b104a;
  font-size: 1rem;
  line-height: 1.45;
}

.edu-parent-report-cards p {
  margin-top: 0.55rem;
  color: #667085;
  font-size: 0.88rem;
  line-height: 1.62;
}

.edu-parent-related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.edu-parent-related-card {
  padding: 1rem;
  border-radius: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.edu-parent-related-card:hover,
.edu-parent-related-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(11, 16, 74, 0.08);
}

.edu-parent-related-card strong {
  margin-top: 0.45rem;
  color: #0b104a;
  font-size: 1rem;
  line-height: 1.45;
}

.edu-parent-related-card p {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 0.45rem;
  color: #667085;
  font-size: 0.84rem;
  line-height: 1.58;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.edu-parent-report-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.3rem;
}

/* ==========================================================================
   [10] About Section (보드/근거 카드/요약)
   ========================================================================== */
.edu-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 1.35rem;
  align-items: start;
  width: min(100%, 1320px);
  margin: 0 auto;
}

.edu-about-media,
.edu-about-copy {
  min-width: 0;
}

.edu-about-media img {
  width: 100%;
}

.edu-about-board {
  position: relative;
  overflow: hidden;
  padding: 0.8rem;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(242, 245, 255, 0.94)),
    #fff;
  border: 1px solid rgba(82, 95, 225, 0.1);
  box-shadow: 0 18px 42px rgba(11, 16, 74, 0.07);
}

.edu-about-board::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(82, 95, 225, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(82, 95, 225, 0.05) 1px, transparent 1px);
  background-size: 26px 26px;
}

.edu-about-board img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  border-radius: 22px;
  border: 1px solid rgba(82, 95, 225, 0.08);
}

.edu-about-note {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 2rem;
  z-index: 2;
  padding: 1rem 1.15rem;
  border-radius: 18px;
  background: rgba(11, 16, 74, 0.88);
  box-shadow: 0 20px 40px rgba(11, 16, 74, 0.18);
}

.edu-about-note strong,
.edu-about-note span {
  display: block;
  color: #fff;
}

.edu-about-note-kicker {
  color: rgba(214, 255, 56, 0.88) !important;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.edu-about-note strong {
  margin-top: 0.45rem;
  font-size: 1rem;
  font-weight: 700;
}

.edu-about-note-list {
  display: grid;
  gap: 0.3rem;
  margin-top: 0.65rem;
  margin-bottom: 0;
  padding-left: 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  line-height: 1.55;
}

.edu-about-note-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 0.85rem;
  padding: 0.78rem 0.84rem 0.8rem;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(18, 28, 98, 0.82), rgba(12, 19, 73, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.edu-about-note-flow::before {
  content: "";
  position: absolute;
  left: 1.15rem;
  right: 1.15rem;
  top: 1.35rem;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(152, 163, 255, 0.08),
    rgba(152, 163, 255, 0.38),
    rgba(152, 163, 255, 0.08)
  );
}

.edu-about-note-flow-item {
  position: relative;
  display: grid;
  justify-items: start;
  gap: 0.18rem;
  min-width: 0;
}

.edu-about-note-flow-item em,
.edu-about-note-flow-item span,
.edu-about-note-flow-item small {
  position: relative;
  z-index: 1;
  font-style: normal;
}

.edu-about-note-flow-item em {
  display: inline-grid;
  place-items: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  background: rgba(82, 95, 225, 0.3);
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.edu-about-note-flow-item span {
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.35;
}

.edu-about-note-flow-item small {
  color: rgba(214, 221, 255, 0.72);
  font-size: 0.66rem;
  line-height: 1.38;
}

.edu-about-copy h2 {
  margin-top: 0.35rem;
  font-size: clamp(1.78rem, 2.5vw, 2.38rem);
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.edu-about-title-line {
  display: block;
}

.edu-about-copy p {
  margin-top: 0.2rem;
  max-width: 58ch;
  color: #667085;
  line-height: 1.78;
}

.edu-about-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 0.55rem;
}

.edu-about-summary-card {
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(247, 249, 255, 0.96), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(82, 95, 225, 0.08);
}

.edu-about-summary-card span {
  display: block;
  color: #525fe1;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.edu-about-summary-card strong {
  display: block;
  margin-top: 0.5rem;
  color: #0b104a;
  font-size: 1rem;
  line-height: 1.45;
}

.edu-about-summary-card p {
  margin-top: 0.45rem;
  color: #667085;
  font-size: 0.88rem;
  line-height: 1.65;
}

.edu-about-evidence-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.35rem;
}

.edu-about-evidence-card {
  display: block;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(82, 95, 225, 0.08);
  background: rgba(255, 255, 255, 0.82);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.edu-about-evidence-card:hover,
.edu-about-evidence-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(82, 95, 225, 0.18);
  box-shadow: 0 16px 32px rgba(11, 16, 74, 0.07);
}

.edu-about-evidence-card em,
.edu-about-evidence-card strong,
.edu-about-evidence-card span {
  display: block;
  font-style: normal;
}

.edu-about-evidence-card em {
  color: #525fe1;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.edu-about-evidence-card strong {
  margin-top: 0.45rem;
  color: #0b104a;
  font-size: 1rem;
  line-height: 1.5;
}

.edu-about-evidence-card span {
  margin-top: 0.3rem;
  color: #667085;
  font-size: 0.88rem;
  line-height: 1.62;
}

/* ==========================================================================
   [09-1] Process + Course Cards (JSP Home Sections)
   ========================================================================== */
.edu-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  width: min(100%, 1320px);
  margin: 0 auto;
}

.edu-process-card {
  position: relative;
  display: grid;
  gap: 0.8rem;
  min-height: 100%;
  padding: 1.35rem;
  border-radius: 20px;
  border: 1px solid rgba(82, 95, 225, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(246, 248, 255, 0.97));
  box-shadow: 0 16px 34px rgba(11, 16, 74, 0.06);
  overflow: hidden;
}

.edu-process-card::before {
  content: "";
  position: absolute;
  left: 1.35rem;
  right: 1.35rem;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #525fe1, rgba(82, 95, 225, 0.24));
}

.edu-process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 2rem;
  padding: 0 0.72rem;
  border-radius: 999px;
  background: #eef2ff;
  color: #525fe1;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.edu-process-card h3 {
  margin: 0;
  color: #0b104a;
  font-size: 1.38rem;
  line-height: 1.34;
}

.edu-process-card p {
  margin: 0;
  color: #667085;
  font-size: 0.95rem;
  line-height: 1.76;
}

.edu-process-card strong {
  margin-top: 0.2rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(82, 95, 225, 0.14);
  color: #0b104a;
  font-size: 1rem;
  line-height: 1.52;
}

.edu-course-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  width: min(100%, 1320px);
  margin: 0 auto;
}

.edu-course-card {
  position: relative;
  display: grid;
  gap: 0.85rem;
  min-height: 100%;
  padding: 1.35rem;
  border-radius: 20px;
  border: 1px solid rgba(82, 95, 225, 0.09);
  background: #fff;
  box-shadow: 0 16px 34px rgba(11, 16, 74, 0.06);
}

.edu-course-icon {
  width: 4.2rem;
  height: 4.2rem;
  object-fit: contain;
}

.edu-course-label {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  width: fit-content;
  padding: 0 0.76rem;
  border-radius: 999px;
  background: rgba(82, 95, 225, 0.1);
  color: #525fe1;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.edu-course-card h3 {
  margin: 0;
  color: #0b104a;
  font-size: 1.34rem;
  line-height: 1.34;
}

.edu-course-card strong {
  color: #13213e;
  font-size: 1rem;
  line-height: 1.62;
}

.edu-course-card p {
  margin: 0;
  color: #667085;
  line-height: 1.76;
}

.edu-course-card .button {
  margin-top: auto;
}

/* ==========================================================================
   [10] Category Section (주제별 메뉴)
   ========================================================================== */
.edu-category-section {
  padding: 4.4rem 0 4.1rem;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.edu-category-section .edu-shell {
  position: relative;
  width: min(calc(100% - 2rem), 1820px);
  max-width: none;
  padding: 3rem clamp(1.2rem, 3.4vw, 3.2rem) 2rem;
  border-radius: 34px;
  overflow: hidden;
}

.edu-category-section .edu-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 85% 8%, rgba(82, 95, 225, 0.04), transparent 20rem),
    rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
}

.edu-category-section .edu-section-heading,
.edu-category-grid,
.edu-category-pills {
  position: relative;
  z-index: 1;
}

.edu-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.05rem;
  width: min(100%, 1320px);
  margin: 0 auto;
}

.edu-category-card {
  display: flex;
  flex-direction: column;
  min-height: 25.4rem;
  padding: 1.35rem 1.3rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 32px rgba(11, 16, 74, 0.055);
  border: 1px solid rgba(82, 95, 225, 0.08);
}

.edu-category-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.edu-category-card img {
  width: 3.25rem;
  height: 3.25rem;
}

.edu-category-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0 0.85rem;
  border-radius: 999px;
  background: #eef2ff;
  color: #525fe1;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.edu-category-card h3 {
  margin-top: 1.1rem;
  font-size: 1.35rem;
  line-height: 1.35;
  font-weight: 700;
}

.edu-category-feature {
  margin-top: 0.8rem;
  color: #0b104a;
  font-size: 0.92rem;
  line-height: 1.62;
  font-weight: 700;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.edu-category-card p {
  margin-top: 0.7rem;
  color: #667085;
  line-height: 1.72;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.edu-category-link {
  display: inline-flex;
  margin-top: auto;
  padding-top: 1rem;
  color: #525fe1;
  font-size: 0.96rem;
  font-weight: 700;
}

.edu-category-link:hover,
.edu-category-link:focus-visible {
  color: #f26b65;
}

.edu-category-pills {
  margin-top: 1.2rem;
}

/* ==========================================================================
   [11] Topic Section (주제 카드 + CTA)
   ========================================================================== */
.edu-topic-section {
  position: relative;
  padding: 3.2rem 0 1.7rem;
  scroll-margin-top: 5.8rem;
}

.edu-topic-section .edu-shell {
  position: relative;
  padding-top: 1.35rem;
}

.edu-topic-section .edu-shell::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(82, 95, 225, 0.22), rgba(82, 95, 225, 0));
}

.edu-topic-section .edu-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 1rem;
  margin-bottom: 0.8rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(82, 95, 225, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
}

.edu-topic-section .edu-section-copy {
  justify-items: start;
  gap: 0.45rem;
  max-width: none;
}

.edu-topic-section .edu-section-heading::after {
  display: none;
}

.edu-topic-section .edu-section-label {
  min-height: 2rem;
  padding-block: 0.32rem;
  justify-self: start;
}

.edu-topic-section .edu-section-heading h2 {
  margin-top: 0.25rem;
  max-width: none;
  font-size: clamp(1.65rem, 2.25vw, 2.25rem);
  line-height: 1.16;
}

.edu-topic-section .edu-section-heading p {
  max-width: 44rem;
  margin-top: 0.3rem;
  line-height: 1.65;
}

.edu-topic-section .edu-btn {
  align-self: flex-end;
  min-height: 2.8rem;
  padding-inline: 1.05rem;
  white-space: nowrap;
}

.edu-category-section,
.edu-location-section,
.edu-contact-section {
  scroll-margin-top: 5.8rem;
}

.edu-topic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  width: min(100%, 1320px);
  margin: 0 auto;
}

.edu-topic-card {
  display: grid;
  position: relative;
  grid-template-rows: auto auto auto minmax(0, 1fr) auto;
  gap: 0.62rem;
  min-height: 100%;
  padding: 1.05rem;
  border: 1px solid rgba(82, 95, 225, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 26px rgba(11, 16, 74, 0.045);
}

.edu-topic-card::before {
  content: "";
  position: absolute;
  left: 1.05rem;
  right: 1.05rem;
  top: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #525fe1, rgba(82, 95, 225, 0.2));
}

.edu-topic-card-top,
.edu-topic-actions,
.edu-location-actions,
.edu-location-mini-actions,
.edu-contact-layout,
.edu-consult-grid {
  display: grid;
  gap: 1rem;
}

.edu-topic-card-top {
  grid-template-columns: auto auto;
  justify-content: space-between;
  align-items: center;
  gap: 0.65rem;
}

.edu-topic-index,
.edu-topic-count {
  display: inline-flex;
  align-items: center;
  min-height: 1.9rem;
  border-radius: 999px;
  font-weight: 800;
}

.edu-topic-index {
  padding: 0 0.68rem;
  background: rgba(82, 95, 225, 0.1);
  color: #525fe1;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}

.edu-topic-count {
  justify-content: center;
  padding: 0 0.72rem;
  background: rgba(11, 16, 74, 0.04);
  color: #0b104a;
  font-size: 0.74rem;
}

.edu-topic-card h3 {
  overflow: hidden;
  margin: 0;
  color: #0b104a;
  font-size: 1.13rem;
  line-height: 1.28;
  letter-spacing: -0.025em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.edu-topic-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.edu-topic-no {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0 0.76rem;
  border-radius: 999px;
  background: rgba(11, 16, 74, 0.04);
  color: #0b104a;
  font-size: 0.8rem;
  font-weight: 700;
}

.edu-topic-card strong {
  display: -webkit-box;
  overflow: hidden;
  color: #10233f;
  font-size: 0.88rem;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.edu-topic-card p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: #667085;
  font-size: 0.9rem;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.edu-topic-actions {
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: start;
  gap: 0.7rem;
  margin-top: auto;
}

.edu-contact-actions {
  align-items: center;
}

.page-home-eduleb .edu-topic-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.55rem;
  padding: 0 0.85rem;
  border-radius: 12px;
  background: #525fe1;
  color: #fff !important;
  font-size: 0.84rem;
  font-weight: 700;
  text-align: center;
}

.page-home-eduleb .edu-topic-link:visited {
  color: #fff !important;
}

.page-home-eduleb .edu-topic-link.is-secondary {
  background: #fff;
  border: 1px solid rgba(82, 95, 225, 0.14);
  color: #0b104a !important;
}

.page-home-eduleb .edu-topic-link.is-secondary:visited {
  color: #0b104a !important;
}

.page-home-eduleb .edu-topic-link:hover,
.page-home-eduleb .edu-topic-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(11, 16, 74, 0.12);
}

.edu-topic-text-link,
.edu-inline-link {
  display: inline-flex;
  align-items: center;
  color: #525fe1;
  font-size: 0.84rem;
  font-weight: 700;
}

.edu-topic-text-link:hover,
.edu-topic-text-link:focus-visible,
.edu-inline-link:hover,
.edu-inline-link:focus-visible {
  color: #f26b65;
}

/* ==========================================================================
   [12] Shared Post/Blog Card Base
   ========================================================================== */
.edu-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  max-width: 1320px;
  margin: 0 auto;
  align-items: start;
}

.edu-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  width: min(100%, 1320px);
  margin: 0 auto;
}

.edu-post-card,
.edu-blog-card {
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(11, 16, 74, 0.06);
  border: 1px solid rgba(82, 95, 225, 0.08);
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
}

.edu-post-media,
.edu-blog-media {
  position: relative;
  overflow: hidden;
  background: #eef3ff;
}

.edu-post-media img,
.edu-blog-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 14.5rem;
  object-fit: cover;
}

.edu-post-media img {
  object-position: center top;
}

.edu-post-media span {
  position: absolute;
  left: 1rem;
  top: 1rem;
  display: inline-flex;
  align-items: center;
  min-height: 2.1rem;
  padding: 0 0.8rem;
  border-radius: 999px;
  background: #fff;
  color: #525fe1;
  font-size: 0.78rem;
  font-weight: 700;
}

.edu-post-body,
.edu-blog-body {
  display: flex;
  flex-direction: column;
  padding: 1.15rem 1.15rem 1.2rem;
}

.edu-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.8rem;
  color: #667085;
  font-size: 0.82rem;
}

.edu-post-card h3,
.edu-blog-card h3 {
  margin-top: 0.7rem;
  font-size: 1.22rem;
  line-height: 1.4;
  font-weight: 700;
}

.edu-post-body p,
.edu-blog-body p {
  margin-top: 0.7rem;
  color: #667085;
  line-height: 1.72;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.edu-read-more {
  display: inline-flex;
  margin-top: auto;
  padding-top: 0.95rem;
  color: #525fe1;
  font-size: 0.96rem;
  font-weight: 700;
}

.edu-read-more:hover,
.edu-read-more:focus-visible {
  color: #f26b65;
}

/* ==========================================================================
   [13] Blog Hero + Archive Layout
   ========================================================================== */
.edu-blog-section {
  position: relative;
  padding: 4.4rem 0 4.2rem;
  background:
    radial-gradient(circle at 10% 4%, rgba(82, 95, 225, 0.08), transparent 20rem),
    radial-gradient(circle at 90% 28%, rgba(214, 255, 56, 0.12), transparent 22rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(247, 246, 239, 0.68));
}

.edu-blog-media-fallback {
  display: grid;
  place-items: center;
  min-height: 100%;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(rgba(82, 95, 225, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(82, 95, 225, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, rgba(238, 242, 255, 0.96), rgba(255, 255, 255, 0.98));
  background-size: 28px 28px, 28px 28px, auto;
}

.edu-blog-media-fallback span {
  display: inline-flex;
  align-items: center;
  min-height: 2.3rem;
  padding: 0 0.9rem;
  border-radius: 999px;
  background: rgba(11, 16, 74, 0.86);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
}

.edu-blog-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) auto;
  gap: 1.1rem;
  align-items: end;
  width: min(100%, 1320px);
  margin: 0 auto 1.25rem;
  padding: 1.35rem 1.4rem 1.25rem;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(214, 255, 56, 0.16), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(242, 245, 255, 0.98));
  border: 1px solid rgba(82, 95, 225, 0.08);
  box-shadow: 0 20px 44px rgba(11, 16, 74, 0.06);
  overflow: hidden;
}

.edu-blog-hero::before,
.edu-blog-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.edu-blog-hero::before {
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(82, 95, 225, 0.04) 0 1px, transparent 1px 2.7rem),
    repeating-linear-gradient(0deg, rgba(82, 95, 225, 0.04) 0 1px, transparent 1px 2.7rem);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 72%);
}

.edu-blog-hero::after {
  right: -3rem;
  top: -4rem;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  opacity: 0.32;
  background:
    linear-gradient(rgba(82, 95, 225, 0.12), rgba(82, 95, 225, 0.12)) 50% 14% / 1px 64% no-repeat,
    linear-gradient(rgba(82, 95, 225, 0.12), rgba(82, 95, 225, 0.12)) 18% 50% / 64% 1px no-repeat,
    radial-gradient(circle at 50% 50%, transparent 0 3rem, rgba(82, 95, 225, 0.08) 3rem 3.16rem, transparent 3.2rem),
    radial-gradient(circle at 50% 50%, transparent 0 5rem, rgba(82, 95, 225, 0.07) 5rem 5.15rem, transparent 5.2rem);
}

.edu-blog-hero-copy,
.edu-blog-hero-side {
  position: relative;
  z-index: 1;
}

.edu-blog-hero-copy h2 {
  max-width: 13ch;
  margin-top: 0.8rem;
  font-size: clamp(2.15rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.edu-blog-hero-copy p {
  max-width: 42rem;
  margin-top: 1rem;
  color: #667085;
  line-height: 1.8;
}

.edu-blog-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.05rem;
}

.edu-blog-hero-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  padding: 0 0.85rem;
  border-radius: 999px;
  background: rgba(82, 95, 225, 0.08);
  border: 1px solid rgba(82, 95, 225, 0.1);
  color: #0b104a;
  font-size: 0.82rem;
  font-weight: 700;
}

.edu-blog-hero-side {
  display: grid;
  gap: 0.9rem;
  justify-items: end;
}

.edu-blog-hero-note {
  max-width: 18rem;
  padding: 1rem 1.05rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(82, 95, 225, 0.08);
  box-shadow: 0 14px 28px rgba(11, 16, 74, 0.05);
}

.edu-blog-hero-note strong,
.edu-blog-hero-note p {
  display: block;
}

.edu-blog-hero-note strong {
  color: #0b104a;
  font-size: 0.95rem;
  font-weight: 800;
}

.edu-blog-hero-note p {
  margin-top: 0.45rem;
  color: #667085;
  font-size: 0.9rem;
  line-height: 1.65;
}

.edu-blog-archive {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 1.1rem;
  width: min(100%, 1320px);
  margin: 0 auto;
  align-items: stretch;
}

.edu-blog-support {
  display: grid;
  gap: 1rem;
}

.edu-blog-card {
  position: relative;
  isolation: isolate;
}

.edu-blog-card::before,
.edu-blog-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.edu-blog-card::before {
  left: 1.2rem;
  right: 1.2rem;
  top: 0;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #525fe1, rgba(82, 95, 225, 0.2));
}

.edu-blog-card::after {
  right: -1.6rem;
  bottom: -1.4rem;
  width: 8.8rem;
  height: 8.8rem;
  border-radius: 50%;
  opacity: 0.42;
}

.edu-blog-card.is-featured {
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  grid-template-rows: none;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 247, 255, 0.98));
}

.edu-blog-card.is-featured::after {
  background:
    linear-gradient(rgba(82, 95, 225, 0.12), rgba(82, 95, 225, 0.12)) 50% 16% / 1px 64% no-repeat,
    linear-gradient(rgba(82, 95, 225, 0.12), rgba(82, 95, 225, 0.12)) 18% 50% / 64% 1px no-repeat,
    radial-gradient(circle at 50% 50%, transparent 0 2.2rem, rgba(82, 95, 225, 0.1) 2.2rem 2.34rem, transparent 2.4rem),
    radial-gradient(circle at 50% 50%, transparent 0 3.85rem, rgba(82, 95, 225, 0.08) 3.85rem 4rem, transparent 4.05rem);
}

.edu-blog-card.is-featured .edu-blog-media {
  min-height: 100%;
}

.edu-blog-card.is-featured .edu-blog-media img {
  height: 100%;
  max-height: none;
  aspect-ratio: auto;
}

.edu-blog-card.is-featured .edu-blog-body {
  padding: 1.4rem 1.35rem 1.45rem;
}

.edu-blog-card.is-featured h3 {
  margin-top: 0.85rem;
  font-size: clamp(1.48rem, 2vw, 1.9rem);
  line-height: 1.3;
}

.edu-blog-card.is-featured p {
  -webkit-line-clamp: 4;
  font-size: 0.96rem;
}

.edu-blog-card.is-compact {
  border-radius: 24px;
}

.edu-blog-card.is-compact::after {
  background:
    linear-gradient(135deg, transparent 48.2%, rgba(82, 95, 225, 0.12) 49% 50.4%, transparent 51.1%) 50% 50% / 76% 76% no-repeat,
    linear-gradient(rgba(82, 95, 225, 0.11), rgba(82, 95, 225, 0.11)) 22% 74% / 54% 1px no-repeat,
    linear-gradient(rgba(82, 95, 225, 0.11), rgba(82, 95, 225, 0.11)) 22% 26% / 1px 48% no-repeat,
    radial-gradient(circle at 22% 74%, rgba(82, 95, 225, 0.14) 0 0.14rem, transparent 0.17rem),
    radial-gradient(circle at 76% 74%, rgba(82, 95, 225, 0.14) 0 0.14rem, transparent 0.17rem);
}

.edu-blog-badge {
  position: absolute;
  left: 1rem;
  top: 1rem;
  display: inline-flex;
  align-items: center;
  min-height: 2.15rem;
  padding: 0 0.8rem;
  border-radius: 999px;
  background: rgba(11, 16, 74, 0.82);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.edu-blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.8rem;
}

.edu-blog-meta span {
  position: relative;
  color: #667085;
  font-size: 0.84rem;
}

.edu-blog-meta span + span::before {
  content: "";
  display: inline-block;
  width: 0.28rem;
  height: 0.28rem;
  margin-right: 0.55rem;
  border-radius: 50%;
  vertical-align: middle;
  background: rgba(82, 95, 225, 0.36);
}

/* ==========================================================================
   [14] Management Section (진단→설계→훈련→피드백 강조)
   ========================================================================== */
.edu-management-banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1rem;
  width: min(100%, 1320px);
  margin: 0 auto;
  padding: 1rem;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(214, 255, 56, 0.18), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(241, 245, 255, 0.98));
  border: 1px solid rgba(82, 95, 225, 0.08);
  box-shadow: 0 26px 64px rgba(11, 16, 74, 0.09);
  overflow: hidden;
}

.edu-management-banner::before,
.edu-management-banner::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.edu-management-banner::before {
  left: -5.5rem;
  top: -4.5rem;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82, 95, 225, 0.14) 0%, rgba(82, 95, 225, 0) 72%);
}

.edu-management-banner::after {
  right: 2.2rem;
  bottom: 1.8rem;
  width: 17rem;
  height: 17rem;
  border-radius: 50%;
  opacity: 0.36;
  background:
    linear-gradient(rgba(82, 95, 225, 0.12), rgba(82, 95, 225, 0.12)) 50% 12% / 1px 68% no-repeat,
    linear-gradient(rgba(82, 95, 225, 0.12), rgba(82, 95, 225, 0.12)) 16% 50% / 68% 1px no-repeat,
    radial-gradient(circle at 50% 50%, transparent 0 3.2rem, rgba(82, 95, 225, 0.08) 3.2rem 3.35rem, transparent 3.4rem),
    radial-gradient(circle at 50% 50%, transparent 0 5.15rem, rgba(82, 95, 225, 0.07) 5.15rem 5.3rem, transparent 5.35rem);
}

.edu-management-copy,
.edu-management-grid {
  position: relative;
  z-index: 1;
}

.edu-management-copy h2,
.edu-management-card h3,
.edu-management-card p,
.edu-management-card span {
  color: #0b104a;
}

.edu-management-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 2rem 2rem 1.95rem;
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(214, 255, 56, 0.12), transparent 26%),
    linear-gradient(145deg, #0d1652 0%, #1a2b76 58%, #243991 100%);
  box-shadow: 0 24px 48px rgba(11, 16, 74, 0.18);
  overflow: hidden;
}

.edu-management-copy::before,
.edu-management-copy::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.edu-management-copy::before {
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 2.5rem),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 2.5rem);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.48), transparent 70%);
}

.edu-management-copy::after {
  right: -4rem;
  bottom: -5.5rem;
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  opacity: 0.26;
  background:
    linear-gradient(rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.22)) 50% 14% / 1px 64% no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.22)) 18% 50% / 64% 1px no-repeat,
    radial-gradient(circle at 50% 50%, transparent 0 3.1rem, rgba(255, 255, 255, 0.18) 3.1rem 3.25rem, transparent 3.3rem),
    radial-gradient(circle at 50% 50%, transparent 0 5rem, rgba(255, 255, 255, 0.16) 5rem 5.15rem, transparent 5.2rem);
}

.edu-management-copy .edu-section-label {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.12);
  color: #eef2ff;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.edu-management-copy .edu-section-label::before {
  background: #d6ff38;
}

.edu-management-copy h2 {
  position: relative;
  z-index: 1;
  margin-top: 0.95rem;
  max-width: 11ch;
  color: #fff;
  font-size: clamp(2.25rem, 3.2vw, 3.35rem);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.045em;
}

.edu-management-title-line {
  display: block;
}

.edu-management-copy p {
  position: relative;
  z-index: 1;
  max-width: 31rem;
  margin-top: 1.2rem;
  color: rgba(232, 238, 255, 0.8);
  line-height: 1.85;
}

.edu-management-keywords {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.35rem;
}

.edu-management-keywords span {
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.edu-management-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
  grid-template-areas:
    "lead top"
    "lead bottom";
  gap: 1rem;
}

.edu-management-card {
  position: relative;
  min-height: 12.75rem;
  padding: 1.3rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(248, 250, 255, 0.96), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(82, 95, 225, 0.08);
  box-shadow: 0 16px 34px rgba(11, 16, 74, 0.06);
  overflow: hidden;
  isolation: isolate;
}

.edu-management-card::before,
.edu-management-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.edu-management-card::before {
  left: 1.2rem;
  right: 1.2rem;
  top: 0;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #525fe1, #a1a8ff);
}

.edu-management-card::after {
  right: -1.4rem;
  bottom: -1.2rem;
  width: 8.8rem;
  height: 8.8rem;
  border-radius: 50%;
  opacity: 0.55;
}

.edu-management-card > * {
  position: relative;
  z-index: 1;
}

.edu-management-card.is-lead {
  grid-area: lead;
  padding: 1.55rem 1.45rem;
}

.edu-management-card.is-top {
  grid-area: top;
}

.edu-management-card.is-bottom {
  grid-area: bottom;
}

.edu-management-card.is-lead::after {
  background:
    linear-gradient(rgba(82, 95, 225, 0.12), rgba(82, 95, 225, 0.12)) 50% 16% / 1px 64% no-repeat,
    linear-gradient(rgba(82, 95, 225, 0.12), rgba(82, 95, 225, 0.12)) 18% 50% / 64% 1px no-repeat,
    radial-gradient(circle at 50% 50%, transparent 0 2.2rem, rgba(82, 95, 225, 0.1) 2.2rem 2.33rem, transparent 2.38rem),
    radial-gradient(circle at 50% 50%, transparent 0 3.8rem, rgba(82, 95, 225, 0.08) 3.8rem 3.94rem, transparent 4rem);
}

.edu-management-card.is-top::after {
  background:
    linear-gradient(135deg, transparent 48.2%, rgba(82, 95, 225, 0.12) 49% 50.4%, transparent 51.1%) 50% 50% / 74% 74% no-repeat,
    linear-gradient(rgba(82, 95, 225, 0.11), rgba(82, 95, 225, 0.11)) 22% 74% / 54% 1px no-repeat,
    linear-gradient(rgba(82, 95, 225, 0.11), rgba(82, 95, 225, 0.11)) 22% 26% / 1px 48% no-repeat,
    radial-gradient(circle at 22% 74%, rgba(82, 95, 225, 0.14) 0 0.14rem, transparent 0.17rem),
    radial-gradient(circle at 76% 74%, rgba(82, 95, 225, 0.14) 0 0.14rem, transparent 0.17rem);
}

.edu-management-card.is-bottom::after {
  background:
    linear-gradient(rgba(82, 95, 225, 0.11), rgba(82, 95, 225, 0.11)) 24% 72% / 58% 1px no-repeat,
    linear-gradient(rgba(82, 95, 225, 0.11), rgba(82, 95, 225, 0.11)) 24% 18% / 1px 54% no-repeat,
    radial-gradient(118% 118% at 24% 72%, transparent 61%, rgba(82, 95, 225, 0.11) 61.8% 63.6%, transparent 64.4%) 24% 18% / 69% 62% no-repeat,
    radial-gradient(circle at 58% 40%, rgba(82, 95, 225, 0.14) 0 0.14rem, transparent 0.17rem);
}

.edu-management-card-index {
  position: absolute;
  top: 0.95rem;
  right: 1rem;
  color: rgba(82, 95, 225, 0.12);
  font-size: 2.85rem;
  line-height: 1;
  font-style: normal;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.edu-management-card span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0 0.72rem;
  border-radius: 999px;
  background: rgba(82, 95, 225, 0.08);
  color: #525fe1;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.edu-management-card h3 {
  margin-top: 1rem;
  max-width: 11ch;
  font-size: 1.38rem;
  line-height: 1.32;
  font-weight: 700;
}

.edu-management-card p {
  margin-top: 0.8rem;
  color: #667085;
  font-size: 0.96rem;
  line-height: 1.8;
}

.edu-blog-body span {
  color: #667085;
  font-size: 0.88rem;
}

/* ==========================================================================
   [15] Location Section (지도/찾아오는 길)
   ========================================================================== */
.edu-location-section {
  padding: 1.5rem 0 0.5rem;
  background: rgba(255, 255, 255, 0.32);
}

.edu-location-grid,
.edu-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: 1rem;
  align-items: stretch;
  width: min(100%, 1320px);
  margin: 0 auto;
}

.edu-location-map-frame,
.edu-location-card,
.edu-consult-card {
  border: 1px solid rgba(82, 95, 225, 0.08);
  border-radius: 22px;
  box-shadow: 0 16px 34px rgba(11, 16, 74, 0.06);
}

.edu-location-map-frame {
  position: relative;
  min-height: 25rem;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(211, 255, 52, 0.1), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 247, 255, 0.96));
}

.edu-kakao-map-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: inherit;
  background: rgba(246, 248, 255, 0.92);
}

.edu-kakao-map-embed {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: none;
  width: 100%;
  height: 100%;
  border: 0;
  background: #f6f8ff;
}

.edu-location-map-frame.is-kakao-ready::before,
.edu-location-map-frame.is-kakao-ready [data-kakao-map-fallback],
.edu-location-map-frame.is-kakao-embed::before,
.edu-location-map-frame.is-kakao-embed [data-kakao-map-fallback] {
  display: none;
}

.edu-location-map-frame.is-kakao-fallback .edu-kakao-map-canvas,
.edu-location-map-frame.is-kakao-fallback .edu-kakao-map-embed {
  display: none;
}

.edu-location-map-frame.is-kakao-embed .edu-kakao-map-embed {
  display: block;
}

.edu-kakao-map-label {
  min-width: 13.5rem;
  padding: 0.75rem 0.85rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(82, 95, 225, 0.16);
  box-shadow: 0 18px 42px rgba(11, 16, 74, 0.18);
  color: #0b104a;
}

.edu-kakao-map-label strong,
.edu-kakao-map-label span {
  display: block;
}

.edu-kakao-map-label strong {
  font-size: 0.96rem;
  line-height: 1.35;
}

.edu-kakao-map-label span {
  margin-top: 0.25rem;
  color: #667085;
  font-size: 0.78rem;
  line-height: 1.45;
}

.edu-location-map-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(82, 95, 225, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(82, 95, 225, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
}

.edu-location-pin,
.edu-location-route,
.edu-location-point {
  position: absolute;
  z-index: 1;
}

.edu-location-pin {
  left: 11%;
  top: 16%;
  width: min(20rem, 68%);
  padding: 1.05rem 1.1rem;
  border-radius: 20px;
  background: rgba(11, 16, 74, 0.9);
  box-shadow: 0 18px 42px rgba(11, 16, 74, 0.16);
}

.edu-location-pin span,
.edu-location-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 1.95rem;
  padding: 0 0.78rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.edu-location-pin span {
  background: rgba(255, 255, 255, 0.1);
  color: #d6ff38;
}

.edu-location-eyebrow {
  background: linear-gradient(180deg, rgba(214, 255, 56, 0.18), rgba(214, 255, 56, 0.08));
  border: 1px solid rgba(141, 165, 24, 0.18);
  color: #5d7100;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.edu-location-pin strong {
  display: block;
  margin-top: 0.8rem;
  color: #fff;
  font-size: 1.48rem;
  line-height: 1.28;
}

.edu-location-pin p {
  margin: 0.7rem 0 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.75;
}

.edu-location-route {
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(82, 95, 225, 0.22), rgba(242, 107, 101, 0.34));
}

.edu-location-route.is-one {
  left: 22%;
  right: 15%;
  top: 48%;
  height: 8px;
  transform: rotate(-18deg);
}

.edu-location-route.is-two {
  left: 32%;
  right: 22%;
  bottom: 24%;
  height: 7px;
  transform: rotate(11deg);
}

.edu-location-route.is-three {
  left: 44%;
  right: 8%;
  top: 26%;
  height: 6px;
  transform: rotate(29deg);
}

.edu-location-point {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  box-shadow: 0 0 0 0.35rem rgba(82, 95, 225, 0.12);
}

.edu-location-point.is-a {
  left: 18%;
  top: 54%;
  background: #525fe1;
}

.edu-location-point.is-b {
  right: 18%;
  top: 34%;
  background: #f26b65;
}

.edu-location-point.is-c {
  right: 27%;
  bottom: 21%;
  background: #d3ff34;
}

.edu-location-actions,
.edu-location-mini-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1rem;
}

.edu-location-copy {
  display: grid;
  gap: 1rem;
}

.edu-location-card {
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.92);
}

.edu-location-card.is-note {
  background: linear-gradient(180deg, rgba(247, 249, 255, 0.98), rgba(255, 255, 255, 0.98));
}

.edu-location-card h3 {
  margin: 0.8rem 0 0;
  font-size: 1.52rem;
  line-height: 1.35;
}

.edu-location-card p {
  margin: 0.95rem 0 0;
  color: #667085;
  line-height: 1.82;
}

.edu-location-card.is-note h3 {
  color: #0b104a;
}

.edu-location-card.is-note p {
  color: #667085;
}

.edu-location-list {
  display: grid;
  gap: 0.9rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.edu-location-list li {
  display: grid;
  gap: 0.35rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(16, 32, 51, 0.08);
}

.edu-location-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.edu-location-list strong {
  color: #0b104a;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.edu-location-list span {
  color: #667085;
  line-height: 1.8;
}

/* ==========================================================================
   [16] Contact + Consultation Section
   ========================================================================== */
.edu-contact-section {
  padding-top: 1.5rem;
  background: rgba(255, 255, 255, 0.12);
}

.edu-contact-panel,
.edu-consult-card {
  padding: 1.55rem;
  border-radius: 22px;
}

.edu-contact-panel {
  position: relative;
  border: 1px solid rgba(82, 95, 225, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 255, 0.98));
  box-shadow: 0 16px 30px rgba(11, 16, 74, 0.06);
}

.edu-contact-panel::before,
.edu-consult-card::before {
  content: "";
  position: absolute;
  left: 1.55rem;
  right: 1.55rem;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #525fe1, rgba(82, 95, 225, 0.2));
}

.edu-contact-panel h2,
.edu-contact-panel p,
.edu-phone-box strong,
.edu-phone-box span,
.edu-contact-meta p {
  color: #0b104a;
}

.edu-contact-panel h2 {
  margin-top: 0.75rem;
  font-size: clamp(1.9rem, 3.8vw, 2.5rem);
  line-height: 1.18;
  font-weight: 700;
}

.edu-contact-panel p {
  margin-top: 1rem;
  color: #667085;
  line-height: 1.85;
}

.edu-contact-proof {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.edu-contact-proof div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.75rem;
  padding: 0.72rem 0.78rem;
  border: 1px solid rgba(82, 95, 225, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
}

.edu-contact-proof strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: #eef2ff;
  color: #525fe1;
  font-size: 0.78rem;
  font-weight: 900;
}

.edu-contact-proof span {
  color: #10233f;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
}

.edu-contact-panel .edu-btn-secondary {
  border-color: rgba(82, 95, 225, 0.12);
  background: rgba(246, 248, 255, 0.96);
  color: #0b104a;
}

.edu-contact-panel .edu-btn-secondary:hover,
.edu-contact-panel .edu-btn-secondary:focus-visible,
.edu-contact-panel .edu-btn-ghost:hover,
.edu-contact-panel .edu-btn-ghost:focus-visible {
  background: #fff;
  color: #0b104a;
}

.edu-contact-panel .edu-btn-ghost {
  border-color: rgba(11, 16, 74, 0.09);
  color: #0b104a;
}

.edu-consult-card {
  position: relative;
  background: rgba(255, 255, 255, 0.94);
}

.edu-consult-head h3 {
  margin: 0.9rem 0 0;
  font-size: 1.7rem;
  line-height: 1.28;
}

.edu-consult-head p {
  margin: 0.8rem 0 0;
  color: #667085;
  line-height: 1.82;
}

.edu-consult-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.2rem;
}

.edu-consult-field {
  display: grid;
  gap: 0.45rem;
}

.edu-consult-field span {
  color: #10233f;
  font-size: 0.88rem;
  font-weight: 700;
}

.edu-consult-field input,
.edu-consult-field select,
.edu-consult-field textarea {
  width: 100%;
  border: 1px solid rgba(82, 95, 225, 0.14);
  border-radius: 16px;
  background: #fff;
  color: #10233f;
  padding: 0.95rem 1rem;
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.edu-consult-field input::placeholder,
.edu-consult-field textarea::placeholder {
  color: #9aa6ba;
}

.edu-consult-field input:focus,
.edu-consult-field select:focus,
.edu-consult-field textarea:focus {
  border-color: #525fe1;
  box-shadow: 0 0 0 0.25rem rgba(82, 95, 225, 0.12);
}

.edu-consult-field-wide {
  margin-top: 1rem;
}

.edu-consult-card .edu-btn-primary {
  margin-top: 1.2rem;
  width: 100%;
}

.edu-consult-success-card {
  display: flex;
  align-items: stretch;
}

.edu-consult-success {
  display: grid;
  gap: 1.2rem;
  width: 100%;
  padding: 0.1rem 0;
}

.edu-consult-success-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 2.25rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(208, 255, 86, 0.28), rgba(82, 95, 225, 0.12));
  border: 1px solid rgba(162, 210, 42, 0.26);
  color: #4f8f10;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.edu-consult-success-icon {
  display: grid;
  place-items: center;
  width: 4.9rem;
  height: 4.9rem;
  border-radius: 1.6rem;
  background: linear-gradient(145deg, #525fe1, #727dff);
  box-shadow: 0 24px 42px rgba(82, 95, 225, 0.22);
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
}

.edu-consult-success h3 {
  margin: 0;
  color: #0b104a;
  font-size: 2rem;
  line-height: 1.2;
}

.edu-consult-success-message {
  margin: -0.35rem 0 0;
  color: #1f7a34;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.7;
}

.edu-consult-success-flow {
  display: grid;
  gap: 0.9rem;
}

.edu-consult-success-step {
  display: grid;
  gap: 0.28rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(247, 249, 255, 0.92);
  border: 1px solid rgba(82, 95, 225, 0.12);
}

.edu-consult-success-step strong {
  color: #0b104a;
  font-size: 0.95rem;
}

.edu-consult-success-step span {
  color: #667085;
  font-size: 0.94rem;
  line-height: 1.72;
}

.edu-consult-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.1rem;
}

.edu-consult-success-actions .edu-btn {
  min-width: 12.5rem;
}

.edu-consult-success-actions .edu-btn-primary,
.edu-consult-success-actions .edu-btn-secondary {
  width: auto;
  margin-top: 0;
}

.admin-consultation-message {
  max-width: 28rem;
  white-space: pre-wrap;
  line-height: 1.72;
}

/* ==========================================================================
   [17] Contact Band / Footer-Top CTA
   ========================================================================== */
.edu-contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 1rem;
  padding: 2rem;
  border-radius: 28px;
  background: linear-gradient(135deg, #0b104a 0%, #1c235f 100%);
  box-shadow: 0 28px 70px rgba(11, 16, 74, 0.18);
}

.edu-contact-main h2,
.edu-contact-main p,
.edu-phone-box strong,
.edu-phone-box span,
.edu-contact-meta p {
  color: #fff;
}

.edu-contact-main h2 {
  margin-top: 0.75rem;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.18;
  font-weight: 700;
}

.edu-contact-main p {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.85;
}

.edu-phone-box {
  display: block;
  margin-top: 1rem;
  padding: 1.25rem 1.35rem;
  border-radius: 18px;
  background: linear-gradient(135deg, #1a2f74 0%, #525fe1 100%);
  border: 1px solid rgba(82, 95, 225, 0.2);
  box-shadow: 0 14px 28px rgba(11, 16, 74, 0.12);
}

.edu-phone-box strong {
  display: block;
  color: #fff;
  font-size: clamp(1.78rem, 4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.edu-phone-box span {
  display: block;
  margin-top: 0.4rem;
  color: rgba(255, 255, 255, 0.72);
}

.edu-contact-meta {
  margin-top: 1rem;
}

.edu-contact-meta p + p {
  margin-top: 0.45rem;
}

.edu-contact-trust {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

.edu-contact-trust p {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr);
  gap: 0.65rem;
  margin: 0;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(82, 95, 225, 0.1);
  color: #667085;
  font-size: 0.88rem;
  line-height: 1.55;
}

.edu-contact-trust strong {
  color: #0b104a;
  font-weight: 900;
}

.edu-contact-side .edu-btn-secondary {
  border-color: rgba(255, 255, 255, 0.18);
}

.edu-contact-side .edu-btn-ghost {
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.edu-contact-side .edu-btn-ghost:hover,
.edu-contact-side .edu-btn-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

/* ==========================================================================
   [18] Mobile Sticky CTA
   ========================================================================== */
.edu-mobile-cta {
  display: none;
}

/* ==========================================================================
   [19] Responsive: Tablet / Small Desktop (<=1180px)
   ========================================================================== */
@media (max-width: 1180px) {
  .edu-hero-shell,
  .edu-parent-report-grid,
  .edu-about-grid,
  .edu-management-banner,
  .edu-contact-band,
  .edu-location-grid,
  .edu-contact-layout {
    grid-template-columns: 1fr;
  }

  .edu-promo-ribbon,
  .edu-counter-grid,
  .edu-promo-grid,
  .edu-process-grid,
  .edu-course-grid,
  .edu-post-grid,
  .edu-category-grid,
  .edu-topic-grid,
  .edu-card-grid,
  .edu-management-grid,
  .edu-consult-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .edu-promo-ribbon-steps,
  .edu-parent-report-cards,
  .edu-about-summary-grid,
  .edu-about-evidence-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .edu-flow-node:nth-child(2)::after,
  .edu-flow-node:nth-child(4)::after {
    display: none;
  }

  .edu-card-grid {
    max-width: none;
  }

  .edu-hero-visual {
    min-height: 34rem;
  }

  .edu-hero-board {
    inset: 1rem 0 0 0;
  }

  .edu-blog-hero,
  .edu-blog-archive {
    grid-template-columns: 1fr;
  }

  .edu-blog-hero-side {
    justify-items: start;
  }

  .edu-blog-hero-note {
    max-width: none;
  }

  .edu-blog-support {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .edu-blog-card.is-featured {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .edu-counter-card p {
    max-width: none;
  }

  .edu-management-banner {
    padding: 0.95rem;
  }

  .edu-management-copy {
    padding: 1.7rem 1.5rem;
  }

  .edu-management-copy h2 {
    max-width: none;
    font-size: clamp(2rem, 4.8vw, 2.85rem);
  }

  .edu-management-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "lead lead"
      "top bottom";
  }

  .edu-management-card.is-lead {
    min-height: 11.5rem;
  }
}

/* ==========================================================================
   [20] Responsive: Tablet Portrait (<=820px)
   ========================================================================== */
@media (max-width: 820px) {
  .topbar-inner {
    padding: 0.7rem 0.95rem;
  }

  .page-home-eduleb {
    padding-bottom: 8rem;
  }

  .edu-hero-section,
  .edu-promo-section,
  .edu-parent-report-section,
  .edu-about-section,
  .edu-topic-section,
  .edu-notice-section,
  .edu-location-section,
  .edu-management-section,
  .edu-blog-section,
  .edu-contact-section,
  .edu-category-section {
    padding: 4.2rem 0;
  }

  .edu-section-heading.split {
    align-items: flex-start;
    flex-direction: column;
  }

  .edu-counter-grid,
  .edu-process-grid,
  .edu-course-grid,
  .edu-post-grid,
  .edu-promo-ribbon-steps,
  .edu-parent-report-cards,
  .edu-parent-related-grid,
  .edu-promo-grid,
  .edu-category-grid,
  .edu-topic-grid,
  .edu-card-grid,
  .edu-management-grid,
  .edu-about-summary-grid,
  .edu-about-evidence-grid,
  .edu-hero-badges,
  .edu-consult-grid,
  .edu-location-actions,
  .edu-location-mini-actions,
  .edu-topic-actions {
    grid-template-columns: 1fr;
  }

  .edu-promo-ribbon {
    padding: 1.25rem;
  }

  .edu-parent-report-visual {
    min-height: 30rem;
  }

  .edu-parent-report-paper {
    inset: 1.2rem 1.2rem auto;
  }

  .edu-parent-report-overlay {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }

  .edu-parent-report-mini-grid,
  .edu-parent-report-flow {
    grid-template-columns: 1fr;
  }

  .edu-parent-report-mini-grid {
    display: none;
  }

  .edu-parent-report-copy h2 {
    max-width: none;
    font-size: clamp(2rem, 8vw, 2.6rem);
  }

  .edu-promo-ribbon::before {
    width: 72%;
    opacity: 0.52;
  }

  .edu-promo-ribbon::after,
  .edu-flow-node::before,
  .edu-promo-card::after {
    opacity: 0.42;
  }

  .edu-flow-node::after {
    display: none;
  }

  .edu-hero-shell {
    gap: 1.5rem;
    min-height: auto;
  }

  .edu-hero-visual {
    display: none;
  }

  .edu-hero-badges {
    display: grid;
  }

  .edu-hero-copy h1 {
    font-size: clamp(2.55rem, 10vw, 3.65rem);
    letter-spacing: -0.05em;
  }

  .edu-hero-copy p,
  .edu-about-copy p,
  .edu-section-heading p,
  .edu-post-body p,
  .edu-blog-body p,
  .edu-management-copy p,
  .edu-management-card p,
  .edu-contact-main p {
    font-size: 0.98rem;
    line-height: 1.8;
  }

  .edu-management-copy {
    padding: 1.4rem 1.2rem;
    border-radius: 22px;
  }

  .edu-management-copy h2 {
    margin-top: 0.8rem;
    font-size: clamp(1.95rem, 7vw, 2.45rem);
  }

  .edu-management-title-line {
    display: inline;
  }

  .edu-management-keywords {
    margin-top: 1rem;
    gap: 0.55rem;
  }

  .edu-management-keywords span {
    min-height: 2.15rem;
    font-size: 0.78rem;
  }

  .edu-management-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "lead"
      "top"
      "bottom";
  }

  .edu-management-card,
  .edu-management-card.is-lead {
    min-height: auto;
    padding: 1.15rem;
  }

  .edu-management-card h3 {
    max-width: none;
    font-size: 1.28rem;
  }

  .edu-management-card-index {
    font-size: 2.4rem;
  }

  .edu-blog-hero {
    padding: 1.15rem 1.05rem;
    border-radius: 22px;
  }

  .edu-blog-hero-copy h2 {
    max-width: none;
    font-size: clamp(1.95rem, 8vw, 2.55rem);
  }

  .edu-blog-hero-copy p {
    margin-top: 0.85rem;
  }

  .edu-blog-hero-tags {
    gap: 0.5rem;
    margin-top: 0.85rem;
  }

  .edu-blog-hero-tags span {
    min-height: 2.1rem;
    font-size: 0.76rem;
  }

  .edu-blog-archive,
  .edu-blog-support {
    grid-template-columns: 1fr;
  }

  .edu-blog-card.is-featured {
    grid-template-columns: 1fr;
  }

  .edu-blog-card.is-featured .edu-blog-media img,
  .edu-blog-card.is-compact .edu-blog-media img {
    aspect-ratio: 16 / 9;
  }

  .edu-blog-card.is-featured .edu-blog-body {
    padding: 1.15rem 1.15rem 1.2rem;
  }

  .edu-blog-card.is-featured h3 {
    font-size: 1.42rem;
  }

  .edu-counter-card {
    gap: 0.6rem;
    padding: 0.95rem 1rem 1rem;
  }

  .edu-counter-card h2,
  .edu-counter-card.is-contact h2,
  .edu-counter-card.is-program h2 {
    font-size: clamp(1.8rem, 8vw, 2.1rem);
    white-space: normal;
  }

  .edu-counter-card p {
    font-size: 0.9rem;
  }

  .edu-post-media img,
  .edu-blog-media img {
    max-height: none;
  }

  .edu-section-heading {
    margin-bottom: 2.25rem;
    padding-bottom: 0.95rem;
  }

  .edu-section-copy {
    max-width: none;
  }

  .edu-hero-visual {
    min-height: 27rem;
  }

  .edu-hero-board {
    inset: 0.8rem 0 0 0;
  }

  .edu-hero-notice {
    left: 0.85rem;
    right: 0.85rem;
    bottom: 0.85rem;
    padding: 0.85rem 0.9rem;
  }

  .edu-hero-notice h3 {
    margin-top: 0.65rem;
    font-size: clamp(1rem, 4.5vw, 1.2rem);
  }

  .edu-hero-notice p:last-child {
    margin-top: 0.4rem;
    font-size: 0.84rem;
  }

  .edu-hero-insight {
    left: 0;
    bottom: 1.5rem;
    width: 11.5rem;
    padding: 0.8rem 0.88rem;
  }

  .edu-card-notice {
    left: 0;
    top: 1rem;
    width: 14rem;
  }

  .edu-card-stat.is-blue {
    right: 0.25rem;
    top: 4.75rem;
  }

  .edu-card-stat.is-coral {
    right: 0;
    bottom: 1rem;
  }

  .edu-management-banner,
  .edu-contact-band,
  .edu-contact-panel,
  .edu-consult-card {
    padding: 1.5rem;
    border-radius: 24px;
  }

  .edu-location-map-frame,
  .edu-location-card {
    border-radius: 24px;
  }

  .edu-location-map-frame {
    min-height: 23rem;
  }

  .edu-location-pin {
    left: 1.1rem;
    right: 1.1rem;
    top: 1.15rem;
    width: auto;
  }

  .edu-location-route.is-one {
    left: 14%;
    right: 16%;
    top: 52%;
  }

  .edu-location-route.is-two {
    left: 22%;
    right: 18%;
    bottom: 20%;
  }

  .edu-location-route.is-three {
    left: 46%;
    right: 12%;
    top: 31%;
  }

  .edu-mobile-cta {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .edu-mobile-cta .edu-btn {
    min-height: 3.65rem;
    box-shadow: 0 20px 44px rgba(11, 16, 74, 0.2);
  }
}

/* ==========================================================================
   [21] Responsive: Mobile (<=560px)
   ========================================================================== */
@media (max-width: 560px) {
  .topbar {
    padding-top: 0;
  }

  .topbar-inner {
    gap: 0.68rem;
    min-height: 4.2rem;
    padding: 0.62rem 0.82rem;
    border-radius: 0;
  }

  .brand {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 0.62rem;
    flex: 1 1 auto;
    width: 100%;
    max-width: none;
    margin-right: 0;
  }

  .brand-badge {
    width: 2.45rem;
    height: 2.45rem;
    border-radius: 12px;
  }

  .brand-copy {
    min-width: 0;
    gap: 0.1rem;
  }

  .brand-copy strong {
    font-size: 0.84rem;
    letter-spacing: 0.08em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-copy span {
    display: none;
  }

  .menu-button {
    flex: 0 0 auto;
    width: 2.45rem;
    height: 2.45rem;
  }

  .edu-shell {
    padding-inline: 0.9rem;
  }

  .edu-hero-copy h1 {
    font-size: clamp(1.84rem, 8vw, 2.34rem);
    line-height: 1.08;
    letter-spacing: -0.045em;
  }

  .edu-hero-actions,
  .edu-contact-actions,
  .edu-location-mini-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .edu-hero-tags,
  .edu-category-pills {
    gap: 0.55rem;
  }

  .edu-hero-tags span,
  .edu-tag-link,
  .edu-pill {
    min-height: 2.45rem;
    padding: 0 0.85rem;
    font-size: 0.82rem;
  }

  .edu-section-kicker,
  .edu-section-label {
    min-height: 2rem;
    padding: 0.32rem 0.78rem 0.32rem 0.5rem;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .edu-section-kicker::before,
  .edu-section-label::before {
    width: 0.48rem;
    height: 0.48rem;
  }

  .edu-card-notice {
    width: min(10.4rem, calc(100% - 7rem));
    padding: 1rem;
  }

  .edu-card-notice strong {
    font-size: 1.1rem;
  }

  .edu-card-stat {
    max-width: 6.9rem;
    padding: 0.75rem;
  }

  .edu-card-stat strong {
    font-size: 1.08rem;
  }

  .edu-card-stat span {
    font-size: 0.68rem;
    line-height: 1.4;
  }

  .edu-card-stat.is-blue {
    right: 0.6rem;
    top: 4.85rem;
  }

  .edu-card-stat.is-coral {
    right: 0.6rem;
    bottom: 1.2rem;
  }

  .edu-hero-insight {
    width: 10.2rem;
    padding: 0.72rem 0.76rem;
  }

  .edu-hero-visual {
    min-height: 24rem;
  }

  .edu-hero-board-inset {
    inset: 14% 7% 17% 7%;
    padding: 0.75rem;
    border-radius: 22px;
  }

  .edu-hero-insight strong {
    font-size: 0.95rem;
  }

  .edu-hero-insight-list {
    gap: 0.55rem;
    margin-top: 0.75rem;
  }

  .edu-hero-insight-list li {
    padding-top: 0.55rem;
  }

  .edu-hero-insight-list span {
    font-size: 0.78rem;
  }

  .edu-hero-insight-list p {
    font-size: 0.74rem;
    line-height: 1.5;
  }

  .edu-about-note {
    left: 1.2rem;
    right: 1.2rem;
    bottom: 1.2rem;
    padding: 0.8rem 0.9rem;
  }

  .edu-about-note-list {
    font-size: 0.76rem;
  }

  .edu-about-note-flow {
    gap: 0.42rem;
    margin-top: 0.7rem;
    padding: 0.68rem 0.72rem 0.72rem;
  }

  .edu-about-note-flow-item span {
    font-size: 0.68rem;
  }

  .edu-about-note-flow-item small {
    font-size: 0.62rem;
  }

  .edu-phone-box strong {
    font-size: 1.85rem;
  }

  .edu-about-title-line {
    display: inline;
  }

  .edu-topic-card,
  .edu-location-card,
  .edu-consult-card,
  .edu-contact-panel {
    padding: 1.2rem;
  }

  .edu-contact-trust p {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .edu-topic-card h3,
  .edu-location-card h3,
  .edu-consult-head h3 {
    font-size: 1.34rem;
  }

  .edu-course-icon {
    width: 3.5rem;
    height: 3.5rem;
  }

  .edu-topic-head {
    align-items: flex-start;
  }

  .edu-location-map-frame {
    min-height: 20rem;
  }

  .edu-location-pin strong {
    font-size: 1.18rem;
  }

  .edu-location-pin p,
  .edu-topic-card p,
  .edu-consult-head p,
  .edu-location-card p {
    font-size: 0.92rem;
  }

  .edu-consult-success h3 {
    font-size: 1.52rem;
  }

  .edu-consult-success-message,
  .edu-consult-success-step span {
    font-size: 0.92rem;
  }

  .edu-mobile-cta {
    left: 0.75rem;
    right: 0.75rem;
    gap: 0.6rem;
  }

  .edu-mobile-cta .edu-btn {
    min-height: 3.35rem;
    font-size: 0.95rem;
  }

  .edu-consult-success-actions {
    flex-direction: column;
  }

  .edu-consult-success-actions .edu-btn {
    width: 100%;
    min-width: 0;
  }
}

/* ==========================================================================
   [22] Footer Responsive Overrides
   ========================================================================== */
@media (max-width: 1180px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 820px) {
  .footer {
    padding-bottom: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    padding: 2rem 0 1.5rem;
    border-radius: 0;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-brand h3 {
    max-width: none;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 0 0;
    border-radius: 0;
  }

  .edu-call-label-desktop {
    display: none;
  }

  .edu-call-label-mobile {
    display: inline;
  }

  .edu-btn .edu-call-label-desktop,
  .edu-phone-box .edu-call-label-desktop {
    display: none;
  }

  .edu-btn .edu-call-label-mobile {
    display: inline;
  }

  .edu-phone-box .edu-call-label-mobile {
    display: block;
  }

  .edu-contact-section {
    padding-bottom: 1.35rem;
  }
}

@media (max-width: 560px) {
  .footer {
    padding-inline: 0;
    padding-bottom: 0;
  }

  .footer-grid {
    gap: 1.25rem;
    padding: 1.7rem 0 1.35rem;
  }

  .footer-logo img {
    width: 8.8rem;
  }

  .footer-brand h3 {
    font-size: 1.4rem;
  }

  .footer-actions,
  .footer-bottom-links {
    width: 100%;
  }

  .footer-action {
    flex: 1 1 100%;
  }

  .edu-contact-section {
    padding-bottom: 1rem;
  }
}

/* ==========================================================================
   [23] Notice Popup Responsive
   ========================================================================== */
@media (max-width: 720px) {
  .notice-popup-layer {
    padding: 0.9rem;
    align-items: end;
  }

  .notice-popup-window {
    --notice-popup-cover-height: min(31vh, 15rem);
    --notice-popup-content-max-height: min(29vh, 16rem);
    width: 100%;
    max-height: 88vh;
    padding: 1rem;
    border-radius: 24px;
  }

  .notice-popup-content {
    max-height: 38vh;
    padding: 0.9rem;
  }

  .notice-popup-actions,
  .notice-popup-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .notice-popup-actions .button,
  .notice-popup-text-button {
    width: 100%;
    text-align: center;
  }
}
