/* THEARTPET — maintained stylesheet
 * Base rules and responsive rules retain cascade order.
 * Superseded declarations with identical selector and conditions removed.
 * Keep state selectors and media rules in their current order when editing.
 */

:root {
  --navy2: #0d1c2f;
  --ink: #152033;
  --muted: #6f7782;
  --beige: #efe2ce;
  --cream: #f7f3ed;
  --paper: #fff;
  --line: #e7e1d9;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0px;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
}

button, input, select, textarea {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0px;
  z-index: 50;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(19, 38, 61, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  min-width: max-content;
}

.desktop-nav {
  display: flex;
  margin-left: auto;
}

.desktop-nav a {
  padding: 10px 0px;
}

.desktop-nav a:hover {
  color: rgb(145, 111, 78);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--navy);
  font-weight: 800;
  cursor: pointer;
}

.btn-small {
  background: var(--navy);
  color: rgb(255, 255, 255);
  font-size: 14px;
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(100deg, rgb(247, 243, 237) 0%, rgb(247, 243, 237) 48%, rgb(238, 230, 218) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}

.hero-copy {
  padding: 70px 0px 85px;
}

.eyebrow {
  color: rgb(111, 103, 95);
  margin: 0px 0px 18px;
}

.hero h1 {
  font-size: 58px;
  margin: 0px 0px 22px;
  color: var(--navy);
}

.hero h1 span {
  font-weight: 900;
}

.hero-sub {
  font-size: 18px;
  margin: 0px 0px 30px;
}

.hero-actions {
  display: flex;
}

.btn-primary {
  padding: 15px 26px;
  background: var(--navy);
  color: rgb(255, 255, 255);
}

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

.hero-points > div {
  display: grid;
  grid-template-rows: auto auto;
  padding: 8px 18px;
  border-right: 1px solid rgba(19, 38, 61, 0.18);
}

.hero-points > div:first-child {
  padding-left: 0px;
}

.hero-points > div:last-child {
  border-right: 0px;
}

.section {
  padding: 88px 0px;
}

.section-heading {
  margin-bottom: 30px;
}

.section-heading.split {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.section-heading h2 {
  margin: 0px 0px 8px;
  color: var(--navy);
}

.section-heading p:not(.eyebrow) {
  margin: 0px;
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-card {
  background: rgb(255, 255, 255);
  border: 1px solid rgb(238, 232, 223);
  border-radius: 18px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: rgba(25, 37, 49, 0.04) 0px 6px 24px;
}

.feature-card h3 {
  font-size: 18px;
  margin: 0px 0px 8px;
}

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

.course-grid {
  display: grid;
}

.course-card {
  border: 1px solid var(--line);
  background: rgb(255, 255, 255);
}

.course-body h3 {
  margin: 0px 0px 8px;
}

.course-body p {
  margin: 0px 0px 14px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
}

.tags span {
  font-size: 11px;
  color: rgb(108, 102, 95);
  border-radius: 999px;
}

.facility-grid {
  display: grid;
}

.facility-item {
  margin: 0px;
  background: rgb(238, 238, 238);
}

.facility-item img {
  aspect-ratio: 1.8 / 1;
}

.facility-item figcaption {
  position: absolute;
}

.review-grid {
  display: grid;
}

.review-card {
  background: rgb(255, 255, 255);
  border: 1px solid rgb(233, 227, 220);
}

.review-card small {
  color: rgb(153, 153, 153);
}

.faq-layout {
  display: grid;
}

.faq-list {
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 30px 20px 0px;
  font-weight: 800;
  position: relative;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 3px;
  top: 18px;
  font-size: 22px;
  font-weight: 400;
}

details[open] summary::after {
  content: "−";
}

details p {
  margin: -5px 0px 20px;
  color: var(--muted);
}

.consult {
  color: rgb(255, 255, 255);
}

.consult-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.35fr;
  gap: 70px;
  align-items: start;
}

.eyebrow.light {
  color: rgb(217, 200, 175);
}

.consult-copy h2 {
  margin: 0px 0px 16px;
  letter-spacing: -0.04em;
}

.consult-copy > p {
  color: rgb(216, 222, 230);
}

.branch-info {
  margin-top: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: rgba(255, 255, 255, 0.05);
}

.branch-info span {
  color: rgb(199, 206, 215);
  font-size: 13px;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: rgb(255, 255, 255);
  color: var(--ink);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label, .lead-form > label {
  font-weight: 800;
}

.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid rgb(220, 223, 227);
  border-radius: 8px;
  padding: 12px 13px;
  background: rgb(255, 255, 255);
  outline: none;
}

.field input:focus, .field select:focus, .field textarea:focus {
  border-color: rgb(124, 141, 161);
  box-shadow: rgba(19, 38, 61, 0.08) 0px 0px 0px 3px;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: rgb(95, 102, 112);
}

.consent input {
  margin-top: 3px;
}

.btn-form {
  background: var(--navy);
  color: rgb(255, 255, 255);
  width: 100%;
}

.form-note {
  margin: 0px;
}

.footer {
  padding: 28px 0px;
  border-top: 1px solid rgb(238, 238, 238);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer p {
  font-size: 12px;
  color: rgb(153, 153, 153);
}

.mobile-bar {
  display: none;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: 0.35s;
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .hero-inner {
    align-items: flex-start;
  }

  .hero-copy {
    padding-top: 70px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-points {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-points > div {
    border-right: 0px;
    padding: 4px 0px;
  }

  .feature-grid, .course-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-layout, .consult-grid {
    grid-template-columns: 1fr;
  }

  .consult-grid {
    gap: 35px;
  }

}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px,var(--max));
  }

  .brand strong {
    font-size: 15px;
  }

  .btn-small {
    font-size: 12px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .desktop-only {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
  }

  .section {
    padding: 64px 0px;
  }

  .section-heading.split {
    display: block;
  }

  .feature-grid, .course-grid, .facility-grid, .review-grid {
    grid-template-columns: 1fr;
  }

  .facility-item img {
    aspect-ratio: 1.3 / 1;
  }

  .lead-form {
    grid-template-columns: 1fr;
  }

  .field-full {
    grid-column: auto;
  }

  .footer {
    padding-bottom: 84px;
  }

  .footer-inner {
    display: block;
  }

  .footer p {
    margin-top: 15px;
  }

  .mobile-bar {
    display: block;
    position: fixed;
    z-index: 60;
    bottom: 0px;
    left: 0px;
    right: 0px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid rgb(231, 225, 217);
    box-shadow: rgba(20, 32, 51, 0.08) 0px -12px 30px;
  }

  .mobile-bar a {
    text-align: center;
    background: var(--navy);
    color: rgb(255, 255, 255);
    padding: 14px;
    border-radius: 12px;
    font-weight: 900;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

}

body {
  letter-spacing: -0.02em;
}

.eyebrow {
  font-family: Inter, "Noto Sans KR", sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.hero h1 {
  font-weight: 900;
  line-height: 0.98;
}

.hero-sub {
  font-weight: 400;
  letter-spacing: -0.025em;
}

.btn {
  letter-spacing: -0.025em;
}

.btn-primary span, .btn-form span {
  transition: transform 0.2s;
}

.btn:hover span {
  transform: translateX(4px);
}

.why-section {
  overflow: hidden;
}

.why-editorial {
  text-align: center;
  margin: 0px auto 54px;
  position: relative;
}

.why-editorial .eyebrow {
  margin-bottom: 6px;
}

.why-lede {
  margin: 26px 0px 0px;
}

.v2-features {
  border-top: 1px solid rgba(19, 38, 61, 0.12);
  border-bottom: 1px solid rgba(19, 38, 61, 0.12);
}

.v2-features .feature-card {
  position: relative;
}

.feature-no {
  position: absolute;
  font-family: Inter, sans-serif;
  font-weight: 600;
  letter-spacing: -0.06em;
}

.feature-en {
  display: block;
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.v2-features h3 {
  margin: 0px 0px 10px;
  letter-spacing: -0.045em;
}

.v2-features p {
  font-size: 14px;
  color: rgb(109, 115, 123);
}

.course-card {
  overflow: hidden;
}

.course-card img {
  transition: transform 0.5s;
}

.course-card:hover img {
  transform: scale(1.035);
}

.course-index {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(8px);
  color: white;
}

.course-index span {
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 11px;
}

.course-index em {
  font-family: Inter, sans-serif;
  font-size: 8px;
  font-style: normal;
  letter-spacing: 0.14em;
  opacity: 0.7;
}

#facility .section-heading h2 {
  font-family: "Nanum Myeongjo", "Noto Serif CJK KR", serif;
}

.facility-grid {
  grid-auto-rows: 170px;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 10px !important;
}

.facility-item {
  position: relative;
  overflow: hidden;
  height: auto !important;
}

.facility-item:first-child {
  grid-area: span 2 / span 2;
}

.facility-item:nth-child(2) {
  grid-column: span 2;
}

.facility-item img {
  object-fit: cover;
  transition: transform 0.55s;
  height: 100% !important;
}

.facility-item:hover img {
  transform: scale(1.04);
}

.facility-item figcaption {
  background: linear-gradient(transparent, rgba(9, 22, 37, 0.75)) !important;
  padding: 34px 16px 12px !important;
  color: rgb(255, 255, 255) !important;
}

#reviews .section-heading h2 {
  font-family: "Nanum Myeongjo", "Noto Serif CJK KR", serif;
}

.review-card {
  transition: 0.25s;
  padding-top: 42px !important;
}

.review-card::before {
  content: "“";
  position: absolute;
  left: 22px;
  top: 4px;
  font-family: Georgia, serif;
  font-size: 64px;
  color: rgba(160, 121, 82, 0.22);
  line-height: 1;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: rgba(19, 38, 61, 0.08) 0px 20px 40px;
}

.review-card p {
  font-family: "Nanum Myeongjo", "Noto Serif CJK KR", serif;
}

.review-card small {
  font-family: Inter, "Noto Sans KR", sans-serif;
  letter-spacing: 0.08em;
}

.faq-list details {
  transition: background 0.2s, border-color 0.2s;
}

.faq-list details:hover {
  border-color: rgb(215, 198, 177);
}

.faq-list summary {
  font-weight: 600;
  letter-spacing: -0.035em;
}

.consult-copy h2 {
  font-family: "Nanum Myeongjo", "Noto Serif CJK KR", serif;
  line-height: 1.35;
}

.consult-accent {
  color: rgb(231, 202, 164);
}

.consult-benefits {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0px;
  margin: 24px 0px;
}

.consult-benefits li {
  font-size: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 7px 11px;
  color: rgba(255, 255, 255, 0.78);
}

.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus {
  outline: none;
  border-color: rgb(185, 154, 119);
  box-shadow: rgba(185, 154, 119, 0.14) 0px 0px 0px 3px;
}

.form-note {
  font-size: 11px !important;
  color: rgb(139, 144, 151) !important;
}

.mobile-bar a {
  align-items: center;
  justify-content: space-between;
  display: flex !important;
}

@media (max-width: 900px) {
  .v2-features .feature-card:nth-child(3) {
    border-left: 0px;
  }

  .v2-features .feature-card:nth-child(n+3) {
    border-top: 1px solid rgba(19, 38, 61, 0.1);
  }

  .facility-grid {
    grid-template-columns: 1fr 1fr !important;
    grid-auto-rows: 180px;
  }

  .facility-item:first-child {
    grid-area: span 2 / span 2;
  }

  .facility-item:nth-child(2) {
    grid-column: span 1;
  }

}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px,var(--max));
  }

  .v2-features {
    border-bottom: 0px;
    grid-template-columns: 1fr !important;
  }

  .v2-features .feature-card, .v2-features .feature-card + .feature-card {
    border-left: 0px;
    border-top: 1px solid rgba(19, 38, 61, 0.1);
    min-height: auto;
    padding: 24px 18px;
  }

  .v2-features .feature-card:first-child {
    border-top: 0px;
  }

  .facility-grid {
    grid-template-columns: 1fr !important;
    grid-auto-rows: 210px;
  }

  .facility-item:first-child, .facility-item:nth-child(2) {
    grid-area: span 1 / span 1;
  }

}

body {
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Segoe UI", sans-serif;
}

.hero-sub {
  margin-bottom: 20px;
  line-height: 1.75;
}

.point-no {
  grid-row: 1 / 3;
  font-family: Inter, sans-serif;
  padding-top: 3px;
}

.why-lede strong {
  position: relative;
}

.why-lede strong::after {
  content: "";
  position: absolute;
  left: 0px;
  right: 0px;
  background: rgba(181, 141, 100, 0.18);
  transform: rotate(-1deg);
}

.v2-features .feature-card {
  text-align: left;
}

.v2-features h3 {
  font-weight: 800;
}

.v2-features p {
  line-height: 1.8;
}

#courses .section-heading h2 {
  font-family: "Nanum Myeongjo", serif;
  font-size: 40px;
}

#facility .section-heading h2, #reviews .section-heading h2 {
  font-size: 39px;
}

.facility-item::after {
  content: "";
  position: absolute;
  inset: 0px;
  background: linear-gradient(transparent 55%, rgba(8, 20, 35, 0.38));
  pointer-events: none;
}

.facility-item figcaption {
  z-index: 2;
  width: 100%;
  letter-spacing: -0.02em;
  left: 0px !important;
  bottom: 0px !important;
  border-radius: 0px !important;
}

.review-card::before {
  display: none;
}

.faq-list {
  counter-reset: faq 0;
}

.faq-list summary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 23px 38px 23px 6px;
  font-size: 15px;
}

.faq-no {
  font-family: Inter, sans-serif;
  font-size: 9px;
  letter-spacing: 0.12em;
  color: rgb(161, 124, 88);
  min-width: 30px;
}

.faq-list details[open] {
  background: rgb(250, 248, 244);
  padding-left: 14px;
  padding-right: 14px;
}

.faq-list details[open] summary {
  padding-left: 0px;
}

.faq-list details p {
  padding-left: 52px;
  padding-right: 34px;
  line-height: 1.75;
}

.faq-list summary::after {
  top: 20px;
  transition: transform 0.22s;
}

.faq-list details[open] summary::after {
  transform: none;
}

.consult-copy h2 {
  font-size: 44px;
}

.consult-copy > p {
  line-height: 1.8;
}

.lead-form {
  padding: 30px;
  gap: 16px;
}

.field label, .lead-form > label {
  font-size: 12px;
}

.field input, .field select {
  padding: 14px;
}

.btn-form {
  padding: 17px;
  font-size: 15px;
}

.form-note {
  text-align: center;
}

@media (max-width: 900px) {
  #courses .section-heading h2, #facility .section-heading h2, #reviews .section-heading h2 {
    font-size: 33px;
  }

}

@media (max-width: 640px) {
  .v2-features .feature-card {
    text-align: left;
  }

  .faq-list summary {
    font-size: 14px;
  }

  .faq-list details p {
    padding-left: 0px;
    padding-right: 0px;
  }

  .consult-copy h2 {
    font-size: 34px;
  }

  .lead-form {
    padding: 20px;
  }

}

.intent-hint {
  display: none;
  margin: -2px 0px 2px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgb(245, 238, 230);
  color: rgb(109, 89, 69);
  font-size: 12px;
  font-weight: 700;
}

.btn-form:disabled {
  opacity: 0.65;
  cursor: wait;
}

@media (max-width: 640px) {
  .hero-inner {
    padding-top: 48px;
    padding-bottom: 28px;
  }

  .hero-copy {
    padding-top: 0px;
  }

  .hero-sub {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .consult-copy > p {
    margin-bottom: 18px;
  }

  .lead-form {
    gap: 13px;
  }

  .field input, .field select {
    padding: 13px;
  }

}

@keyframes supportPulse { 
  0% { box-shadow: rgba(215, 179, 138, 0.55) 0px 0px 0px 0px; }
  100% { box-shadow: rgba(215, 179, 138, 0) 0px 0px 0px 18px; }
}

.official-brand {
  display: inline-flex;
  flex-direction: column;
  gap: 1px;
  justify-content: center;
  line-height: 1;
  color: var(--navy);
}

.official-brand-ko {
  display: flex;
  align-items: flex-end;
  white-space: nowrap;
  letter-spacing: -0.045em;
}

.official-brand-ko strong {
  font-weight: 900;
  line-height: 1;
}

.official-brand-ko b {
  font-weight: 800;
  line-height: 1.05;
  padding-bottom: 1px;
}

.official-brand-en {
  display: block;
  font-family: Inter, sans-serif;
  font-weight: 700;
  color: rgb(110, 119, 130);
  white-space: nowrap;
}

.official-brand-en em {
  font-style: normal;
  font-weight: 500;
  margin-left: 3px;
  letter-spacing: 0.015em;
}

.footer-brand.official-brand {
  color: rgb(255, 255, 255);
}

.footer-brand .official-brand-en {
  color: rgba(255, 255, 255, 0.58);
}

.footer-brand .official-brand-ko {
  color: rgb(255, 255, 255);
}

.hero-support-inline {
  max-width: 620px;
  margin: -12px 0px 26px;
  line-height: 1.55;
}

.hero-support-inline > span {
  flex: 0 0 auto;
}

.hero-actions {
  margin-bottom: 22px;
}

@media (max-width: 640px) {
  .hero-support-inline {
    margin: -5px 0px 17px;
    max-width: 330px;
  }

  .hero-actions {
    margin-bottom: 14px;
  }

}

:root {
  --radius: 18px;
  --shadow: 0 14px 42px rgba(22,34,49,.065);
  --warm: #b58d64;
  --warm-soft: #f1e7da;
}

.section {
  padding-top: 82px;
  padding-bottom: 82px;
}

.section-soft {
  background: rgb(248, 246, 242);
}

.section-heading h2 {
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.18;
  letter-spacing: -0.055em;
}

.section-heading p:not(.eyebrow) {
  line-height: 1.75;
}

.eyebrow {
  letter-spacing: 0.18em;
}

.btn:hover {
  transform: translateY(-2px);
}

.header-inner {
  height: 78px;
}

.official-brand-ko {
  gap: 8px;
}

.official-brand-ko strong {
  font-size: 22px;
  letter-spacing: -0.055em;
}

.official-brand-ko b {
  font-size: 12px;
  letter-spacing: -0.03em;
}

.official-brand-en {
  font-size: 8px;
  letter-spacing: 0.08em;
  margin-top: 6px;
}

.hero {
  min-height: 660px;
}

.hero-inner {
  min-height: 660px;
}

.hero-copy h1 {
  font-size: clamp(48px, 5.2vw, 78px);
  letter-spacing: -0.07em;
  line-height: 1.02;
}

.hero-copy h1 span {
  font-family: "Noto Serif KR", "Nanum Myeongjo", serif;
  font-weight: 900;
  letter-spacing: -0.075em;
}

.hero-sub {
  color: rgb(94, 102, 113);
}

.hero-actions {
  gap: 10px;
}

.hero-actions .btn {
  padding-left: 22px;
  padding-right: 22px;
}

.hero-points {
  padding-top: 22px;
  border-top: 1px solid rgba(19, 38, 61, 0.12);
}

.hero-points > div {
  padding-right: 24px;
}

.hero-points > div + div {
  border-left: 1px solid rgba(19, 38, 61, 0.1);
  padding-left: 24px;
}

.point-no {
  letter-spacing: 0.16em;
}

.why-section {
  padding-top: 96px;
  padding-bottom: 90px;
}

.why-lede strong::after {
  height: 3px;
  bottom: -5px;
}

.v2-features {
  border-color: rgba(19, 38, 61, 0.11);
}

.v2-features h3 {
  font-family: "Noto Serif KR", "Nanum Myeongjo", serif;
}

.v2-features .feature-card:hover {
  background: rgb(255, 255, 255);
}

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

.course-card {
  position: relative;
  grid-template-columns: 43% 57%;
  min-height: 270px;
  transition: 0.24s;
  display: grid !important;
}

.course-card:nth-child(2), .course-card:nth-child(3) {
  background: rgb(251, 250, 247);
}

.course-card:hover {
  transform: translateY(-4px);
  border-color: rgb(215, 203, 187);
}

.course-card img {
  min-height: 270px;
  object-fit: cover;
  height: 100% !important;
  aspect-ratio: auto !important;
}

.course-body {
  display: flex;
  flex-direction: column;
}

.course-body h3 {
  font-family: "Noto Serif KR", "Nanum Myeongjo", serif;
  line-height: 1.35;
  margin-bottom: 10px;
}

.course-body p {
  font-size: 13px;
  line-height: 1.75;
  min-height: auto;
  margin-bottom: 16px;
}

.tags {
  gap: 5px;
}

.tags span {
  background: transparent;
  border: 1px solid rgb(228, 221, 212);
  padding: 4px 7px;
}

.course-index {
  left: 14px;
  top: 14px;
  background: rgba(13, 28, 47, 0.86);
}

.facility-item figcaption {
  box-shadow: rgba(20, 30, 40, 0.08) 0px 4px 16px;
}

.review-grid {
  grid-template-columns: 1.35fr 0.82fr 0.82fr;
  gap: 14px;
  align-items: stretch;
}

.review-card {
  min-height: 250px;
  padding: 28px 26px;
  box-shadow: none;
  position: relative;
  overflow: hidden;
}

.review-card:first-child {
  color: rgb(255, 255, 255);
  border-color: rgb(19, 38, 61);
  min-height: 310px;
  background: rgb(19, 38, 61) !important;
}

.review-card:first-child::after {
  content: "“";
  position: absolute;
  right: 18px;
  bottom: -45px;
  font-family: Georgia, serif;
  font-size: 190px;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
}

.review-card:first-child small {
  color: rgb(217, 196, 170);
}

.review-card:first-child p {
  font-family: "Noto Serif KR", "Nanum Myeongjo", serif;
  line-height: 1.85;
  color: rgb(255, 255, 255);
}

.review-card:not(:first-child) {
  border-style: solid;
  background: rgb(255, 255, 255) !important;
}

.review-card p {
  font-size: 14px;
  line-height: 1.8;
}

.faq-layout {
  grid-template-columns: 320px 1fr;
  gap: 82px;
}

.faq-list details[open] {
  border-radius: 10px;
}

.consult {
  padding: 82px 0px;
}

.lead-form {
  border-radius: 16px;
}

.field input, .field select {
  border-radius: 7px;
}

.btn-form {
  border-radius: 8px;
}

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

  .course-card {
    grid-template-columns: 40% 60%;
    min-height: 245px;
  }

  .course-card img {
    min-height: 245px;
  }

  .review-grid {
    grid-template-columns: 1fr 1fr;
  }

  .review-card:first-child {
    grid-column: 1 / -1;
  }

}

@media (max-width: 640px) {
  .section {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .header-inner {
    height: 68px;
  }

  .official-brand-ko strong {
    font-size: 19px;
  }

  .official-brand-ko b {
    font-size: 11px;
  }

  .hero {
    min-height: 590px;
  }

  .hero-inner {
    min-height: 590px;
  }

  .hero-copy h1 {
    font-size: 43px;
  }

  .hero-copy h1 span {
    font-size: 1em;
  }

  .why-section {
    padding-top: 72px;
  }

  .course-card {
    grid-template-columns: 122px 1fr;
    min-height: 190px;
  }

  .course-card img {
    min-height: 190px;
  }

  .course-body p {
    font-size: 12px;
    line-height: 1.65;
  }

  .tags {
    display: none;
  }

  .course-index {
    left: 7px;
    top: 7px;
  }

  .course-index em {
    display: none;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .review-card:first-child {
    grid-column: auto;
    min-height: 270px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

}

.why-editorial::after {
  content: "THE ART PET";
  position: absolute;
  right: -68px;
  top: 52%;
  font-family: Inter, sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.28em;
  color: rgba(19, 38, 61, 0.27);
  transform: rotate(90deg);
  transform-origin: center center;
}

@media (max-width: 900px) {
  .why-editorial::after {
    display: none;
  }

}

@media (max-width: 640px) {
  .why-editorial .eyebrow {
    text-align: left;
  }

  .why-lede {
    text-align: left;
  }

}

:root {
  --navy: #122941;
  --navy-deep: #0b1d31;
  --gold: #b68d62;
  --sand: #ead9c2;
  --paper-warm: #fbf8f3;
}

body {
  background: rgb(255, 255, 255);
  color: rgb(23, 34, 51);
}

[id] {
  scroll-margin-top: 94px;
}

.btn {
  min-height: 44px;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s, color 0.18s, border-color 0.18s;
  border-radius: 11px !important;
}

.btn-primary {
  box-shadow: rgba(18, 41, 65, 0.16) 0px 12px 28px;
}

.btn-primary:hover {
  box-shadow: rgba(18, 41, 65, 0.22) 0px 16px 34px;
}

.btn-small {
  white-space: nowrap;
  padding: 10px 18px !important;
  border-radius: 9px !important;
}

.site-header {
  background: rgba(255, 255, 255, 0.94);
}

.header-inner {
  gap: 24px !important;
}

.desktop-nav {
  gap: 22px !important;
  font-size: 12.5px !important;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-left: 0px;
}

.header-quick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid rgba(18, 41, 65, 0.5);
  border-radius: 9px;
  font-size: 12px;
  font-weight: 800;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
  transition: 0.18s;
}

.header-quick:hover {
  background: var(--navy);
  color: rgb(255, 255, 255);
  border-color: var(--navy);
  transform: translateY(-1px);
}

.header-quick span {
  font-family: Inter, sans-serif;
  font-size: 12px;
}

.hero-copy {
  max-width: 610px;
}

.hero h1 {
  letter-spacing: -0.065em !important;
}

.hero-sub {
  max-width: 550px;
}

.hero-support-inline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  color: rgb(111, 118, 128);
  margin-top: 13px !important;
  font-size: 11.5px !important;
}

.hero-support-inline > span {
  font-weight: 800;
  color: rgb(57, 70, 87);
}

.why-editorial {
  max-width: 900px !important;
  margin-bottom: 42px !important;
}

.why-lede {
  margin-top: 16px !important;
  font-family: "Noto Sans KR", sans-serif !important;
  font-size: 16px !important;
  line-height: 1.85 !important;
  color: rgb(104, 113, 123) !important;
}

.why-lede strong {
  font-weight: 800 !important;
  color: rgb(29, 42, 58) !important;
}

.v2-features {
  border: 0px !important;
  gap: 12px !important;
  background: transparent !important;
}

.v2-features .feature-card {
  min-height: 214px !important;
  padding: 26px 23px 27px !important;
  border: 1px solid rgb(233, 227, 218) !important;
  border-radius: 14px !important;
  background: rgb(255, 255, 255) !important;
  box-shadow: rgba(24, 34, 46, 0.035) 0px 10px 30px !important;
}

.v2-features .feature-card + .feature-card {
  border-left: 1px solid rgb(233, 227, 218) !important;
}

.v2-features .feature-card:hover {
  transform: translateY(-4px);
  box-shadow: rgba(24, 34, 46, 0.07) 0px 18px 38px !important;
}

.feature-no {
  right: 17px !important;
  top: 14px !important;
  font-size: 31px !important;
  color: rgba(18, 41, 65, 0.08) !important;
}

.feature-en {
  margin-bottom: 40px !important;
  color: rgb(164, 125, 88) !important;
}

.v2-features h3 {
  font-size: 20px !important;
}

.section-heading.split {
  align-items: flex-end;
}

.course-grid {
  gap: 14px !important;
}

.course-card {
  border-radius: 15px !important;
  box-shadow: rgba(20, 31, 45, 0.043) 0px 8px 24px !important;
  border-color: rgb(233, 227, 218) !important;
}

.course-card:hover {
  box-shadow: rgba(20, 31, 45, 0.09) 0px 20px 44px !important;
}

.course-body {
  padding: 23px 23px 22px !important;
}

.course-body h3 {
  font-size: 21px !important;
}

.course-body p {
  color: rgb(113, 121, 131) !important;
}

.course-index {
  border-radius: 8px !important;
  padding: 6px 9px !important;
}

.facility-item {
  border-radius: 12px !important;
  box-shadow: none !important;
}

.facility-item figcaption {
  font-size: 11px !important;
  font-weight: 700 !important;
}

.review-card {
  border-radius: 14px !important;
}

.review-card:first-child p {
  font-size: 19px !important;
}

.review-card:not(:first-child) {
  box-shadow: none !important;
}

.faq-list details {
  border-radius: 0px !important;
  border-left: 0px !important;
  border-right: 0px !important;
}

.faq-list details:first-child {
  border-top: 1px solid rgb(229, 223, 215) !important;
}

.faq-list details:hover {
  background: rgb(252, 250, 247) !important;
}

.consult {
  background: linear-gradient(115deg, rgb(14, 34, 56), rgb(23, 50, 79) 72%, rgb(16, 40, 63)) !important;
}

.lead-form {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 20px 55px !important;
}

.consult-benefits li {
  border-radius: 7px !important;
}

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 15px !important;
    font-size: 12px !important;
  }

  .header-quick {
    display: none;
  }

}

@media (max-width: 900px) {
  .desktop-nav {
    display: none !important;
  }

  .header-actions {
    margin-left: auto;
  }

  .v2-features {
    grid-template-columns: repeat(2, 1fr) !important;
  }

}

@media (max-width: 640px) {
  .btn {
    border-radius: 10px !important;
  }

  .header-actions .btn-small {
    font-size: 11.5px !important;
    padding: 9px 12px !important;
  }

  .hero-support-inline {
    display: block;
    line-height: 1.65;
    margin-top: 9px !important;
  }

  .hero-support-inline > span {
    display: block;
    margin-bottom: 2px;
  }

  .why-editorial {
    text-align: left !important;
    margin-bottom: 30px !important;
  }

  .v2-features {
    grid-template-columns: 1fr !important;
    gap: 9px !important;
  }

  .v2-features .feature-card {
    min-height: auto !important;
    padding: 21px 20px !important;
  }

  .feature-en {
    margin-bottom: 24px !important;
  }

}

.hero-points {
  max-width: 680px !important;
  margin-top: 8px !important;
}

.hero-points > div {
  grid-template-columns: 38px 1fr !important;
  column-gap: 10px !important;
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

.point-no {
  font-size: 12px !important;
  font-weight: 900 !important;
  color: rgb(155, 113, 76) !important;
}

.hero-points b {
  font-size: 16px !important;
  line-height: 1.35 !important;
  letter-spacing: -0.035em !important;
}

.hero-points small {
  font-size: 12.5px !important;
  line-height: 1.5 !important;
  margin-top: 3px !important;
  color: rgb(105, 113, 123) !important;
}

#reviews {
  overflow: hidden;
}

#reviews .section-heading.split {
  align-items: flex-end;
}

.review-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.review-position {
  margin-right: 6px;
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgb(141, 129, 117);
}

.review-position b {
  color: var(--navy);
  font-size: 12px;
}

.review-arrow {
  width: 39px;
  height: 39px;
  border: 1px solid rgba(19, 38, 61, 0.32);
  border-radius: 50%;
  background: rgb(255, 255, 255);
  color: var(--navy);
  font-size: 16px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: 0.18s;
}

.review-arrow:hover {
  background: var(--navy);
  color: rgb(255, 255, 255);
  border-color: var(--navy);
}

.review-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

#reviews .review-grid {
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
  display: flex !important;
  gap: 14px !important;
  padding: 3px 0px 22px !important;
}

#reviews .review-grid::-webkit-scrollbar {
  display: none;
}

#reviews .review-grid.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
}

@media (max-width: 640px) {
  .hero-points {
    display: none !important;
  }

  .review-position {
    display: none;
  }

  .review-arrow {
    width: 36px;
    height: 36px;
  }

}

.exam-section {
  position: relative;
  background: rgb(255, 255, 255);
  padding-top: 90px;
  padding-bottom: 90px;
  overflow: hidden;
}

.exam-section::before {
  content: "";
  position: absolute;
  inset: 0px;
  background: linear-gradient(135deg, rgba(239, 226, 206, 0.36), rgba(255, 255, 255, 0) 48%);
  pointer-events: none;
}

.exam-wrap {
  position: relative;
  z-index: 1;
}

.exam-heading {
  display: grid;
  grid-template-columns: minmax(0px, 1fr) minmax(280px, 0.62fr);
  gap: 46px;
  align-items: end;
  margin-bottom: 38px;
}

.exam-heading h2 {
  margin: 5px 0px 12px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.12;
  letter-spacing: -0.06em;
  color: var(--navy);
}

.exam-heading .exam-lede {
  margin: 0px;
  max-width: 690px;
  color: rgb(104, 112, 123);
  font-size: 15px;
  line-height: 1.85;
}

.exam-aside {
  padding: 18px 20px;
  border-left: 2px solid rgb(197, 162, 124);
  color: rgb(93, 101, 112);
  font-size: 13px;
  line-height: 1.8;
  background: rgba(255, 255, 255, 0.7);
}

.exam-aside strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
  margin-bottom: 3px;
}

.exam-board {
  border: 1px solid rgb(223, 215, 205);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  overflow: hidden;
  box-shadow: rgba(26, 39, 54, 0.067) 0px 18px 54px;
}

.exam-board-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  background: var(--navy);
  color: rgb(255, 255, 255);
}

.exam-board-head .next-label {
  font-family: Inter, sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 800;
  color: rgb(230, 210, 184);
}

.exam-board-head strong {
  font-size: 15px;
  letter-spacing: -0.02em;
}

.exam-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0px, 1fr));
  background: rgb(255, 255, 255);
}

.exam-card {
  position: relative;
  padding: 28px 26px 27px;
  min-height: 250px;
  border-right: 1px solid rgb(232, 225, 216);
  display: flex;
  flex-direction: column;
}

.exam-card:last-child {
  border-right: 0px;
}

.exam-card.is-focus {
  background: linear-gradient(160deg, rgb(245, 238, 228), rgb(255, 255, 255) 72%);
}

.exam-card.is-focus::after {
  content: "NEXT";
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: Inter, sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: rgb(141, 106, 73);
  border: 1px solid rgb(200, 173, 141);
  border-radius: 999px;
  padding: 5px 8px;
  background: rgb(255, 255, 255);
}

.exam-status {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: rgb(243, 240, 235);
  color: rgb(115, 121, 130);
  margin-bottom: 15px;
}

.exam-status.upcoming {
  background: rgb(238, 227, 213);
  color: rgb(125, 95, 64);
}

.exam-card .exam-round {
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: rgb(155, 122, 88);
  margin-bottom: 7px;
}

.exam-card h3 {
  margin: 0px 0px 18px;
  font-size: 18px;
  line-height: 1.45;
  letter-spacing: -0.045em;
  color: var(--navy);
}

.exam-date {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--navy);
}

.exam-date b {
  font-family: Inter, "Noto Sans KR", sans-serif;
  font-size: 30px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.exam-date span {
  font-size: 12px;
  color: rgb(122, 129, 138);
}

.exam-meta {
  margin-top: auto;
  display: grid;
  gap: 8px;
}

.exam-meta div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 8px;
  border-top: 1px solid rgb(239, 235, 230);
  font-size: 11px;
  color: rgb(123, 129, 137);
}

.exam-meta strong {
  font-weight: 700;
  color: rgb(62, 70, 80);
  text-align: right;
}

.exam-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 25px 26px;
  border-top: 1px solid rgb(232, 225, 216);
  background: rgb(251, 250, 248);
}

.exam-foot-copy strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
  letter-spacing: -0.04em;
  margin-bottom: 5px;
}

.exam-foot-copy p {
  margin: 0px;
  color: rgb(112, 119, 128);
  font-size: 12px;
  line-height: 1.7;
}

.exam-foot .btn {
  flex: 0 0 auto;
  padding: 13px 18px;
  border-radius: 10px;
}

.exam-source {
  margin: 15px 2px 0px;
  color: rgb(139, 144, 151);
  font-size: 10px;
  line-height: 1.7;
}

.exam-source b {
  color: rgb(105, 113, 123);
  font-weight: 700;
}

@media (max-width: 900px) {
  .exam-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .exam-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .exam-aside {
    max-width: 680px;
  }

  .exam-cards {
    grid-template-columns: 1fr;
  }

  .exam-card {
    min-height: 0px;
    border-right: 0px;
    border-bottom: 1px solid rgb(232, 225, 216);
  }

  .exam-card:last-child {
    border-bottom: 0px;
  }

  .exam-foot {
    align-items: flex-start;
    flex-direction: column;
  }

  .exam-foot .btn {
    width: 100%;
  }

}

@media (max-width: 600px) {
  .exam-section {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .exam-heading h2 {
    font-size: 34px;
  }

  .exam-board {
    border-radius: 16px;
  }

  .exam-board-head {
    padding: 17px 18px;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .exam-card {
    padding: 23px 20px;
  }

  .exam-date b {
    font-size: 28px;
  }

  .exam-foot {
    padding: 21px 20px;
  }

  .exam-aside {
    padding: 14px 16px;
    font-size: 12px;
  }

}

.discovery-cta {
  scroll-behavior: smooth;
}

.hero-support-inline {
  gap: 7px !important;
}

.course-detail {
  margin-top: 16px;
  padding: 17px 16px;
  background: rgb(248, 245, 241);
  border: 1px solid rgb(238, 229, 219);
  border-radius: 11px;
  animation: 0.24s ease 0s 1 normal both running courseDetailIn;
}

.course-detail[hidden] {
  display: none !important;
}

.course-detail-label {
  font-family: Inter, sans-serif;
  font-size: 8px;
  letter-spacing: 0.18em;
  font-weight: 800;
  color: rgb(160, 124, 89);
}

.course-detail ul {
  margin: 11px 0px 10px;
  padding: 0px;
  list-style: none;
  display: grid;
  gap: 8px;
}

.course-detail li {
  position: relative;
  padding-left: 14px;
  color: rgb(65, 74, 85);
  font-size: 12.5px;
  line-height: 1.55;
}

.course-detail li::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0.63em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgb(170, 136, 104);
}

.course-detail small {
  display: block;
  padding-top: 9px;
  border-top: 1px solid rgb(231, 221, 210);
  color: rgb(146, 150, 155);
  font-size: 10.5px;
  line-height: 1.55;
}

.course-more {
  width: 100%;
  margin-top: 17px;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 13px;
  border: 1px solid rgba(18, 41, 65, 0.42);
  border-radius: 10px;
  background: rgb(255, 255, 255);
  color: var(--navy);
  font-style: inherit;
  font-variant: inherit;
  font-stretch: inherit;
  line-height: inherit;
  font-family: inherit;
  font-optical-sizing: inherit;
  font-size-adjust: inherit;
  font-kerning: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  font-language-override: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.18s;
}

.course-more:hover {
  background: var(--navy);
  color: rgb(255, 255, 255);
  border-color: var(--navy);
  transform: translateY(-1px);
}

.course-more-icon {
  font-family: Inter, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s;
}

.course-more[aria-expanded="true"] .course-more-icon {
  transform: rotate(45deg);
}

.course-card.is-detail-open {
  box-shadow: rgba(19, 38, 61, 0.11) 0px 22px 52px;
}

@keyframes courseDetailIn { 
  0% { opacity: 0; transform: translateY(-5px); }
  100% { opacity: 1; transform: none; }
}

@media (max-width: 760px) {
  .course-detail {
    padding: 15px 14px;
  }

  .course-more {
    min-height: 44px;
  }

}

:root {
  --coral: #eb735d;
  --coral-deep: #cf5a46;
  --coral-soft: #fbe5df;
  --coral-pale: #fff6f2;
  --v17-navy: #102c46;
  --v17-navy-2: #173955;
  --v17-ink: #122a42;
  --v17-cream: #fbf7f1;
  --v17-beige: #e9d5c2;
}

.v24 {
  background: rgb(255, 255, 255);
  color: var(--v17-ink);
}

.v24 *, .v24 ::before, .v24 ::after {
  box-sizing: border-box;
}

.v24 .section h2, .v24 .section h3, .v24 .hero h1, .v24 .consult h2 {
  word-break: keep-all;
  overflow-wrap: normal;
}

.v24 .eyebrow {
  letter-spacing: 0.18em;
  font-weight: 800;
}

.v24 .eyebrow:not(.light), .v24 .feature-no, .v24 .course-index span, .v24 .audience-no, .v24 .process-no, .v24 .stars {
  color: var(--coral);
}

.v24 .btn {
  border-radius: 10px;
  box-shadow: none;
  letter-spacing: -0.02em;
}

.v24 .btn-primary {
  background: var(--v17-navy);
  border-color: var(--v17-navy);
}

.v24 .btn-primary:hover {
  background: var(--coral-deep);
  border-color: var(--coral-deep);
  transform: translateY(-2px);
}

.v24 .site-header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(16, 44, 70, 0.08);
  backdrop-filter: blur(16px);
}

.v24 .site-header .btn {
  border-radius: 8px;
}

.v24 .v17-brand strong {
  letter-spacing: -0.035em;
}

.v24 .hero {
  background: linear-gradient(90deg, rgb(252, 249, 244) 0%, rgb(255, 250, 245) 39%, rgba(255, 255, 255, 0.08) 65%);
  overflow: hidden;
}

.v24 .hero::after {
  content: "";
  position: absolute;
  inset: auto auto 0px 0px;
  width: 52%;
  height: 3px;
  background: linear-gradient(90deg,var(--coral),transparent);
  opacity: 0.7;
}

.v24 .hero-inner {
  align-items: center;
}

.v24 .hero-copy {
  width: min(600px, 52%);
}

.v24 .hero-kicker {
  align-items: center;
  gap: 8px;
}

.v24 .hero h1 {
  font-family: "Noto Serif KR", serif;
  font-size: clamp(48px, 4.7vw, 76px);
  line-height: 1.13;
  letter-spacing: -0.065em;
  margin: 0px 0px 22px;
  font-weight: 900;
}

.v24 .hero h1 .hero-small-line {
  font-size: 0.56em;
  font-family: "Noto Sans KR", sans-serif;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.v24 .hero h1 span:last-child {
  position: relative;
  display: inline-block;
}

.v24 .hero h1 span:last-child::after {
  content: "";
  position: absolute;
  left: 1%;
  right: 5%;
  height: 8px;
  bottom: -11px;
  background: linear-gradient(90deg,var(--coral),#f49a84 65%,transparent);
  border-radius: 70% 30% 50% 40%;
  transform: rotate(-1.2deg);
  opacity: 0.9;
}

.v24 .hero-sub {
  color: rgb(71, 91, 108);
}

.v24 .hero-actions {
  gap: 10px;
}

.v24 .hero-actions .btn {
  min-height: 50px;
  padding: 0px 22px;
  font-size: 14px;
  font-weight: 800;
}

.v24 .hero-support-inline {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  max-width: 100%;
  color: rgb(70, 91, 107);
  text-decoration: none;
  margin: 2px 0px 27px;
  padding: 4px 0px;
  border-bottom: 1px solid rgba(235, 115, 93, 0.32);
}

.v24 .hero-support-inline b {
  color: var(--v17-navy);
}

.v24 .support-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--coral-soft);
  color: var(--coral-deep);
  font-weight: 900;
  flex: 0 0 auto;
}

.v24 .hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0px;
  border-top: 1px solid rgba(16, 44, 70, 0.12);
}

.v24 .hero-points > div {
  border-left: 1px solid rgba(16, 44, 70, 0.1);
  min-width: 0px;
}

.v24 .hero-points > div:first-child {
  padding-left: 0px;
  border-left: 0px;
}

.v24 .hero-points .point-no {
  font-family: "Noto Serif KR", serif;
  font-size: 18px;
  font-weight: 900;
  color: var(--coral);
  display: block;
  margin-bottom: 6px;
}

.v24 .hero-points b {
  display: block;
  font-size: 14px;
  line-height: 1.45;
  word-break: keep-all;
}

.v24 .hero-points small {
  display: block;
  font-size: 11.5px;
  line-height: 1.5;
  color: rgb(112, 128, 142);
  margin-top: 4px;
  word-break: keep-all;
}

.v24 .why-section {
  background: linear-gradient(rgb(255, 255, 255) 0%, rgb(255, 250, 246) 100%);
}

.v24 .why-editorial {
  display: grid;
  grid-template-columns: minmax(0px, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 55px;
}

.v24 .why-editorial > .eyebrow {
  grid-column: 1 / -1;
}

.v24 .v17-why-title {
  position: relative;
  display: inline-block;
  width: max-content;
  max-width: 100%;
}

.v24 .v17-why-title > span {
  font-family: "Nanum Brush Script", cursive;
  line-height: 0.88;
  color: var(--v17-navy);
  letter-spacing: -0.065em;
  white-space: nowrap;
  display: block;
  transform: rotate(-1.6deg);
  text-shadow: .3px .3px 0 var(--v17-navy);
}

.v24 .v17-why-title .why-swipe {
  position: absolute;
  left: 2%;
  width: 96%;
  height: 38px;
  overflow: visible;
}

.v24 .v17-why-title .why-swipe path {
  fill: none;
  stroke: var(--coral);
  stroke-width: 9;
  stroke-linecap: round;
  opacity: 0.9;
}

.v24 .v17-why-title .why-swipe path.ghost {
  stroke: rgb(245, 179, 163);
  stroke-width: 4;
  opacity: 0.5;
}

.v24 .why-lede {
  font-family: "Noto Serif KR", serif;
  font-size: 18px;
  margin: 0px 0px 3px;
  color: rgb(83, 99, 114);
  word-break: keep-all;
}

.v24 .why-lede strong {
  color: var(--v17-navy);
  font-weight: 800;
}

.v24 .feature-grid.v2-features {
  grid-template-columns: repeat(4, 1fr);
}

.v24 .feature-card {
  border: 1px solid rgba(16, 44, 70, 0.07);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: rgba(16, 44, 70, 0.04) 0px 10px 32px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.v24 .feature-card::after {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 0px;
  height: 3px;
  background: var(--coral);
  transition: width 0.3s;
}

.v24 .feature-card:hover::after {
  width: 100%;
}

.v24 .feature-card:hover {
  transform: translateY(-3px);
  box-shadow: rgba(16, 44, 70, 0.08) 0px 16px 38px;
}

.v24 .feature-no {
  font-family: "Noto Serif KR", serif;
  font-weight: 900;
  font-size: 28px !important;
}

.v24 .feature-en {
  letter-spacing: 0.13em;
  font-size: 9px !important;
  color: rgb(164, 147, 132) !important;
}

.v24 .feature-card h3 {
  margin-top: 16px;
}

.v24 .section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.v24 .section-heading h2 {
  letter-spacing: -0.055em;
}

.v24 .section-heading > div > p:not(.eyebrow) {
  font-size: 14px;
}

.v24 #courses {
  background: rgb(255, 255, 255);
}

.v24 #courses .course-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0px, 1fr));
}

.v24 .v17-course-card {
  display: flex;
  flex-direction: column;
  min-width: 0px;
  border: 1px solid rgba(16, 44, 70, 0.09);
  border-radius: 12px;
  overflow: hidden;
  background: rgb(255, 255, 255);
  box-shadow: rgba(16, 44, 70, 0.043) 0px 12px 30px;
  position: relative;
}

.v24 .v17-course-card:hover {
  transform: translateY(-3px);
  box-shadow: rgba(16, 44, 70, 0.08) 0px 16px 38px;
}

.v24 .v17-course-card .course-index {
  position: absolute;
  z-index: 3;
  left: 16px;
  top: 15px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(7px);
  border-radius: 8px;
  padding: 7px 10px;
  line-height: 1;
  box-shadow: rgba(16, 44, 70, 0.06) 0px 5px 16px;
}

.v24 .v17-course-card .course-index span {
  font-family: "Noto Serif KR", serif;
  font-size: 25px;
  font-weight: 900;
  display: block;
}

.v24 .v17-course-card .course-index em {
  font-size: 8px;
  letter-spacing: 0.13em;
  color: rgb(111, 123, 132);
  font-style: normal;
}

.v24 .v17-course-card > img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.v24 .v17-course-card .course-body {
  display: flex;
  flex-direction: column;
}

.v24 .v17-course-card h3 {
  font-size: 17px;
  line-height: 1.4;
  margin-bottom: 9px;
  word-break: keep-all;
}

.v24 .v17-course-card .course-body > p {
  font-size: 12.5px;
  line-height: 1.7;
  color: rgb(98, 113, 125);
  min-height: 44px;
}

.v24 .v17-course-card .tags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin: 11px 0px 13px;
}

.v24 .v17-course-card .tags span {
  font-size: 10px;
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--coral-pale);
  border: 1px solid rgb(246, 209, 199);
  color: rgb(123, 89, 79);
}

.v24 .v17-outline-btn {
  width: 100%;
  margin-top: auto !important;
  min-height: 41px !important;
  border: 1px solid var(--v17-navy) !important;
  border-radius: 8px !important;
  background: rgb(255, 255, 255) !important;
  color: var(--v17-navy) !important;
  font-size: 12.5px !important;
  font-weight: 800 !important;
  padding: 0px 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
  transition: 0.2s !important;
}

.v24 .v17-outline-btn:hover, .v24 .v17-outline-btn[aria-expanded="true"] {
  background: var(--v17-navy) !important;
  color: rgb(255, 255, 255) !important;
}

.v24 .v17-course-card .course-detail {
  border-top: 1px solid rgba(16, 44, 70, 0.08);
  padding-top: 14px;
  margin-top: 4px;
}

.v24 .v17-course-card .course-detail-label {
  color: var(--coral-deep);
  font-size: 9px;
  letter-spacing: 0.14em;
}

.v24 .v17-course-card .course-detail li {
  font-size: 11.5px;
  line-height: 1.65;
}

.v24 .v17-course-card .course-detail small {
  font-size: 9.5px;
  line-height: 1.55;
}

.v24 .exam-section {
  background: linear-gradient(rgb(255, 250, 246), rgb(255, 255, 255));
}

.v24 .exam-heading h2 {
  word-break: keep-all;
}

.v24 .exam-board {
  border-radius: 14px;
  border: 1px solid rgba(16, 44, 70, 0.08);
  box-shadow: rgba(16, 44, 70, 0.04) 0px 14px 38px;
}

.v24 .exam-board-head .next-label, .v24 .exam-status {
  color: var(--coral-deep);
}

.v24 .exam-card {
  border-radius: 10px;
  position: relative;
}

.v24 .exam-card:nth-child(3) {
  border-color: rgba(235, 115, 93, 0.55);
  box-shadow: inset 0 3px 0 var(--coral),0 10px 24px rgba(235,115,93,.08);
}

.v24 .exam-card:nth-child(3)::before {
  content: "NEXT";
  position: absolute;
  right: 14px;
  top: 14px;
  background: var(--coral);
  color: rgb(255, 255, 255);
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.v24 #facility {
  background: rgb(255, 255, 255);
}

.v24 .facility-item {
  border-radius: 10px;
  overflow: hidden;
}

.v24 .facility-item figcaption {
  background: linear-gradient(transparent, rgba(8, 31, 49, 0.8));
  padding-top: 38px;
}

.v24 #reviews {
  background: rgb(251, 248, 244);
  overflow: hidden;
}

.v24 #reviews .section-heading {
  align-items: end;
}

.v24 .review-grid {
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
  display: flex !important;
  gap: 11px !important;
  overflow-x: auto !important;
  padding: 4px 2px 18px !important;
}

.v24 .review-grid::-webkit-scrollbar {
  display: none;
}

.v24 .review-card p {
  font-family: "Noto Serif KR", serif;
  font-size: 13px !important;
  line-height: 1.75 !important;
  color: rgb(50, 72, 90) !important;
}

.v24 .review-arrow {
  width: 44px !important;
  height: 44px !important;
  border-color: rgba(16, 44, 70, 0.25) !important;
}

.v24 .review-arrow:hover {
  border-color: var(--coral) !important;
  color: var(--coral) !important;
}

.v24 .review-position {
  font-size: 12px !important;
}

.v24 .consult {
  background: linear-gradient(105deg, rgb(15, 43, 69) 0%, rgb(23, 58, 86) 72%, rgb(30, 64, 89) 100%);
  position: relative;
  overflow: hidden;
}

.v24 .consult::before {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  border: 1px solid rgba(235, 115, 93, 0.17);
  left: -160px;
  top: -160px;
}

.v24 .consult::after {
  content: "";
  position: absolute;
  right: 4%;
  bottom: -90px;
  width: 360px;
  height: 180px;
  background: radial-gradient(circle, rgba(235, 115, 93, 0.13), transparent 70%);
  pointer-events: none;
}

.v24 .consult-script {
  transform: rotate(-1.1deg);
  font-family: "Nanum Brush Script", cursive !important;
  font-size: 40px !important;
  line-height: 1 !important;
  color: rgb(255, 157, 134) !important;
  margin: 0px 0px 12px !important;
}

.v24 .consult-accent {
  color: rgb(255, 255, 255) !important;
}

.v24 .lead-form {
  border-radius: 13px !important;
  box-shadow: rgba(0, 0, 0, 0.17) 0px 18px 50px !important;
}

.v24 .lead-form input:focus, .v24 .lead-form select:focus {
  border-color: var(--coral) !important;
  box-shadow: rgba(235, 115, 93, 0.12) 0px 0px 0px 3px !important;
}

.v24 .lead-form input[type="checkbox"] {
  accent-color: var(--coral);
}

.v24 .btn-form {
  background: var(--v17-navy) !important;
  border-radius: 8px !important;
}

.v24 .btn-form:hover {
  background: var(--coral-deep) !important;
}

@media (max-width: 1180px) {
  .v24 #courses .course-grid {
    grid-template-columns: repeat(2, minmax(0px, 1fr));
  }

  .v24 .why-editorial {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .v24 .why-lede {
    max-width: 650px;
  }

}

@media (max-width: 760px) {
  .v24 .section, .v24 .why-section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .v24 .section-heading h2, .v24 .exam-heading h2, .v24 .consult h2 {
    word-break: keep-all !important;
    overflow-wrap: normal !important;
  }

  .v24 .hero {
    padding-bottom: 0px;
    background: rgb(252, 248, 243);
  }

  .v24 .hero-inner {
    align-items: flex-start;
    padding-top: 78px;
  }

  .v24 .hero-copy {
    width: 100%;
    position: relative;
    z-index: 3;
  }

  .v24 .hero h1 {
    font-size: 41px;
    line-height: 1.13;
    max-width: 95%;
  }

  .v24 .hero h1 .hero-small-line {
    font-size: 0.62em;
  }

  .v24 .hero h1 span:last-child::after {
    height: 5px;
    bottom: -7px;
  }

  .v24 .hero-sub {
    max-width: 94%;
  }

  .v24 .desktop-only {
    display: none;
  }

  .v24 .hero-actions {
    gap: 8px;
  }

  .v24 .hero-actions .btn {
    min-height: 46px;
    padding: 0px 11px;
    font-size: 12.5px;
    white-space: nowrap;
  }

  .v24 .hero-support-inline {
    line-height: 1.45;
    border-bottom: 0px;
    background: rgba(255, 255, 255, 0.72);
    padding: 8px 10px;
    border-radius: 9px;
    width: 100%;
  }

  .v24 .support-icon {
    width: 25px;
    height: 25px;
  }

  .v24 .hero-points {
    display: none;
  }

  .v24 .why-editorial {
    display: block;
  }

  .v24 .v17-why-title {
    width: 100%;
  }

  .v24 .v17-why-title > span {
    white-space: normal;
    line-height: 0.93;
    word-break: keep-all;
  }

  .v24 .v17-why-title .why-swipe {
    height: 28px;
  }

  .v24 .why-lede {
    font-size: 14px;
  }

  .v24 .feature-grid.v2-features {
    grid-template-columns: repeat(2, minmax(0px, 1fr));
  }

  .v24 .feature-no {
    font-size: 23px !important;
  }

  .v24 #courses .section-heading.split {
    display: flex;
    gap: 12px;
  }

  .v24 #courses .course-grid {
    grid-template-columns: 1fr;
  }

  .v24 .v17-course-card {
    display: grid;
    grid-template-columns: 118px minmax(0px, 1fr);
    align-items: stretch;
    overflow: visible;
  }

  .v24 .v17-course-card > img {
    grid-area: 1 / 1;
    min-height: 205px;
    border-radius: 11px 0px 0px 11px;
  }

  .v24 .v17-course-card .course-index {
    left: 9px;
    top: 10px;
    padding: 5px 7px;
  }

  .v24 .v17-course-card .course-index span {
    font-size: 20px;
  }

  .v24 .v17-course-card .course-body {
    grid-area: 1 / 2;
    display: flex;
  }

  .v24 .v17-course-card h3 {
    font-size: 15px;
    line-height: 1.4;
    margin-right: 2px;
  }

  .v24 .v17-course-card .course-body > p {
    font-size: 11.5px;
    line-height: 1.58;
    min-height: auto;
  }

  .v24 .v17-course-card .tags {
    margin: 8px 0px 9px;
  }

  .v24 .v17-course-card .tags span {
    font-size: 9px;
    padding: 4px 6px;
  }

  .v24 .v17-outline-btn {
    font-size: 11px !important;
    min-height: 38px !important;
  }

  .v24 .v17-course-card:has(.course-more[aria-expanded="true"]) {
    grid-template-columns: 1fr;
  }

  .v24 .v17-course-card:has(.course-more[aria-expanded="true"]) > img {
    grid-area: 1 / 1;
    height: 180px;
    min-height: 180px;
    border-radius: 11px 11px 0px 0px;
  }

  .v24 .v17-course-card:has(.course-more[aria-expanded="true"]) .course-body {
    grid-area: 2 / 1;
    min-height: auto;
    padding: 17px 15px 15px;
  }

  .v24 .v17-course-card .course-detail li {
    font-size: 11px;
  }

  .v24 .exam-heading {
    display: block;
  }

  .v24 .exam-aside {
    margin-top: 16px;
  }

  .v24 .exam-board {
    padding-bottom: 14px;
  }

  .v24 .exam-cards {
    overflow-x: auto;
    gap: 10px;
    scroll-snap-type: x mandatory;
    margin: 0px -15px;
    scrollbar-width: none;
    display: flex !important;
    padding: 4px 15px 12px !important;
  }

  .v24 .exam-cards::-webkit-scrollbar {
    display: none;
  }

  .v24 .exam-card {
    flex: 0 0 84%;
    scroll-snap-align: start;
  }

  .v24 .facility-grid {
    grid-template-columns: repeat(2, minmax(0px, 1fr)) !important;
    grid-auto-rows: 135px !important;
  }

  .v24 .facility-item {
    grid-area: auto !important;
    height: auto !important;
    min-height: 0px !important;
  }

  .v24 .facility-item:first-child {
    grid-area: auto / 1 / auto / -1 !important;
    height: 235px !important;
  }

  .v24 .facility-item:nth-child(6) {
    display: none !important;
  }

  .v24 .facility-item img {
    height: 100% !important;
    object-fit: cover !important;
  }

  .v24 .facility-item figcaption {
    padding: 24px 9px 8px !important;
  }

  .v24 #reviews .section-heading.split {
    display: flex;
    align-items: flex-end;
    gap: 8px;
  }

  .v24 #reviews .section-heading > div {
    min-width: 0px;
  }

  .v24 #reviews .section-heading h2 {
    font-size: 28px;
  }

  .v24 .review-controls {
    margin-left: auto;
    align-items: center;
    gap: 5px;
    flex: 0 0 auto;
    display: flex !important;
  }

  .v24 .review-position {
    margin-right: 3px;
    display: inline-flex !important;
    font-size: 10.5px !important;
  }

  .v24 .review-arrow {
    width: 44px !important;
    height: 44px !important;
  }

  .v24 .consult-script {
    word-break: keep-all;
  }

}

@media (max-width: 390px) {
  .v24 .hero h1 {
    font-size: 38px;
  }

  .v24 .feature-grid.v2-features {
    grid-template-columns: 1fr 1fr;
  }

}

.v24 #why, .v24 #courses, .v24 #exam-schedule, .v24 #audience, .v24 #process, .v24 #facility, .v24 #reviews, .v24 #faq, .v24 #consult {
  scroll-margin-top: 90px;
}

@media (min-width: 1181px) {
  .v24 .why-editorial {
    grid-template-columns: minmax(0px, 1.62fr) minmax(260px, 0.58fr);
    gap: 34px;
  }

  .v24 .v17-why-title {
    width: 100%;
    min-width: 0px;
  }

  .v24 .v17-why-title > span {
    letter-spacing: -0.07em;
    white-space: nowrap;
  }

  .v24 .why-lede {
    font-size: 16px;
    align-self: end;
    padding-bottom: 4px;
  }

}

.v24 .mobile-bar {
  transition: transform 0.28s, opacity 0.28s;
}

.v24 .mobile-bar.is-hidden {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 760px) {
  .v24 .mobile-bar a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

}

.v24 .section, .v24 #reviews, .v24 #facility, .v24 #faq {
  padding-top: 60px;
  padding-bottom: 60px;
}

.v24 .section-heading h2 {
  font-size: clamp(28px, 2.85vw, 40px);
  line-height: 1.2;
}

.v24 .section-heading p:not(.eyebrow) {
  max-width: 620px;
}

.v24 .hero {
  min-height: 640px;
}

.v24 .hero-inner {
  min-height: 640px;
}

.v24 .hero-copy {
  padding-top: 16px;
}

.v24 .hero h1 {
  margin-bottom: 18px;
}

.v24 .hero-sub {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.v24 .hero-actions {
  margin-bottom: 14px;
}

.v24 .hero-support-inline {
  font-size: 12px;
  margin-bottom: 22px;
}

.v24 .hero-points {
  padding-top: 12px;
  max-width: 575px;
}

.v24 .hero-points > div {
  padding: 0px 12px;
}

.v24 .v17-why-title > span {
  font-size: clamp(58px, 6.5vw, 98px);
}

.v24 #courses .course-grid {
  gap: 12px;
}

.v24 .v17-course-card > img {
  height: 176px;
}

.v24 .v17-course-card .course-body {
  min-height: 248px;
  padding: 16px 16px 15px;
}

.v24 .exam-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.v24 .facility-grid {
  gap: 10px !important;
}

.v24 .faq-list {
  margin-top: 6px;
}

.v24 .faq-list details {
  margin-bottom: 8px;
}

.v24 .consult {
  padding-top: 70px;
  padding-bottom: 72px;
}

.v24 .consult-grid {
  gap: 24px;
}

.v24 .consult-copy h2 {
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.2;
}

.v24 .consult-copy > p:not(.eyebrow):not(.consult-script) {
  font-size: 14px;
  line-height: 1.8;
}

@media (max-width: 900px) {
  .v24 .hero-inner {
    display: block;
  }

  .v24 .hero-copy {
    padding-top: 0px;
  }

  .v24 .hero-sub {
    font-size: 15px;
    line-height: 1.65;
    max-width: none;
  }

  .v24 .hero-actions {
    gap: 8px;
  }

  .v24 .hero-actions .btn {
    min-height: 46px;
    padding: 0px 14px;
    font-size: 13px;
  }

  .v24 .hero-support-inline {
    display: flex;
    width: 100%;
    font-size: 12px;
    line-height: 1.45;
    padding-bottom: 5px;
  }

  .v24 .hero-points {
    max-width: none;
  }

  .v24 .hero-points > div:first-child {
    padding-top: 0px;
    border-top: 0px;
  }

  .v24 .section, .v24 .exam-section, .v24 .consult {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .v24 .why-editorial {
    gap: 18px;
  }

  .v24 .v17-why-title > span {
    font-size: min(18vw, 72px);
    white-space: normal;
    line-height: 0.95;
  }

  .v24 .v17-why-title .why-swipe {
    height: 28px;
  }

  .v24 .why-lede {
    font-size: 15px;
  }

  .v24 .feature-no {
    font-size: 22px !important;
  }

  .v24 .feature-card h3 {
    margin-top: 10px;
  }

  .v24 #courses .section-heading.split, .v24 #reviews .section-heading.split {
    display: block;
  }

  .v24 .v17-course-card {
    border-radius: 11px;
  }

  .v24 .v17-course-card > img {
    height: 158px;
  }

  .v24 .v17-course-card .course-body {
    min-height: auto;
    padding: 15px 15px 14px;
  }

  .v24 .exam-section {
    overflow: hidden;
  }

  .v24 #reviews .section-heading h2, #facility .section-heading h2, #faq .section-heading h2 {
    font-size: 28px;
  }

  .v24 .review-controls {
    margin-top: 12px;
  }

  .v24 .review-arrow {
    width: 42px;
    height: 42px;
  }

  .v24 .facility-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }

  .v24 .facility-item:first-child {
    grid-area: auto / 1 / auto / -1 !important;
  }

  .v24 .facility-item img {
    height: 100% !important;
  }

  .v24 .facility-item figcaption {
    font-size: 12px !important;
    padding: 22px 12px 10px !important;
  }

  .v24 .faq-list details summary {
    padding: 16px 18px;
    font-size: 14px;
  }

  .v24 .faq-list details p {
    padding: 0px 18px 16px;
    font-size: 13px;
    line-height: 1.65;
  }

  .v24 .consult-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .v24 .consult-copy {
    order: 1;
  }

  .v24 .lead-form {
    order: 2;
  }

  .v24 .consult-copy h2 {
    font-size: 30px;
  }

  .v24 .consult-benefits {
    gap: 8px;
  }

  .v24 .mobile-bar {
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  }

  .v24 .mobile-bar a {
    min-height: 50px;
    border-radius: 12px;
    font-size: 14px;
    justify-content: center;
  }

}

.v24 .hero-copy, .v24 .hero-copy * {
  box-sizing: border-box;
}

@media (min-width: 901px) {
  .v24 .hero {
    min-height: 650px;
  }

  .v24 .hero-inner {
    min-height: 650px;
  }

  .v24 .hero-copy {
    width: 47% !important;
    max-width: 570px !important;
    padding-right: 28px !important;
  }

  .v24 .hero h1 {
    font-size: clamp(46px, 4.25vw, 66px) !important;
    line-height: 1.12 !important;
    max-width: 560px !important;
  }

  .v24 .hero-sub {
    max-width: 520px !important;
  }

  .v24 #courses .course-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0px, 1fr)) !important;
    gap: 18px !important;
    align-items: stretch !important;
  }

  .v24 #courses .v17-course-card {
    display: grid !important;
    grid-template-columns: minmax(210px, 41%) minmax(0px, 59%) !important;
    grid-template-rows: auto !important;
    min-height: 292px !important;
    width: 100% !important;
    overflow: hidden !important;
  }

  .v24 #courses .v17-course-card > img {
    grid-area: 1 / 1 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 292px !important;
    object-fit: cover !important;
    border-radius: 0px !important;
  }

  .v24 #courses .v17-course-card .course-body {
    grid-area: 1 / 2 !important;
    min-width: 0px !important;
    min-height: 292px !important;
    padding: 24px 22px 20px !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .v24 #courses .v17-course-card h3 {
    font-size: 20px !important;
    line-height: 1.4 !important;
    margin: 2px 0px 10px !important;
  }

  .v24 #courses .v17-course-card .course-body > p {
    min-height: auto !important;
    font-size: 13.5px !important;
    line-height: 1.72 !important;
    margin-bottom: 4px !important;
  }

  .v24 #courses .v17-course-card .tags {
    margin: 12px 0px !important;
  }

  .v24 #courses .v17-course-card .course-more {
    margin-top: auto !important;
  }

  .v24 #courses .v17-course-card .course-detail {
    margin-top: 10px !important;
  }

}

@media (max-width: 900px) {
  .v24 .hero {
    display: flex !important;
    flex-direction: column !important;
    min-height: 0px !important;
    padding-top: 0px !important;
    overflow: hidden !important;
    background: rgb(255, 250, 245) !important;
  }

  .v24 .hero-inner {
    order: 1 !important;
    min-height: 0px !important;
    padding-top: 82px !important;
    padding-bottom: 30px !important;
  }

  .v24 .hero-copy {
    width: 100% !important;
    max-width: none !important;
    padding-right: 0px !important;
  }

  .v24 .hero h1 {
    font-size: clamp(39px, 10vw, 51px) !important;
    line-height: 1.12 !important;
    max-width: 100% !important;
    margin-bottom: 18px !important;
  }

  .v24 .hero-points {
    grid-template-columns: repeat(3, minmax(0px, 1fr)) !important;
    gap: 0px !important;
    border-top: 1px solid rgba(16, 44, 70, 0.1) !important;
    padding-top: 13px !important;
    margin-top: 4px !important;
  }

  .v24 .hero-points > div {
    border-top: 0px !important;
    border-left: 1px solid rgba(16, 44, 70, 0.09) !important;
    padding: 0px 8px !important;
  }

  .v24 .hero-points > div:first-child {
    border-left: 0px !important;
    padding-left: 0px !important;
  }

  .v24 .hero-points .point-no {
    font-size: 17px !important;
    margin-bottom: 4px !important;
  }

  .v24 .hero-points b {
    font-size: 12px !important;
    line-height: 1.4 !important;
  }

  .v24 .hero-points small {
    font-size: 10.5px !important;
    line-height: 1.4 !important;
  }

  .v24 #courses .course-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .v24 #courses .v17-course-card, .v24 #courses .v17-course-card:has(.course-more[aria-expanded="true"]) {
    display: block !important;
    width: 100% !important;
    min-height: 0px !important;
    grid-template-columns: none !important;
    overflow: hidden !important;
  }

  .v24 #courses .v17-course-card > img, .v24 #courses .v17-course-card:has(.course-more[aria-expanded="true"]) > img {
    display: block !important;
    width: 100% !important;
    height: 198px !important;
    min-height: 198px !important;
    object-fit: cover !important;
    border-radius: 0px !important;
  }

  .v24 #courses .v17-course-card .course-body, .v24 #courses .v17-course-card:has(.course-more[aria-expanded="true"]) .course-body {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    min-height: 0px !important;
    padding: 18px 17px 16px !important;
  }

  .v24 #courses .v17-course-card h3 {
    font-size: 18px !important;
    line-height: 1.4 !important;
    margin-bottom: 8px !important;
  }

  .v24 #courses .v17-course-card .course-body > p {
    min-height: 0px !important;
    font-size: 13.5px !important;
    line-height: 1.68 !important;
  }

  .v24 #courses .v17-course-card .tags {
    margin: 10px 0px !important;
  }

  .v24 #courses .v17-course-card .course-detail {
    margin-top: 10px !important;
    padding: 14px 13px !important;
  }

  .v24 #courses .v17-course-card .course-detail li {
    font-size: 12px !important;
  }

  .v24 #courses .v17-course-card .course-more {
    margin-top: 10px !important;
  }

  .v24 .facility-grid {
    grid-auto-rows: 140px !important;
  }

  .v24 .facility-item:first-child {
    height: 205px !important;
  }

}

@media (max-width: 520px) {
  .v24 .hero-actions .btn {
    font-size: 12.5px !important;
    padding: 0px 10px !important;
  }

  .v24 .hero-points b {
    font-size: 11.5px !important;
  }

  .v24 .hero-points small {
    display: none !important;
  }

  .v24 #courses .v17-course-card > img, .v24 #courses .v17-course-card:has(.course-more[aria-expanded="true"]) > img {
    height: 184px !important;
    min-height: 184px !important;
  }

}

@media (min-width: 901px) {
  .v24 .why-editorial {
    display: block !important;
    text-align: center !important;
    max-width: 980px !important;
    margin: 0px auto 38px !important;
  }

  .v24 .v17-why-title {
    display: inline-block !important;
    width: auto !important;
    max-width: 100% !important;
  }

  .v24 .why-lede {
    max-width: 620px !important;
    margin: 38px auto 0px !important;
    text-align: center !important;
    font-size: 17px !important;
  }

}

@media (max-width: 900px) {
  .v24 .hero-copy {
    padding-bottom: 0px !important;
  }

  .v24 .hero-points {
    display: none !important;
    margin: 0px !important;
    padding: 0px !important;
  }

}

.v24 .hero-actions {
  display: flex !important;
  grid-template-columns: none !important;
}

.v24 .hero-actions .btn-primary {
  min-width: 220px;
}

@media (min-width: 901px) {
  .v24 .hero-actions {
    margin-bottom: 20px !important;
  }

  .v24 .hero-points {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0px, 1fr)) !important;
    max-width: 555px !important;
    gap: 0px !important;
    padding-top: 15px !important;
    margin-top: 2px !important;
  }

  .v24 .hero-points > div {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    min-width: 0px !important;
    min-height: 98px !important;
    padding: 0px 18px !important;
  }

  .v24 .hero-points > div:first-child {
    padding-left: 0px !important;
  }

  .v24 .hero-points .point-no {
    display: block !important;
    margin: 0px 0px 7px !important;
    font-size: 16px !important;
    line-height: 1 !important;
    letter-spacing: 0.04em !important;
  }

  .v24 .hero-points b {
    display: block !important;
    margin: 0px 0px 5px !important;
    font-size: 14px !important;
    line-height: 1.42 !important;
    letter-spacing: -0.035em !important;
    word-break: keep-all !important;
  }

  .v24 .hero-points small {
    display: block !important;
    margin: 0px !important;
    font-size: 11px !important;
    line-height: 1.5 !important;
    color: rgb(117, 129, 139) !important;
    word-break: keep-all !important;
  }

}

.v24 .why-section {
  padding-top: 62px !important;
}

.v24 .why-editorial {
  margin-bottom: 26px !important;
}

.v24 .why-editorial > .eyebrow {
  margin-bottom: 8px !important;
}

.v24 .v17-why-title .why-swipe {
  bottom: -17px !important;
}

.v24 .why-lede {
  margin-top: 30px !important;
  line-height: 1.68 !important;
}

.v24 .feature-grid.v2-features {
  gap: 12px !important;
  align-items: stretch !important;
}

.v24 .feature-card {
  display: grid !important;
  grid-template-columns: minmax(0px, 1fr) auto !important;
  grid-template-rows: 28px 42px 1fr !important;
  gap: 10px 12px !important;
  min-height: 205px !important;
  padding: 22px 22px 21px !important;
  align-content: start !important;
}

.v24 .feature-card .feature-en {
  grid-area: 1 / 1 !important;
  align-self: center !important;
  margin: 0px !important;
  font-size: 9px !important;
  line-height: 1 !important;
  letter-spacing: 0.12em !important;
}

.v24 .feature-card .feature-no {
  grid-area: 1 / 2 !important;
  align-self: start !important;
  margin: 0px !important;
  font-size: 24px !important;
  line-height: 1 !important;
  color: rgba(207, 90, 70, 0.42) !important;
}

.v24 .feature-card h3 {
  grid-area: 2 / 1 / auto / -1 !important;
  align-self: end !important;
  margin: 0px !important;
  min-height: 0px !important;
  font-size: 17px !important;
  line-height: 1.35 !important;
  letter-spacing: -0.035em !important;
}

.v24 .feature-card p {
  grid-area: 3 / 1 / auto / -1 !important;
  align-self: start !important;
  margin: 0px !important;
  min-height: 3.4em !important;
  font-size: 13px !important;
  line-height: 1.7 !important;
  color: rgb(102, 115, 125) !important;
  word-break: keep-all !important;
}

@media (max-width: 900px) {
  .v24 .hero-actions {
    display: block !important;
  }

  .v24 .hero-actions .btn-primary {
    width: 100% !important;
    min-width: 0px !important;
  }

  .v24 .why-section {
    padding-top: 44px !important;
  }

  .v24 .why-editorial {
    margin-bottom: 22px !important;
  }

  .v24 .why-lede {
    margin-top: 25px !important;
  }

  .v24 .feature-grid.v2-features {
    grid-template-columns: 1fr 1fr !important;
    gap: 9px !important;
  }

  .v24 .feature-card {
    grid-template-rows: 24px auto 1fr !important;
    row-gap: 8px !important;
    min-height: 188px !important;
    padding: 17px 15px 16px !important;
  }

  .v24 .feature-card .feature-no {
    font-size: 20px !important;
  }

  .v24 .feature-card .feature-en {
    font-size: 8px !important;
  }

  .v24 .feature-card h3 {
    font-size: 15px !important;
    line-height: 1.35 !important;
  }

  .v24 .feature-card p {
    font-size: 12.5px !important;
    line-height: 1.62 !important;
    min-height: 0px !important;
  }

}

.v24 .hero-kicker {
  display: block !important;
  color: var(--coral-deep) !important;
  font-size: 11px !important;
  letter-spacing: 0.22em !important;
  font-weight: 900 !important;
  margin-bottom: 14px !important;
}

.v24 .hero-kicker::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--coral);
  vertical-align: middle;
  margin: 0px 9px 2px 0px;
  border-radius: 999px;
}

.v24 #courses .section-heading.split {
  align-items: flex-end;
}

@media (max-width: 420px) {
  .v24 .feature-grid.v2-features {
    grid-template-columns: repeat(2, minmax(0px, 1fr)) !important;
    gap: 8px !important;
  }

  .v24 .feature-card {
    min-height: 176px !important;
    padding: 15px 13px 14px !important;
  }

  .v24 .feature-card .feature-en {
    font-size: 7.5px !important;
    letter-spacing: 0.1em !important;
  }

  .v24 .feature-card .feature-no {
    font-size: 19px !important;
  }

  .v24 .feature-card h3 {
    font-size: 14px !important;
    line-height: 1.35 !important;
    margin-top: 10px !important;
  }

  .v24 .feature-card p {
    font-size: 11.7px !important;
    line-height: 1.58 !important;
  }

}

.v24 .why-section {
  padding-bottom: 52px !important;
}

.v24 #why .feature-grid.v2-features {
  gap: 11px !important;
}

.v24 #why .feature-card {
  min-height: 168px !important;
  grid-template-rows: 22px 30px auto !important;
  row-gap: 8px !important;
  padding: 18px 19px 17px !important;
}

.v24 #why .feature-card .feature-en {
  font-size: 8.5px !important;
  letter-spacing: 0.12em !important;
}

.v24 #why .feature-card .feature-no {
  font-size: 22px !important;
  color: rgba(207, 90, 70, 0.48) !important;
}

.v24 #why .feature-card h3 {
  font-size: 18px !important;
  line-height: 1.28 !important;
  align-self: center !important;
}

.v24 #why .feature-card p {
  font-size: 13.5px !important;
  line-height: 1.58 !important;
  min-height: 0px !important;
  color: rgb(95, 108, 119) !important;
}

@media (max-width: 900px) {
  .v24 #why .feature-grid.v2-features {
    grid-template-columns: repeat(2, minmax(0px, 1fr)) !important;
    gap: 9px !important;
  }

  .v24 #why .feature-card {
    min-height: 158px !important;
    grid-template-rows: 20px auto auto !important;
    row-gap: 7px !important;
    padding: 15px 14px 14px !important;
  }

  .v24 #why .feature-card .feature-en {
    font-size: 7.5px !important;
  }

  .v24 #why .feature-card .feature-no {
    font-size: 19px !important;
  }

  .v24 #why .feature-card h3 {
    font-size: 15.5px !important;
    line-height: 1.28 !important;
    margin: 0px !important;
  }

  .v24 #why .feature-card p {
    font-size: 12.5px !important;
    line-height: 1.52 !important;
  }

}

@media (max-width: 520px) {
  .v24 #why .feature-card {
    grid-template-rows: 18px auto auto !important;
  }

  .v24 #why .feature-card .feature-en {
    display: none !important;
  }

  .v24 #why .feature-card .feature-no {
    grid-column: 1 / -1 !important;
    justify-self: start !important;
    font-size: 18px !important;
  }

  .v24 #why .feature-card p {
    line-height: 1.48 !important;
  }

}

.v24 #courses .course-grid {
  align-items: stretch;
}

.v24 #courses .petfood-course {
  grid-column: 1 / -1;
  overflow: hidden;
  border: 1px solid rgba(16, 44, 70, 0.1);
  border-radius: 14px;
  background: rgb(255, 255, 255);
  box-shadow: rgba(16, 44, 70, 0.05) 0px 12px 32px;
  margin-top: 3px;
  display: grid !important;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0px, 1.55fr) !important;
  min-height: 286px !important;
}

.v24 #courses .petfood-course:hover {
  transform: translateY(-3px);
  box-shadow: rgba(16, 44, 70, 0.09) 0px 18px 42px;
}

.v24 #courses .petfood-body {
  display: flex;
  flex-direction: column;
  padding: 28px 30px 24px !important;
  min-height: 286px !important;
}

.v24 .petfood-heading-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 8px;
}

.v24 .petfood-kicker {
  display: block;
  font: 800 10px / 1.2 Inter, sans-serif;
  letter-spacing: 0.18em;
  color: var(--coral-deep);
  margin-bottom: 8px;
}

.v24 #courses .petfood-body h3 {
  line-height: 1.25;
  font-size: 26px !important;
  margin: 0px !important;
}

.v24 #courses .petfood-body > p {
  line-height: 1.75;
  margin: 4px 0px 0px;
  color: rgb(91, 109, 123);
  font-size: 14px !important;
  min-height: auto !important;
}

.v24 .petfood-badge {
  flex: 0 0 auto;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--coral-pale);
  border: 1px solid rgb(245, 210, 201);
  color: var(--coral-deep);
  font: 800 9px / 1 Inter, sans-serif;
  letter-spacing: 0.08em;
}

.v24 #courses .petfood-body .tags {
  margin: 13px 0px 15px;
}

.v24 #courses .petfood-body .course-more {
  margin-top: auto !important;
  max-width: 260px;
}

.v24 #courses .petfood-course.is-detail-open {
  grid-template-columns: minmax(260px, 0.72fr) minmax(0px, 1.55fr) !important;
}

.v24 #courses .petfood-course.is-detail-open .course-detail {
  margin-top: 2px;
  margin-bottom: 12px;
}

@media (max-width: 900px) {
  .v24 #courses .petfood-course, .v24 #courses .petfood-course.is-detail-open {
    grid-template-columns: 1fr !important;
    min-height: 0px !important;
  }

  .v24 #courses .petfood-body {
    min-height: 0px !important;
    padding: 18px 16px 15px !important;
  }

  .v24 .petfood-heading-row {
    gap: 8px;
    margin-bottom: 4px;
  }

  .v24 #courses .petfood-body h3 {
    font-size: 20px !important;
  }

  .v24 .petfood-badge {
    font-size: 8px;
    padding: 6px 8px;
  }

  .v24 #courses .petfood-body > p {
    font-size: 13.5px !important;
    line-height: 1.65;
  }

  .v24 #courses .petfood-body .course-more {
    max-width: none;
    margin-top: 8px !important;
  }

}

@media (max-width: 760px) {
  .v24 .hero-actions .btn-primary {
    min-height: 48px !important;
    font-size: 14px !important;
    padding: 0px 16px !important;
  }

  .v24 #why .feature-card {
    min-height: 148px !important;
  }

  .v24 #why .feature-card h3 {
    font-size: 16px !important;
    line-height: 1.3 !important;
  }

  .v24 #why .feature-card p {
    font-size: 13px !important;
    line-height: 1.55 !important;
  }

  .v24 #courses .v17-outline-btn, .v24 #courses .course-more {
    min-height: 42px !important;
    font-size: 13px !important;
  }

  .v24 #courses .tags span {
    font-size: 10.5px !important;
    line-height: 1.2 !important;
  }

  .v24 .exam-card {
    min-height: 260px !important;
  }

  .v24 .faq-list details summary {
    font-size: 15px !important;
    line-height: 1.5 !important;
  }

  .v24 .consult-script {
    font-size: 29px !important;
    line-height: 1.05 !important;
    margin-bottom: 10px !important;
  }

  .v24 .field label, .v24 .lead-form > label {
    font-size: 13px !important;
  }

  .v24 .facility-item figcaption {
    font-size: 12.5px !important;
  }

}

@media (max-width: 520px) {
  .v24 .hero-actions .btn-primary {
    font-size: 14px !important;
  }

  .v24 #why .feature-grid.v2-features {
    grid-template-columns: repeat(2, minmax(0px, 1fr)) !important;
    gap: 9px !important;
  }

  .v24 #why .feature-card {
    min-height: 148px !important;
    padding: 14px 12px 13px !important;
  }

  .v24 #why .feature-card h3 {
    font-size: 15.5px !important;
  }

  .v24 #why .feature-card p {
    font-size: 13px !important;
  }

}

@media (max-width: 360px) {
  .v24 #why .feature-grid.v2-features {
    gap: 7px !important;
  }

  .v24 #why .feature-card {
    padding: 13px 11px 12px !important;
  }

  .v24 #why .feature-card h3 {
    font-size: 15px !important;
  }

  .v24 #why .feature-card p {
    font-size: 12.7px !important;
  }

}

@media (max-width: 520px) {
  .v24 .v17-why-title {
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
  }

  .v24 .v17-why-title > span {
    font-size: clamp(42px, 12vw, 50px) !important;
    line-height: 0.98 !important;
    white-space: nowrap !important;
    letter-spacing: -0.07em !important;
    transform: none !important;
  }

}

@media (max-width: 370px) {
  .v24 .v17-why-title > span {
    font-size: 43px !important;
  }

}

.v27 #reviews .review-grid {
  align-items: flex-start !important;
  gap: 16px !important;
  padding: 8px 4px 24px !important;
}

.v27 .review-lightbox {
  position: fixed;
  inset: 0px;
  z-index: 9999;
  display: none;
  place-items: center;
  padding: 24px;
}

.v27 .review-lightbox.is-open {
  display: grid;
}

.v27 .review-lightbox-backdrop {
  position: absolute;
  inset: 0px;
  border: 0px;
  background: rgba(6, 18, 31, 0.78);
  backdrop-filter: blur(5px);
  cursor: zoom-out;
}

.v27 .review-lightbox-panel {
  position: relative;
  z-index: 1;
  max-width: min(92vw, 760px);
  max-height: 90vh;
  display: grid;
  place-items: center;
}

.v27 .review-lightbox-panel img {
  display: block;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.38) 0px 24px 80px;
  background: rgb(255, 255, 255);
  width: auto !important;
  max-width: 100% !important;
  max-height: 86vh !important;
  height: auto !important;
}

.v27 .review-lightbox-close {
  position: absolute;
  right: -12px;
  top: -12px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgb(255, 255, 255);
  color: var(--navy);
  font-size: 26px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 8px 24px;
}

.v27.review-lightbox-open {
  overflow: hidden;
}

@media (max-width: 700px) {
  .v27 #reviews .review-grid {
    gap: 12px !important;
    padding-left: 1px !important;
    padding-right: 1px !important;
  }

  .v27 .review-lightbox {
    padding: 14px;
  }

  .v27 .review-lightbox-panel {
    max-width: 94vw;
  }

  .v27 .review-lightbox-close {
    right: -4px;
    top: -12px;
    width: 40px;
    height: 40px;
  }

}

.review-lightbox-panel img {
  background: rgb(255, 255, 255);
  object-fit: contain !important;
  max-width: min(92vw, 900px) !important;
  max-height: 86vh !important;
  width: auto !important;
  height: auto !important;
}

#reviews .review-grid {
  align-items: flex-start !important;
  overflow: auto visible !important;
}

.lead-success-modal {
  position: fixed;
  inset: 0px;
  z-index: 12000;
  display: none;
  place-items: center;
  padding: 22px;
}

.lead-success-modal.is-open {
  display: grid;
}

.lead-success-backdrop {
  position: absolute;
  inset: 0px;
  background: rgba(8, 22, 38, 0.66);
  backdrop-filter: blur(6px);
}

.lead-success-card {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  padding: 34px 28px 28px;
  border-radius: 20px;
  background: rgb(255, 255, 255);
  box-shadow: rgba(5, 18, 32, 0.3) 0px 28px 90px;
  text-align: center;
}

.lead-success-icon {
  width: 68px;
  height: 68px;
  margin: 0px auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgb(238, 247, 242);
  color: rgb(29, 122, 82);
  font-size: 34px;
  font-weight: 900;
}

.lead-success-card h3 {
  margin: 0px 0px 10px;
  color: rgb(19, 38, 61);
  font-size: 26px;
  line-height: 1.3;
}

.lead-success-card p {
  margin: 0px;
  color: rgb(97, 106, 117);
  font-size: 15px;
  line-height: 1.75;
  word-break: keep-all;
}

.lead-success-branch {
  padding: 13px 14px;
  border-radius: 10px;
  background: rgb(247, 243, 237);
  font-weight: 800;
  margin: 18px 0px 20px !important;
  color: rgb(19, 38, 61) !important;
}

.lead-success-close {
  width: 100%;
  min-height: 50px;
  border: 0px;
  border-radius: 10px;
  background: rgb(19, 38, 61);
  color: rgb(255, 255, 255);
  font-weight: 800;
  cursor: pointer;
}

.lead-form.is-submitted {
  border-color: rgba(29, 122, 82, 0.32) !important;
  box-shadow: rgba(29, 122, 82, 0.07) 0px 0px 0px 4px !important;
}

.lead-form.is-submitted #formNote {
  color: rgb(29, 122, 82) !important;
  font-weight: 800 !important;
}

.lead-form.is-submitted #submitLeadBtn {
  background: rgb(29, 122, 82) !important;
  border-color: rgb(29, 122, 82) !important;
  color: rgb(255, 255, 255) !important;
}

@media (max-width: 600px) {
  .lead-success-card {
    padding: 30px 20px 22px;
    border-radius: 16px;
  }

  .lead-success-card h3 {
    font-size: 23px;
  }

  .lead-success-card p {
    font-size: 14px;
  }

}

@media (max-width: 700px) {
  #why .feature-grid.v2-features {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0px, 1fr)) !important;
    gap: 10px !important;
    align-items: stretch !important;
  }

  #why .feature-card {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    min-width: 0px !important;
    min-height: 148px !important;
    height: auto !important;
    padding: 15px 14px 14px !important;
    overflow: hidden !important;
  }

  #why .feature-card .feature-en {
    display: none !important;
  }

  #why .feature-card .feature-no {
    position: static !important;
    display: block !important;
    width: auto !important;
    height: auto !important;
    margin: 0px 0px 10px !important;
    padding: 0px !important;
    font-size: 20px !important;
    line-height: 1 !important;
    color: rgb(207, 116, 93) !important;
    opacity: 0.9 !important;
    transform: none !important;
  }

  #why .feature-card h3 {
    position: static !important;
    margin: 0px 0px 8px !important;
    padding: 0px !important;
    font-size: 15px !important;
    line-height: 1.42 !important;
    letter-spacing: -0.03em !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
  }

  #why .feature-card p {
    position: static !important;
    margin: 0px !important;
    padding: 0px !important;
    font-size: 12.5px !important;
    line-height: 1.62 !important;
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
  }

  #why .v17-why-title {
    overflow: visible !important;
  }

  #why .v17-why-title > span {
    display: block !important;
    max-width: 100% !important;
    /* Keep the complete Korean heading inside narrow mobile screens. */
    font-size: clamp(28px, 9vw, 52px) !important;
    overflow-wrap: anywhere !important;
    line-height: 1.02 !important;
    white-space: normal !important;
    word-break: keep-all !important;
  }

}

@media (max-width: 360px) {
  #why .feature-grid.v2-features {
    gap: 8px !important;
  }

  #why .feature-card {
    padding: 14px 12px 13px !important;
    min-height: 152px !important;
  }

  #why .feature-card h3 {
    font-size: 14.5px !important;
  }

  #why .feature-card p {
    font-size: 12px !important;
  }

}

#facility .facility-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0px, 1fr)) !important;
  gap: 14px !important;
  grid-auto-rows: auto !important;
  align-items: start !important;
}

#facility .facility-item, #facility .facility-item:first-child {
  position: relative !important;
  display: block !important;
  grid-area: auto !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0px !important;
  margin: 0px !important;
  overflow: hidden !important;
  border-radius: 14px !important;
  background: rgb(246, 242, 236) !important;
}

#facility .facility-item img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16 / 10 !important;
  object-fit: cover !important;
  position: static !important;
  transform: none !important;
}

#facility .facility-item figcaption {
  position: static !important;
  display: block !important;
  padding: 12px 14px !important;
  background: rgb(255, 255, 255) !important;
  color: rgb(19, 38, 61) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
}

@media (max-width: 700px) {
  #facility .facility-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  #facility .facility-item, #facility .facility-item:first-child {
    height: auto !important;
    min-height: 0px !important;
  }

  #facility .facility-item img {
    aspect-ratio: 16 / 9 !important;
    height: auto !important;
  }

  #facility .facility-item figcaption {
    font-size: 13.5px !important;
    padding: 11px 13px !important;
  }

}

#courses .petfood-photo {
  position: relative;
  min-width: 0px;
  overflow: hidden;
  background: rgb(247, 243, 237);
  min-height: 286px;
}

#courses .petfood-photo img {
  display: block;
  position: absolute;
  inset: 0px;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  transform: none !important;
}

@media (max-width: 700px) {
  #courses .petfood-photo {
    min-height: 0px;
    aspect-ratio: 4 / 3;
  }

  body.v24 #why .feature-card {
    height: auto !important;
    min-width: 0px !important;
  }

  body.v24 #why .feature-card h3 {
    line-height: 1.5 !important;
  }

  body.v24 #why .v17-why-title > span {
    line-height: 1.2 !important;
  }

}

body.v24 #why .feature-heading {
  display: flex;
  align-items: baseline;
  gap: 10px;
  text-align: left;
  min-width: 0px;
}

body.v24 #why .feature-heading .feature-no {
  flex: 0 0 auto;
  position: static !important;
  display: block !important;
  width: auto !important;
  height: auto !important;
  margin: 0px !important;
  padding: 0px !important;
  font-size: 20px !important;
  line-height: 1.5 !important;
  letter-spacing: 0px !important;
  transform: none !important;
  color: rgb(201, 111, 88) !important;
}

body.v24 #why .feature-heading h3 {
  flex: 1 1 0%;
  min-width: 0px;
  position: static !important;
  margin: 0px !important;
  padding: 0px !important;
  text-align: left !important;
  line-height: 1.5 !important;
  word-break: keep-all !important;
}

body.v24 #why .feature-card .feature-en {
  display: none !important;
}

body.v24 #why .feature-card p {
  text-align: left !important;
  margin: 10px 0px 0px !important;
}

@media (max-width: 700px) {
  body.v24 #why .feature-grid.v2-features {
    grid-template-columns: minmax(0px, 1fr) !important;
    gap: 10px !important;
  }

  body.v24 #why .feature-heading h3 {
    font-size: 17px !important;
  }

  body.v24 #why .feature-card p {
    font-size: 14px !important;
    line-height: 1.65 !important;
    margin: 7px 0px 0px 36px !important;
  }

  body.v24 #why .feature-heading .feature-no {
    flex-basis: 26px;
    font-size: 19px !important;
  }

}

body.v24 #reviews .review-grid {
  scroll-snap-type: x mandatory;
  display: flex !important;
  gap: 16px !important;
  height: auto !important;
  max-height: none !important;
  padding: 6px 1px 20px !important;
  overflow: auto hidden !important;
}

body.v24 #reviews .review-card::before, body.v24 #reviews .review-card::after {
  display: none !important;
  content: none !important;
}

body.v24 #reviews .review-screenshot-button {
  color: rgb(19, 38, 61);
  text-align: left;
  cursor: zoom-in;
  display: block !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0px !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  margin: 0px !important;
  padding: 0px !important;
  border: 1px solid rgb(231, 225, 217) !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  background: rgb(255, 255, 255) !important;
  transform: none !important;
}

body.v24 #reviews .review-contain-frame {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0px !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  padding: 10px !important;
  margin: 0px !important;
  overflow: visible !important;
  background: rgb(255, 255, 255) !important;
}

body.v24 #reviews .review-screenshot-button .review-contain-frame img {
  display: block !important;
  position: static !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0px !important;
  max-height: none !important;
  max-width: 100% !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  margin: 0px !important;
  padding: 0px !important;
  transform: none !important;
  border-radius: 6px !important;
  box-shadow: none !important;
}

body.v24 #reviews .review-contain-meta {
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border-top: 1px solid rgb(238, 232, 223);
  background: rgb(255, 255, 255);
  font: 700 12px / 1.5 Inter, "Noto Sans KR", sans-serif;
  color: rgb(80, 96, 113);
  display: flex !important;
  padding: 13px 14px !important;
}

body.v24 #reviews .review-screenshot-button:focus-visible {
  outline: rgb(201, 111, 88) solid 3px;
  outline-offset: -3px;
}

@media (max-width: 700px) {
  body.v24 #reviews .review-contain-frame {
    padding: 8px !important;
  }

}

body.v24 #reviews .review-grid {
  align-items: stretch !important;
}

body.v24 #reviews .review-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  flex: 0 0 360px;
  width: 360px;
  min-width: 0px;
  scroll-snap-align: start;
}

body.v24 #reviews .review-column .review-card {
  flex: 0 0 auto !important;
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0px !important;
  height: auto !important;
  min-height: 0px !important;
  max-height: none !important;
  padding: 0px !important;
  margin: 0px !important;
  border: 0px !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
  transform: none !important;
}

@media (max-width: 700px) {
  body.v24 #reviews .review-column {
    flex-basis: 100%;
    width: 100%;
    gap: 14px;
  }

}

body.v24 .hero {
  display: block !important;
  min-height: 0px !important;
  padding: 0px !important;
  background: rgb(255, 250, 245) !important;
}

body.v24 .hero .hero-inner {
  display: grid !important;
  grid-template-columns: minmax(0px, 1.1fr) minmax(0px, 0.9fr) !important;
  gap: 48px !important;
  align-items: center !important;
  min-height: 0px !important;
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

body.v24 .hero .hero-copy {
  width: 100% !important;
  max-width: none !important;
  min-width: 0px !important;
  padding: 0px !important;
}

body.v24 .hero .hero-brand-photo {
  display: block;
  margin: 0px;
  min-width: 0px;
  overflow: hidden;
  border-radius: 18px;
  background: rgb(255, 250, 245);
}

body.v24 .hero .hero-brand-photo img {
  display: block;
}

body.v24 .hero .hero-copy h1 {
  font-size: clamp(40px, 4.1vw, 62px) !important;
  line-height: 1.2 !important;
}

@media (max-width: 900px) {
  body.v24 .hero .hero-inner {
    grid-template-columns: minmax(0px, 1fr) !important;
    gap: 26px !important;
    padding-top: 38px !important;
    padding-bottom: 28px !important;
  }

  body.v24 .hero .hero-copy h1 {
    font-size: clamp(36px, 8.7vw, 51px) !important;
  }

}

body.v24 #why .feature-grid.v2-features .feature-card {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  gap: 0px !important;
  grid-template-rows: none !important;
  grid-template-columns: none !important;
  height: auto !important;
  min-height: 0px !important;
  padding: 22px 19px !important;
}

body.v24 #why .feature-grid .feature-heading {
  display: flex !important;
  align-items: baseline !important;
  gap: 9px !important;
}

body.v24 #why .feature-grid .feature-heading h3 {
  font-size: 21px !important;
  line-height: 1.4 !important;
  letter-spacing: -0.045em !important;
  margin: 0px !important;
  padding: 0px !important;
}

body.v24 #why .feature-grid .feature-heading .feature-no {
  font-size: 23px !important;
  line-height: 1.4 !important;
  flex: 0 0 auto !important;
  margin: 0px !important;
}

body.v24 #why .feature-grid .feature-card p {
  font-size: 16px !important;
  line-height: 1.6 !important;
  margin: 12px 0px 0px !important;
  padding: 0px !important;
  color: rgb(79, 96, 110) !important;
}

@media (max-width: 700px) {
  body.v24 #why .feature-grid.v2-features .feature-card {
    padding: 18px !important;
  }

  body.v24 #why .feature-grid .feature-heading h3 {
    font-size: 19px !important;
  }

  body.v24 #why .feature-grid .feature-heading .feature-no {
    font-size: 21px !important;
  }

  body.v24 #why .feature-grid .feature-card p {
    font-size: 15px !important;
    margin-top: 8px !important;
  }

}

body.v24 .hero .hero-brand-photo {
  aspect-ratio: 4 / 5;
  max-width: 440px;
  justify-self: center;
  width: 100%;
}

body.v24 .hero .hero-brand-photo img {
  width: 100% !important;
  height: 100% !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center !important;
}

body.v24 #courses img.course-photo-practice {
  object-position: center 52% !important;
}

body.v24 #courses img.course-photo-mydog {
  object-position: center 48% !important;
}

@media (max-width: 700px) {
  body.v24 .hero .hero-brand-photo {
    max-width: 420px;
  }

}

/* Hero composition: soft photographic backdrop with clear foreground copy. */
body.v24 .hero.hero-blended .hero-inner {
  display: block !important;
  min-height: 650px;
  isolation: isolate;
  padding-top: 64px !important;
  padding-bottom: 54px !important;
}
body.v24 .hero.hero-blended .hero-copy {
  position: relative;
  z-index: 2;
  width: 57% !important;
}
body.v24 .hero.hero-blended .hero-brand-photo {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  right: -30px;
  top: -65px;
  width: 58%;
  height: auto;
  max-width: 680px;
  aspect-ratio: 4 / 5;
  border-radius: 0;
  background: transparent;
  overflow: visible;
  opacity: .93;
  mix-blend-mode: multiply;
  -webkit-mask-image: radial-gradient(ellipse closest-side at 52% 46%, #000 48%, rgba(0,0,0,.88) 68%, transparent 100%);
  mask-image: radial-gradient(ellipse at 57% 48%, #000 34%, rgba(0,0,0,.88) 52%, transparent 73%);
}
body.v24 .hero.hero-blended .hero-brand-photo img {
  object-fit: cover !important;
  object-position: center !important;
}
@media (max-width: 900px) {
  body.v24 .hero.hero-blended .hero-inner {
    min-height: 0;
    padding-top: 38px !important;
    padding-bottom: 0 !important;
  }
  body.v24 .hero.hero-blended .hero-copy {
    width: 100% !important;
  }
  body.v24 .hero.hero-blended .hero-brand-photo {
    position: relative;
    right: auto;
    top: auto;
    width: calc(100% + 56px);
    height: auto;
    aspect-ratio: 4 / 5;
    max-width: 480px;
    margin: -36px -28px -30px;
    -webkit-mask-image: radial-gradient(ellipse closest-side at 50% 48%, #000 48%, rgba(0,0,0,.9) 68%, transparent 100%);
    mask-image: radial-gradient(ellipse closest-side at 50% 48%, #000 48%, rgba(0,0,0,.9) 68%, transparent 100%);
  }
}

/* Mobile readability: preserve Korean words and separate hero text lines. */
@media (max-width: 900px) {
  body.v24 .hero h1 .hero-small-line {
    display: block;
    line-height: 1.4;
    margin-bottom: 6px;
  }
  body.v24 .hero h1 .hero-small-line + br {
    display: none;
  }
  body.v24 .hero-sub,
  body.v24 .faq-list summary,
  body.v24 .faq-list details p,
  body.v24 .exam-lede,
  body.v24 .exam-foot-copy,
  body.v24 #facility .section-heading p {
    word-break: keep-all;
    overflow-wrap: break-word;
  }
}

/* Compact phone hero: retain natural proportions and frame the face/chest. */
@media (max-width: 600px) {
  body.v24 .hero.hero-blended .hero-brand-photo {
    height: clamp(260px, 87.5vw, 420px);
    aspect-ratio: auto;
  }
  body.v24 .hero.hero-blended .hero-brand-photo img {
    object-fit: cover !important;
    object-position: center 18% !important;
  }
}
/* V52: mobile reading rhythm and lower-page disclosures. */
body.v24 .v52-faq .faq-layout {align-items:start;gap:48px;}
body.v24 .v52-faq .section-heading {margin:0;}
body.v24 .v52-faq .faq-list {min-width:0;}
body.v24 .v52-faq .faq-list details {padding:0;border-bottom:1px solid var(--line);}
body.v24 .v52-faq .faq-list summary {position:relative;display:flex;gap:12px;align-items:baseline;padding:21px 32px 21px 0;min-height:60px;font-size:16px;line-height:1.65;list-style:none;cursor:pointer;}
body.v24 .v52-faq .faq-list summary::-webkit-details-marker {display:none;}
body.v24 .v52-faq .faq-list summary::after {position:absolute;right:3px;top:21px;content:'+';font-size:21px;line-height:1.3;}
body.v24 .v52-faq .faq-list details[open] summary::after {content:'−';}
body.v24 .v52-faq .faq-list details[open] {background:#faf8f4;}
body.v24 .v52-faq .faq-list details p {padding:0 20px 22px 42px;margin:0;font-size:15px;line-height:1.85;color:#4f606e;}
.faq-question {min-width:0;word-break:keep-all;overflow-wrap:anywhere;}
body.v24 .v52-disclosures {padding:0 0 32px;background:#fff;}
.v52-disclosure {border-top:1px solid var(--line);border-bottom:1px solid var(--line);scroll-margin-top:90px;}
.v52-disclosure + .v52-disclosure {border-top:0;}
.v52-disclosure > summary {list-style:none;display:flex;align-items:center;justify-content:space-between;gap:18px;padding:24px 2px;min-height:72px;font-size:18px;font-weight:700;color:var(--ink);cursor:pointer;word-break:keep-all;}
.v52-disclosure > summary::-webkit-details-marker {display:none;}
.v52-toggle {flex:none;font-size:24px;font-weight:400;}
.v52-toggle::after {content:'+';}
.v52-disclosure[open] > summary .v52-toggle::after {content:'−';}
.v52-detail-body {padding:28px;background:var(--cream);border-radius:14px;margin-bottom:24px;word-break:keep-all;overflow-wrap:anywhere;}
.v52-detail-body h2 {font-size:26px;margin:0 0 22px;line-height:1.5;}
.v52-registration {display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px 24px;margin:0 0 20px;}
.v52-registration div {display:flex;gap:14px;flex-wrap:wrap;}
.v52-registration dt {color:#596775;}
.v52-registration dd {margin:0;font-weight:600;}
.v52-note {font-size:13px;line-height:1.8;color:#596775;margin:20px 0;word-break:keep-all;}
.v52-fee-grid {display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;margin:24px 0;}
.v52-fee-card {background:#fff;border:1px solid var(--line);border-radius:12px;padding:22px;min-width:0;}
.v52-fee-card h3 {margin:0 0 20px;font-size:18px;line-height:1.5;}
.v52-fee-card dl {margin:0;display:grid;gap:10px;}
.v52-fee-card dl div {display:flex;justify-content:space-between;align-items:baseline;gap:12px;flex-wrap:wrap;font-size:14px;}
.v52-fee-card dt {color:#596775;}
.v52-fee-card dd {margin:0;font-variant-numeric:tabular-nums;}
.v52-fee-card .v52-fee-total {padding-top:12px;margin-top:4px;border-top:1px solid var(--line);font-weight:700;}
.v52-formula {font-size:12px;line-height:1.8;margin:16px 0 0;color:#65717e;}
.v52-source-link {display:inline-flex;align-items:center;min-height:44px;text-decoration:underline;text-underline-offset:4px;font-size:14px;}
.v52-policy-list {display:grid;gap:22px;margin:0;}
.v52-policy-list dt {font-weight:700;margin-bottom:6px;}
.v52-policy-list dd {margin:0;line-height:1.9;font-size:15px;color:#4f606e;}
.v52-policy-list a {text-decoration:underline;}
.v52-branch-grid {display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px;}
.v52-branch {border:1px solid var(--line);border-radius:14px;padding:24px;display:flex;align-items:flex-start;flex-direction:column;min-width:0;background:#fff;}
.v52-branch h3 {font-size:20px;margin:0 0 14px;}
.v52-branch address {font-style:normal;font-size:14px;line-height:1.8;word-break:keep-all;overflow-wrap:anywhere;color:#596775;margin-bottom:12px;}
.v52-phone {display:inline-flex;align-items:center;min-height:44px;font-size:18px;font-weight:700;margin-top:auto;}
.v52-branch-site {min-height:44px;display:inline-flex;align-items:center;font-size:13px;color:#596775;text-decoration:underline;text-underline-offset:4px;}
body.v24 .v52-branches {background:#faf8f5;}
body.v24 .v52-consent {align-items:center;gap:12px;}
body.v24 .v52-consent input {width:22px;height:22px;margin:0;flex:0 0 22px;accent-color:#13263d;}
.v52-consent > div {font-size:13px;line-height:1.8;word-break:keep-all;}
.v52-consent label {display:inline;cursor:pointer;}
.v52-privacy-link {display:inline-flex;align-items:center;min-height:44px;text-decoration:underline;text-underline-offset:3px;}
:where(a,button,input,select,summary):focus-visible {outline:3px solid #b25a43;outline-offset:4px;}
#privacy, .v52-disclosure > summary, .v52-faq details {scroll-margin-top:100px;}
/* Remove the old photo overlay from captions now placed below the images. */
body.v24 #facility .facility-item::after {display:none;}
@media (max-width:900px) {
  .v52-branch-grid {grid-template-columns:repeat(2,minmax(0,1fr));}
  body.v24 .v52-faq .faq-layout {gap:26px;}
}
@media (max-width:700px) {
  body.v24 #courses .course-body p, body.v24 #why p, body.v24 .consult-copy p {word-break:keep-all;overflow-wrap:break-word;}
  body.v24 .hero.hero-blended .hero-brand-photo {width:100%;margin:-16px 0 0;}
  body.v24 .hero-support-inline {display:flex;align-items:center;gap:10px;font-size:12px;line-height:1.7;}
  body.v24 .hero-support-inline .support-icon {flex:0 0 25px;}
  body.v24 .hero-support-inline > span:last-child {min-width:0;word-break:keep-all;}
  body.v24 .exam-cards {display:grid !important;grid-template-columns:minmax(0,1fr);overflow:visible;margin:0;padding:14px !important;gap:12px;scroll-snap-type:none;}
  body.v24 .exam-card {width:100%;min-width:0;}
  body.v24 .v52-faq .faq-layout {grid-template-columns:minmax(0,1fr);gap:22px;}
  body.v24 .v52-faq .faq-list summary {font-size:15px;padding:19px 28px 19px 0;gap:8px;}
  body.v24 .v52-faq .faq-list details p {padding:0 14px 22px;font-size:14px;}
  body.v24 .v52-faq .faq-list summary::after {top:20px;}
  .v52-fee-grid, .v52-registration, .v52-branch-grid {grid-template-columns:minmax(0,1fr);}
  .v52-disclosure > summary {font-size:16px;gap:12px;padding:22px 0;}
  .v52-detail-body {padding:20px 14px;}
  .v52-detail-body h2 {font-size:22px;}
  .v52-registration div {display:grid;gap:4px;font-size:14px;}
  .v52-fee-card {padding:18px 14px;}
  .v52-fee-card h3 {font-size:17px;}
  .v52-fee-card dl div {font-size:13px;gap:8px;}
  .v52-branch {padding:22px;}
  body.v24 .v52-branches .section-heading h2 {font-size:29px;line-height:1.45;}
  body.v24 .footer {padding-top:28px;padding-bottom:calc(98px + env(safe-area-inset-bottom));}
  body.v24 .course-more {min-height:46px;}
}
@media (prefers-reduced-motion:reduce) {
  html {scroll-behavior:auto;}
  *, *::before, *::after {animation-duration:.01ms !important;transition-duration:.01ms !important;}
}
body.v24 .exam-card.is-focus::after {display:none;}
body.v24 .exam-card h3 {word-break:keep-all;overflow-wrap:break-word;}
@media (max-width:700px) {
  body.v24 .hero-support-inline {flex-wrap:nowrap;}
}
@media (max-width:700px) {
  body.v24 .section-heading p {word-break:keep-all;overflow-wrap:break-word;}
  body.v24 #courses .v17-course-card > img {height:auto !important;aspect-ratio:4 / 3 !important;}
}

/* Base summary pseudo-icons do not apply to disclosure rows with explicit icons. */
.v52-disclosure > summary::before, .v52-disclosure > summary::after {content:none !important;display:none !important;}
