@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;600;700;800;900&display=swap");

@font-face {
  font-family: "SUIT";
  src: url("../fonts/SUIT-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

/* Neurological rehabilitation: sticky in-page anchors. */
.neuro-rehab-content {
  width: 100vw;
  margin: 18px calc(50% - 50vw) 0;
  background: #fff;
}

.neuro-rehab-tabs {
  position: relative;
  z-index: 2200;
  width: 100%;
  background: rgba(255, 255, 255, .97);
  border-top: 1px solid #e2e8f1;
  border-bottom: 1px solid #d9e1ec;
  box-shadow: 0 8px 24px rgba(25, 42, 68, .05);
  backdrop-filter: blur(12px);
}

.neuro-rehab-tabs-spacer {
  height: 0;
}

.neuro-rehab-tabs.is-fixed {
  position: fixed;
  top: var(--neuro-sticky-top, 144px);
  right: 0;
  left: 0;
  z-index: 2800;
}

.neuro-rehab-tabs__inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: min(1640px, calc(100% - 96px));
  margin: 0 auto;
}

.special-rehab-content .neuro-rehab-tabs__inner {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.special-rehab-sections {
  width: 100%;
}

.special-rehab-section__inner {
  width: min(1640px, calc(100% - 96px));
  margin: 0 auto;
}

.special-rehab-content .therapy-detail__copy > strong {
  display: block;
  margin: -8px 0 22px;
  color: #30425d;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.6;
  word-break: keep-all;
}

.neuro-rehab-tabs a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: 70px;
  color: #667386;
  border-left: 1px solid #e8edf4;
  font-size: 18px;
  font-weight: 700;
  transition: color .2s ease, background .2s ease;
}

.neuro-rehab-tabs a:last-child {
  border-right: 1px solid #e8edf4;
}

.neuro-rehab-tabs a::after {
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 0;
  height: 3px;
  content: '';
  background: #5f84cf;
  transform: translateX(-50%);
  transition: width .24s ease;
}

.neuro-rehab-tabs a:hover,
.neuro-rehab-tabs a:focus-visible,
.neuro-rehab-tabs a.is-active {
  color: #315da8;
  background: #f7f9fd;
}

.neuro-rehab-tabs a.is-active::after {
  width: 100%;
}

.neuro-rehab-section {
  min-height: clamp(520px, 72vh, 820px);
  scroll-margin-top: 206px;
  background: #fff;
}

.neuro-rehab-section + .neuro-rehab-section {
  border-top: 1px solid #f0f3f7;
}

.neuro-exercise-program {
  width: min(1640px, calc(100% - 96px));
  margin: 0 auto;
  padding: clamp(86px, 8vw, 132px) 0 clamp(100px, 9vw, 150px);
  color: #172235;
}

.neuro-exercise-program__head {
  display: block;
  margin-bottom: 56px;
  padding-bottom: 34px;
  border-bottom: 2px solid #20385f;
}

.neuro-exercise-program__head > span {
  display: block;
  margin-bottom: 24px;
  color: #6388d1;
  font-size: 14px;
  font-weight: 800;
}

.neuro-exercise-program__head h3 {
  margin: 0;
  font-size: clamp(38px, 3.4vw, 58px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
}

.neuro-exercise-program__head p {
  margin: 18px 0 0;
  color: #667386;
  font-size: 17px;
  line-height: 1.85;
}

.neuro-exercise-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px 34px;
}

.neuro-exercise-grid--single {
  grid-template-columns: minmax(0, 1fr);
}

.neuro-exercise-grid--single .neuro-exercise-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.neuro-exercise-grid--single .neuro-exercise-item__visual {
  height: 100%;
  min-height: 430px;
  aspect-ratio: auto;
}

.neuro-exercise-grid--single .neuro-exercise-item__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 5vw, 78px);
}

.neuro-exercise-item {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dbe3ee;
  border-top: 4px solid #7194d5;
  border-radius: 4px;
  transition: border-color .22s ease, transform .22s ease;
}

.neuro-exercise-item:hover {
  border-color: #9bb2db;
  transform: translateY(-4px);
}

.neuro-exercise-item__visual {
  position: relative;
  width: 100%;
  margin: 0;
  aspect-ratio: 11 / 7.2;
  overflow: hidden;
  background: #edf2f8;
}

.neuro-exercise-item__visual .medipium-inline-picture,
.neuro-exercise-item__visual .medipium-inline-image-placeholder {
  display: block;
  width: 100%;
  height: 100%;
}

.neuro-exercise-item__visual .medipium-inline-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: #ccc;
}

.neuro-exercise-item__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.neuro-exercise-item__copy {
  flex: 1;
  padding: 34px 36px 38px;
}

.neuro-exercise-item__copy h4 {
  margin: 0 0 13px;
  font-size: clamp(25px, 2vw, 32px);
  font-weight: 700;
  line-height: 1.35;
}

.neuro-exercise-item__copy strong {
  display: block;
  margin-bottom: 22px;
  color: #4d73bb;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
}

.neuro-exercise-item__copy p {
  margin: 0;
  color: #5d6879;
  font-size: 16px;
  line-height: 1.85;
}

.neuro-exercise-item__copy p + p {
  margin-top: 12px;
}

@media (max-width: 720px) {
  .neuro-rehab-content {
    margin-top: 8px;
  }

  .neuro-rehab-tabs__inner {
    display: flex;
    width: 100%;
    padding: 0 14px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .neuro-rehab-tabs__inner::-webkit-scrollbar {
    display: none;
  }

  .neuro-rehab-tabs a {
    flex: 0 0 112px;
    height: 56px;
    border-left: 0;
    font-size: 15px;
  }

  .neuro-rehab-tabs a:last-child {
    border-right: 0;
  }

  .special-rehab-content .neuro-rehab-tabs a {
    flex-basis: 160px;
    padding: 0 16px;
    font-size: 14px;
  }

  .special-rehab-section__inner {
    width: calc(100% - 36px);
  }

  .special-rehab-content .therapy-detail__copy > strong {
    font-size: 16px;
  }

  .neuro-rehab-section {
    min-height: 74svh;
    scroll-margin-top: 136px;
  }

  .neuro-exercise-program {
    width: calc(100% - 36px);
    padding: 60px 0 76px;
  }

  .neuro-exercise-program__head {
    display: block;
    margin-bottom: 30px;
    padding-bottom: 26px;
  }

  .neuro-exercise-program__head > span {
    margin-bottom: 14px;
  }

  .neuro-exercise-program__head h3 {
    font-size: 34px;
    line-height: 1.3;
  }

  .neuro-exercise-program__head p {
    margin-top: 20px;
    font-size: 15px;
  }

  .neuro-exercise-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .neuro-exercise-grid--single .neuro-exercise-item {
    display: flex;
  }

  .neuro-exercise-grid--single .neuro-exercise-item__visual {
    min-height: 0;
    aspect-ratio: 5 / 4;
  }

  .neuro-exercise-grid--single .neuro-exercise-item__copy {
    padding: 26px 24px 30px;
  }

  .neuro-exercise-item:hover {
    transform: none;
  }

  .neuro-exercise-item__visual {
    aspect-ratio: 5 / 4;
  }

  .neuro-exercise-item__copy {
    padding: 26px 24px 30px;
  }

  .neuro-exercise-item__copy h4 {
    font-size: 24px;
  }

  .neuro-exercise-item__copy strong {
    margin-bottom: 16px;
    font-size: 16px;
  }

  .neuro-exercise-item__copy p {
    font-size: 15px;
    line-height: 1.78;
  }
}

@media (prefers-reduced-motion: reduce) {
  .neuro-rehab-tabs a,
  .neuro-rehab-tabs a::after {
    transition: none;
  }
}

/* Inpatient admission and discharge guide */
.inpatient-guide {
  --inpatient-ink: #152033;
  --inpatient-muted: #667388;
  --inpatient-blue: #6f93d4;
  --inpatient-blue-deep: #456cae;
  --inpatient-line: #dce4ef;
  overflow: visible;
  margin-top: 84px;
  color: var(--inpatient-ink);
}

.inpatient-guide h3,
.inpatient-guide h4,
.inpatient-guide p {
  margin-top: 0;
}

.inpatient-intro {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(440px, 1.12fr);
  align-items: center;
  gap: clamp(54px, 7vw, 112px);
}

.inpatient-eyebrow,
.inpatient-section-head > span,
.inpatient-contact > div > span {
  display: block;
  margin-bottom: 18px;
  color: var(--inpatient-blue-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.inpatient-intro-copy h3 {
  margin-bottom: 28px;
  font-size: clamp(38px, 3.25vw, 58px);
  font-weight: 700;
  line-height: 1.24;
  letter-spacing: 0;
}

.inpatient-intro-copy > p {
  max-width: 610px;
  margin-bottom: 34px;
  color: var(--inpatient-muted);
  font-size: 18px;
  line-height: 1.85;
}

.inpatient-intro-contact {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-top: 22px;
  border-top: 1px solid var(--inpatient-line);
  font-size: 15px;
}

.inpatient-intro-contact svg {
  width: 19px;
  color: var(--inpatient-blue-deep);
}

.inpatient-intro-contact span {
  color: var(--inpatient-muted);
}

.inpatient-intro-contact a {
  color: var(--inpatient-ink);
  font-size: 22px;
  font-weight: 700;
}

.inpatient-intro-image,
.inpatient-discharge-image {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: 6px;
  background: #eef3f9;
}

.inpatient-intro-image .medipium-inline-picture,
.inpatient-discharge-image .medipium-inline-picture,
.inpatient-intro-image img,
.inpatient-discharge-image img,
.inpatient-intro-image .medipium-inline-image-placeholder,
.inpatient-discharge-image .medipium-inline-image-placeholder {
  display: block;
  width: 100%;
  height: 100%;
}

.inpatient-intro-image .medipium-inline-picture,
.inpatient-discharge-image .medipium-inline-picture,
.inpatient-intro-image .medipium-inline-image-placeholder,
.inpatient-discharge-image .medipium-inline-image-placeholder {
  position: absolute;
  inset: 0;
}

.inpatient-intro-image .medipium-inline-picture,
.inpatient-discharge-image .medipium-inline-picture {
  overflow: hidden;
}

.inpatient-intro-image .medipium-inline-image-placeholder,
.inpatient-discharge-image .medipium-inline-image-placeholder {
  border-radius: 0;
}

.inpatient-intro-image img,
.inpatient-discharge-image img {
  object-fit: cover;
}

.inpatient-section {
  padding: 126px 0 110px;
}

.inpatient-section-head {
  max-width: 680px;
  margin-bottom: 58px;
}

.inpatient-section-head h3 {
  margin-bottom: 16px;
  font-size: clamp(32px, 2.6vw, 46px);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0;
}

.inpatient-section-head > p {
  margin-bottom: 0;
  color: var(--inpatient-muted);
  font-size: 17px;
  line-height: 1.75;
}

.inpatient-process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--inpatient-line);
  border-bottom: 1px solid var(--inpatient-line);
}

.inpatient-process li {
  position: relative;
  min-height: 300px;
  padding: 40px 32px 38px;
  border-right: 1px solid var(--inpatient-line);
}

.inpatient-process li:last-child {
  border-right: 0;
}

.inpatient-process em {
  position: absolute;
  top: 28px;
  right: 28px;
  color: #a8b5c9;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.inpatient-step-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 34px;
  place-items: center;
  border: 1px solid #bdd0ec;
  border-radius: 50%;
  color: var(--inpatient-blue-deep);
  background: #f5f8fd;
}

.inpatient-step-icon svg {
  width: 26px;
  height: 26px;
}

.inpatient-process strong {
  display: block;
  margin-bottom: 16px;
  font-size: 21px;
  font-weight: 700;
}

.inpatient-process p {
  margin-bottom: 0;
  color: var(--inpatient-muted);
  font-size: 15px;
  line-height: 1.75;
}

.inpatient-process-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 20px 0 0;
  color: #7a8699;
  font-size: 14px;
}

.inpatient-process-note svg {
  width: 17px;
  height: 17px;
}

.inpatient-prep {
  position: relative;
  z-index: 0;
  isolation: isolate;
  padding: 104px 0 96px;
}

.inpatient-prep::before {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: #f3f6fa;
  content: "";
}

.inpatient-section-head.is-light {
  margin-bottom: 52px;
}

.inpatient-prep-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #ced9e7;
  border-bottom: 1px solid #ced9e7;
}

.inpatient-prep-grid article {
  min-height: 300px;
  padding: 42px 42px 40px;
  border-right: 1px solid #ced9e7;
}

.inpatient-prep-grid article:last-child {
  border-right: 0;
}

.inpatient-prep-grid article > span {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 26px;
  place-items: center;
  color: var(--inpatient-blue-deep);
}

.inpatient-prep-grid article > span svg {
  width: 34px;
  height: 34px;
  stroke-width: 1.5;
}

.inpatient-prep-grid h4 {
  margin-bottom: 20px;
  font-size: 21px;
  font-weight: 700;
}

.inpatient-prep-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.inpatient-prep-grid li {
  position: relative;
  margin-top: 9px;
  padding-left: 14px;
  color: var(--inpatient-muted);
  font-size: 15px;
  line-height: 1.65;
}

.inpatient-prep-grid li::before {
  position: absolute;
  top: .78em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--inpatient-blue);
  content: "";
}

.inpatient-prep-note {
  margin: 20px 0 0;
  color: #7a8699;
  font-size: 14px;
}

.inpatient-cost-notice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  margin: 92px 0 0;
  padding: 32px 0;
  border-top: 1px solid var(--inpatient-line);
  border-bottom: 1px solid var(--inpatient-line);
}

.inpatient-cost-notice > span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  color: var(--inpatient-blue-deep);
  background: #edf3fc;
}

.inpatient-cost-notice svg {
  width: 26px;
}

.inpatient-cost-notice strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
}

.inpatient-cost-notice p {
  margin: 0;
  color: var(--inpatient-muted);
  font-size: 15px;
  line-height: 1.7;
}

.inpatient-discharge {
  display: grid;
  grid-template-columns: minmax(420px, .92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(60px, 8vw, 120px);
  padding: 120px 0;
}

.inpatient-discharge-image {
  min-height: 560px;
}

.inpatient-discharge-copy .inpatient-section-head {
  margin-bottom: 40px;
}

.inpatient-discharge-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--inpatient-line);
}

.inpatient-discharge-steps li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--inpatient-line);
}

.inpatient-discharge-steps em {
  color: var(--inpatient-blue-deep);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.inpatient-discharge-steps strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
}

.inpatient-discharge-steps p {
  margin-bottom: 0;
  color: var(--inpatient-muted);
  font-size: 15px;
  line-height: 1.65;
}

.inpatient-discharge-note {
  display: flex;
  gap: 9px;
  margin: 20px 0 0;
  color: #667388;
  font-size: 14px;
}

.inpatient-discharge-note svg {
  width: 18px;
}

.inpatient-contact {
  position: relative;
  z-index: 0;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 70px 0;
}

.inpatient-contact::before {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: #eaf1fb;
  content: "";
}

.inpatient-contact h3 {
  margin-bottom: 10px;
  font-size: 31px;
  font-weight: 700;
}

.inpatient-contact p {
  margin-bottom: 0;
  color: var(--inpatient-muted);
  font-size: 16px;
}

.inpatient-contact > a {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 2px 14px;
  min-width: 280px;
  padding: 21px 30px;
  border-radius: 5px;
  color: #fff;
  background: var(--inpatient-blue-deep);
  transition: background-color .2s ease, transform .2s ease;
}

.inpatient-contact > a:hover {
  color: #fff;
  background: #365e9f;
  transform: translateY(-2px);
}

.inpatient-contact > a svg {
  grid-row: 1 / 3;
  width: 27px;
  height: 27px;
}

.inpatient-contact > a span {
  font-size: 12px;
  opacity: .78;
}

.inpatient-contact > a strong {
  font-size: 23px;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .inpatient-intro {
    grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
    gap: 48px;
  }

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

  .inpatient-process li:nth-child(2) {
    border-right: 0;
  }

  .inpatient-process li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--inpatient-line);
  }

  .inpatient-discharge {
    grid-template-columns: minmax(340px, .85fr) minmax(0, 1.15fr);
    gap: 54px;
  }
}

@media (max-width: 820px) {
  .inpatient-guide {
    margin-top: 60px;
  }

  .inpatient-intro,
  .inpatient-discharge {
    grid-template-columns: 1fr;
  }

  .inpatient-intro-image {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .inpatient-prep-grid {
    grid-template-columns: 1fr;
  }

  .inpatient-prep-grid article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid #ced9e7;
  }

  .inpatient-prep-grid article:last-child {
    border-bottom: 0;
  }

  .inpatient-discharge-image {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .inpatient-discharge-copy {
    grid-row: 1;
  }

  .inpatient-contact {
    align-items: stretch;
    flex-direction: column;
  }

  .inpatient-contact > a {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 560px) {
  .inpatient-guide {
    margin-top: 44px;
  }

  .inpatient-eyebrow,
  .inpatient-section-head > span,
  .inpatient-contact > div > span {
    margin-bottom: 12px;
    font-size: 11px;
  }

  .inpatient-intro-copy h3 {
    margin-bottom: 20px;
    font-size: 31px;
  }

  .inpatient-intro-copy > p {
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.75;
  }

  .inpatient-intro-contact {
    width: 100%;
    padding-top: 17px;
  }

  .inpatient-intro-contact a {
    margin-left: auto;
    font-size: 19px;
  }

  .inpatient-section {
    padding: 82px 0 74px;
  }

  .inpatient-section-head {
    margin-bottom: 34px;
  }

  .inpatient-section-head h3 {
    margin-bottom: 12px;
    font-size: 29px;
  }

  .inpatient-section-head > p {
    font-size: 14px;
  }

  .inpatient-process {
    grid-template-columns: 1fr;
  }

  .inpatient-process li,
  .inpatient-process li:nth-child(2) {
    min-height: 0;
    padding: 28px 18px 28px 78px;
    border-right: 0;
    border-bottom: 1px solid var(--inpatient-line);
  }

  .inpatient-process li:last-child {
    border-bottom: 0;
  }

  .inpatient-step-icon {
    position: absolute;
    top: 28px;
    left: 12px;
    width: 48px;
    height: 48px;
    margin: 0;
  }

  .inpatient-process em {
    top: 14px;
    right: 4px;
    font-size: 11px;
  }

  .inpatient-process strong {
    margin-bottom: 8px;
    font-size: 18px;
  }

  .inpatient-process p,
  .inpatient-prep-grid li,
  .inpatient-cost-notice p,
  .inpatient-discharge-steps p {
    font-size: 14px;
  }

  .inpatient-process-note {
    align-items: flex-start;
    font-size: 12px;
    line-height: 1.55;
  }

  .inpatient-prep {
    padding: 76px 0 68px;
  }

  .inpatient-prep-grid article {
    padding: 30px 8px 30px;
  }

  .inpatient-prep-grid article > span {
    margin-bottom: 15px;
  }

  .inpatient-prep-grid h4 {
    margin-bottom: 14px;
    font-size: 18px;
  }

  .inpatient-cost-notice {
    align-items: start;
    gap: 18px;
    margin-top: 60px;
  }

  .inpatient-cost-notice > span {
    width: 46px;
    height: 46px;
  }

  .inpatient-discharge {
    gap: 36px;
    padding: 82px 0;
  }

  .inpatient-discharge-steps li {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
  }

  .inpatient-contact {
    gap: 28px;
    padding: 54px 0;
  }

  .inpatient-contact h3 {
    font-size: 26px;
  }

  .inpatient-contact p {
    font-size: 14px;
  }
}

/* Stem cell treatment center */
.stemcell-center-content {
  --stem-ink: #172033;
  --stem-muted: #596576;
  --stem-blue: #6e8fc8;
  --stem-blue-deep: #46689f;
  --stem-line: #dce4ee;
  --stem-soft: #f4f7fb;
  margin-top: 72px;
  color: var(--stem-ink);
}

.stemcell-center-content * {
  box-sizing: border-box;
  letter-spacing: 0;
}

.stemcell-center-content h3,
.stemcell-center-content h4,
.stemcell-center-content p,
.stemcell-center-content figure,
.stemcell-center-content ul,
.stemcell-center-content ol {
  margin-top: 0;
}

.stemcell-eyebrow {
  display: block;
  margin-bottom: 18px;
  color: var(--stem-blue);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
}

.stemcell-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  align-items: stretch;
  min-height: 650px;
  border-top: 2px solid var(--stem-ink);
  border-bottom: 1px solid var(--stem-line);
}

.stemcell-intro-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px clamp(54px, 5vw, 88px) 72px 4px;
}

.stemcell-intro-copy h3 {
  margin-bottom: 30px;
  font-size: clamp(38px, 3.15vw, 62px);
  font-weight: 780;
  line-height: 1.2;
  word-break: keep-all;
}

.stemcell-intro-copy > p {
  max-width: 690px;
  margin-bottom: 12px;
  color: var(--stem-muted);
  font-size: 17px;
  line-height: 1.85;
  word-break: keep-all;
}

.stemcell-intro-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--stem-line);
}

.stemcell-intro-points li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 13px;
  padding: 22px 18px 0 0;
}

.stemcell-intro-points svg {
  width: 25px;
  height: 25px;
  color: var(--stem-blue);
  stroke-width: 1.7;
}

.stemcell-intro-points b,
.stemcell-intro-points small {
  display: block;
  word-break: keep-all;
}

.stemcell-intro-points b {
  margin-bottom: 5px;
  font-size: 16px;
}

.stemcell-intro-points small {
  color: #7a8593;
  font-size: 12px;
  line-height: 1.55;
}

.stemcell-intro-visual,
.stemcell-about-visual,
.stemcell-process-visual,
.stemcell-aftercare-visual {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-width: 0;
  margin-bottom: 0;
  background: #edf2f7;
}

.stemcell-intro-visual {
  min-height: 650px;
  border-radius: 0 6px 6px 0;
}

.stemcell-center-content .medipium-inline-picture,
.stemcell-center-content .medipium-inline-picture img,
.stemcell-center-content .medipium-inline-image-placeholder {
  width: 100%;
  height: 100%;
}

.stemcell-center-content .medipium-inline-picture {
  display: block;
}

.stemcell-center-content .medipium-inline-picture img {
  display: block;
  object-fit: cover;
}

.stemcell-center-content .medipium-inline-image-placeholder {
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  min-height: inherit;
  color: #75869c;
  background: #edf2f7;
}

.park-content-shell.is-stemcell-center-page {
  padding-bottom: 0;
}

.stemcell-intro-visual figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(410px, 82%);
  padding: 27px 31px;
  color: #fff;
  background: rgba(70, 104, 159, .92);
}

.stemcell-intro-visual figcaption strong,
.stemcell-intro-visual figcaption span {
  display: block;
}

.stemcell-intro-visual figcaption strong {
  margin-bottom: 7px;
  font-size: 20px;
}

.stemcell-intro-visual figcaption span {
  opacity: .72;
  font-size: 11px;
  font-weight: 700;
}

.stemcell-about {
  display: grid;
  grid-template-columns: minmax(400px, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(54px, 7vw, 118px);
  padding: clamp(92px, 8vw, 140px) 0;
}

.stemcell-about-visual {
  aspect-ratio: 4 / 3;
  border-radius: 6px;
}

.stemcell-about-copy {
  max-width: 680px;
}

.stemcell-section-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 25px;
  color: var(--stem-blue-deep);
  border: 1px solid #c9d7e9;
  border-radius: 5px;
  background: #f6f9fd;
}

.stemcell-section-icon svg {
  width: 27px;
  height: 27px;
  stroke-width: 1.6;
}

.stemcell-about-copy h3,
.stemcell-section-heading h3,
.stemcell-process-copy h3,
.stemcell-aftercare-copy h3 {
  margin-bottom: 25px;
  font-size: clamp(32px, 2.4vw, 48px);
  font-weight: 760;
  line-height: 1.25;
  word-break: keep-all;
}

.stemcell-about-copy > p {
  margin-bottom: 14px;
  color: var(--stem-muted);
  font-size: 16px;
  line-height: 1.9;
  word-break: keep-all;
}

.stemcell-note {
  display: flex;
  gap: 11px;
  margin-top: 31px;
  padding: 17px 0;
  color: #5b6c82;
  font-size: 13px;
  border-top: 1px solid var(--stem-line);
  border-bottom: 1px solid var(--stem-line);
}

.stemcell-note svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}

.stemcell-candidates {
  padding: 0 0 clamp(100px, 9vw, 150px);
}

.stemcell-section-heading {
  max-width: 820px;
  margin-bottom: 48px;
}

.stemcell-section-heading > p {
  color: var(--stem-muted);
  font-size: 16px;
  line-height: 1.8;
  word-break: keep-all;
}

.stemcell-candidate-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 2px solid var(--stem-ink);
  border-bottom: 1px solid var(--stem-line);
}

.stemcell-candidate-list article {
  position: relative;
  min-height: 286px;
  padding: 34px 37px;
  border-right: 1px solid var(--stem-line);
  transition: background .22s ease;
}

.stemcell-candidate-list article:last-child {
  border-right: 0;
}

.stemcell-candidate-list article:hover {
  background: #f6f9fd;
}

.stemcell-candidate-list article > span {
  position: absolute;
  top: 28px;
  right: 31px;
  color: #b4c2d4;
  font-size: 13px;
  font-weight: 800;
}

.stemcell-candidate-list svg {
  width: 34px;
  height: 34px;
  margin-bottom: 42px;
  color: var(--stem-blue);
  stroke-width: 1.55;
}

.stemcell-candidate-list h4 {
  margin-bottom: 13px;
  font-size: 22px;
  font-weight: 740;
}

.stemcell-candidate-list p {
  margin-bottom: 0;
  color: var(--stem-muted);
  font-size: 14px;
  line-height: 1.75;
  word-break: keep-all;
}

.stemcell-process,
.stemcell-aftercare {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.stemcell-process {
  padding: clamp(90px, 8vw, 135px) 0;
  background: var(--stem-soft);
}

.stemcell-process-inner,
.stemcell-aftercare-inner {
  width: min(1640px, calc(100% - 96px));
  margin: 0 auto;
  padding-left: 5px;
}

.stemcell-process-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(410px, .96fr);
  align-items: center;
  gap: clamp(65px, 8vw, 130px);
}

.stemcell-process-copy > p {
  max-width: 630px;
  margin-bottom: 38px;
  color: var(--stem-muted);
  font-size: 16px;
  line-height: 1.8;
}

.stemcell-process-copy ol {
  margin-bottom: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #cfd9e6;
}

.stemcell-process-copy li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 17px;
  padding: 18px 0;
  border-bottom: 1px solid #d7e0eb;
}

.stemcell-process-copy li > span {
  color: var(--stem-blue);
  font-size: 13px;
  font-weight: 800;
}

.stemcell-process-copy b,
.stemcell-process-copy small {
  display: block;
}

.stemcell-process-copy b {
  margin-bottom: 4px;
  font-size: 17px;
}

.stemcell-process-copy small {
  color: #6d7887;
  font-size: 13px;
  line-height: 1.5;
}

.stemcell-process-visual {
  aspect-ratio: 6 / 7;
  max-height: 710px;
  border-radius: 6px;
}

.stemcell-safety {
  padding: clamp(92px, 8vw, 135px) 0;
}

.stemcell-safety ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid var(--stem-ink);
  border-bottom: 1px solid var(--stem-line);
}

.stemcell-safety li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 20px;
  min-height: 160px;
  padding: 32px 30px;
  border-right: 1px solid var(--stem-line);
}

.stemcell-safety li:last-child {
  border-right: 0;
}

.stemcell-safety li > svg {
  width: 30px;
  height: 30px;
  color: var(--stem-blue);
  stroke-width: 1.55;
}

.stemcell-safety b,
.stemcell-safety small {
  display: block;
}

.stemcell-safety b {
  margin-bottom: 9px;
  font-size: 18px;
}

.stemcell-safety small {
  color: var(--stem-muted);
  font-size: 13px;
  line-height: 1.65;
  word-break: keep-all;
}

.stemcell-aftercare {
  padding: clamp(92px, 8vw, 132px) 0;
  background: #edf3f8;
}

.stemcell-aftercare-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(410px, .94fr);
  align-items: center;
  gap: clamp(65px, 8vw, 130px);
}

.stemcell-aftercare-lead {
  margin-bottom: 38px;
  color: var(--stem-muted);
  font-size: 18px;
  line-height: 1.75;
  word-break: keep-all;
}

.stemcell-care-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #cbd8e5;
}

.stemcell-care-list article {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 14px;
  padding: 25px 24px 25px 0;
  border-bottom: 1px solid #cbd8e5;
}

.stemcell-care-list article:nth-child(odd) {
  margin-right: 24px;
  border-right: 1px solid #cbd8e5;
}

.stemcell-care-list svg {
  width: 23px;
  height: 23px;
  color: var(--stem-blue-deep);
  stroke-width: 1.7;
}

.stemcell-care-list b {
  display: block;
  margin-bottom: 7px;
  font-size: 16px;
}

.stemcell-care-list p {
  margin-bottom: 0;
  color: var(--stem-muted);
  font-size: 13px;
  line-height: 1.65;
  word-break: keep-all;
}

.stemcell-aftercare-visual {
  aspect-ratio: 5 / 4;
  max-height: 560px;
  border-radius: 6px;
}

.stemcell-aftercare-visual figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  padding: 20px 25px;
  color: #fff;
  font-size: 13px;
  line-height: 1.55;
  background: rgba(33, 48, 70, .82);
}

@media (max-width: 1180px) {
  .stemcell-intro,
  .stemcell-about,
  .stemcell-process-inner,
  .stemcell-aftercare-inner {
    grid-template-columns: 1fr 1fr;
    gap: 44px;
  }

  .stemcell-intro {
    gap: 0;
  }

  .stemcell-intro-copy {
    padding-right: 42px;
  }

  .stemcell-intro-points {
    grid-template-columns: 1fr;
  }

  .stemcell-intro-points li {
    padding-top: 14px;
  }
}

@media (max-width: 860px) {
  .stemcell-center-content {
    margin-top: 52px;
  }

  .stemcell-intro,
  .stemcell-about,
  .stemcell-process-inner,
  .stemcell-aftercare-inner {
    grid-template-columns: 1fr;
  }

  .stemcell-intro-copy {
    padding: 54px 0;
  }

  .stemcell-intro-visual {
    min-height: 520px;
    border-radius: 5px;
  }

  .stemcell-about {
    gap: 48px;
  }

  .stemcell-about-visual {
    order: 2;
  }

  .stemcell-candidate-list,
  .stemcell-safety ul {
    grid-template-columns: 1fr;
  }

  .stemcell-candidate-list article,
  .stemcell-safety li {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--stem-line);
  }

  .stemcell-candidate-list article:last-child,
  .stemcell-safety li:last-child {
    border-bottom: 0;
  }

  .stemcell-process-visual,
  .stemcell-aftercare-visual {
    aspect-ratio: 4 / 3;
    max-height: none;
  }
}

@media (max-width: 640px) {
  .stemcell-center-content {
    margin-top: 38px;
  }

  .stemcell-eyebrow {
    margin-bottom: 13px;
    font-size: 11px;
  }

  .stemcell-intro {
    border-top-width: 1px;
  }

  .stemcell-intro-copy h3 {
    margin-bottom: 22px;
    font-size: 32px;
  }

  .stemcell-intro-copy > p,
  .stemcell-about-copy > p,
  .stemcell-section-heading > p,
  .stemcell-process-copy > p {
    font-size: 14px;
    line-height: 1.75;
  }

  .stemcell-intro-points {
    margin-top: 28px;
  }

  .stemcell-intro-visual {
    min-height: 370px;
  }

  .stemcell-intro-visual figcaption {
    width: calc(100% - 18px);
    padding: 18px 20px;
  }

  .stemcell-about {
    padding: 76px 0;
  }

  .stemcell-about-copy h3,
  .stemcell-section-heading h3,
  .stemcell-process-copy h3,
  .stemcell-aftercare-copy h3 {
    margin-bottom: 19px;
    font-size: 30px;
  }

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

  .stemcell-candidate-list article {
    padding: 28px 20px;
  }

  .stemcell-candidate-list svg {
    margin-bottom: 27px;
  }

  .stemcell-process,
  .stemcell-aftercare {
    padding: 76px 0;
  }

  .stemcell-process-inner,
  .stemcell-aftercare-inner {
    width: calc(100% - 36px);
    padding-left: 0;
  }

  .stemcell-process-visual,
  .stemcell-aftercare-visual {
    aspect-ratio: 1 / 1;
  }

  .stemcell-safety li {
    grid-template-columns: 40px 1fr;
    padding: 25px 18px;
  }

  .stemcell-care-list {
    grid-template-columns: 1fr;
  }

  .stemcell-care-list article:nth-child(odd) {
    margin-right: 0;
    border-right: 0;
  }

  .stemcell-aftercare-lead {
    font-size: 16px;
  }
}

/* Simplified treatment guides: exercise, occupational and speech therapy */
.therapy-guide {
  --therapy-accent: #5f86cc;
  --therapy-accent-soft: #eef4fd;
  --therapy-ink: #142033;
  --therapy-muted: #5f6d7e;
  padding: 12px 0 0;
  color: var(--therapy-ink);
}

.therapy-guide--occupational {
  --therapy-accent: #789956;
  --therapy-accent-soft: #f1f6ec;
}

.therapy-guide--speech {
  --therapy-accent: #3b9bb0;
  --therapy-accent-soft: #edf7f8;
}

.therapy-guide figure,
.therapy-guide dl,
.therapy-guide dd {
  margin: 0;
}

.therapy-guide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.therapy-guide .medipium-inline-picture,
.therapy-guide .medipium-inline-image-placeholder {
  display: block;
  width: 100%;
  height: 100%;
}

.therapy-guide .medipium-inline-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: inherit;
  color: #718096;
  background: #edf2f7;
  font-size: 14px;
  font-weight: 700;
}

.therapy-guide-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(480px, .92fr);
  gap: clamp(52px, 6vw, 100px);
  align-items: center;
  min-height: 540px;
  padding: 38px 0 72px;
}

.therapy-guide-kicker,
.therapy-detail__copy > span {
  display: block;
  color: var(--therapy-accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
}

.therapy-guide-intro__copy h3 {
  margin: 18px 0 28px;
  font-size: clamp(42px, 3.35vw, 64px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  word-break: keep-all;
}

.therapy-guide-intro__copy p {
  max-width: 720px;
  margin: 0 0 12px;
  color: var(--therapy-muted);
  font-size: 17px;
  line-height: 1.9;
  word-break: keep-all;
}

.therapy-guide-intro__visual {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  background: #edf2f7;
}

.therapy-guide-intro__visual::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 34%;
  height: 9px;
  content: '';
  background: var(--therapy-accent);
}

.therapy-quick-nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0 0 92px;
  border-top: 1px solid #dbe3ed;
  border-bottom: 1px solid #dbe3ed;
}

.therapy-quick-nav a {
  position: relative;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  min-height: 82px;
  padding: 16px 12px;
  color: #344154;
  border-right: 1px solid #dbe3ed;
  font-size: clamp(14px, 1vw, 17px);
  font-weight: 700;
  text-align: center;
  transition: color .2s ease, background-color .2s ease;
}

.therapy-quick-nav a:last-child {
  border-right: 0;
}

.therapy-quick-nav a::after {
  position: absolute;
  right: 50%;
  bottom: -1px;
  left: 50%;
  height: 3px;
  content: '';
  background: var(--therapy-accent);
  transition: right .24s ease, left .24s ease;
}

.therapy-quick-nav a:hover,
.therapy-quick-nav a:focus-visible,
.therapy-quick-nav a.is-active {
  color: var(--therapy-accent);
  background: var(--therapy-accent-soft);
}

.therapy-quick-nav a:hover::after,
.therapy-quick-nav a:focus-visible::after,
.therapy-quick-nav a.is-active::after {
  right: 0;
  left: 0;
}

.therapy-quick-nav span {
  color: var(--therapy-accent);
  font-size: 12px;
  font-weight: 800;
}

.therapy-detail-list {
  display: grid;
}

.therapy-detail {
  display: grid;
  grid-template-columns: minmax(440px, .95fr) minmax(0, 1.05fr);
  gap: clamp(60px, 8vw, 130px);
  align-items: center;
  min-height: 560px;
  padding: 82px 0;
  scroll-margin-top: 140px;
}

.therapy-detail:nth-child(even) {
  background: #f6f8fb;
  box-shadow: 0 0 0 100vmax #f6f8fb;
  clip-path: inset(0 -100vmax);
}

.therapy-detail--reverse .therapy-detail__visual {
  order: 2;
}

.therapy-detail--reverse .therapy-detail__copy {
  order: 1;
}

.therapy-detail__visual {
  overflow: hidden;
  min-height: 390px;
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  background: #eaf0f6;
}

.therapy-detail__copy {
  padding: 24px 0;
}

.therapy-detail__copy h3 {
  margin: 14px 0 24px;
  font-size: clamp(32px, 2.7vw, 48px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.therapy-detail__copy p {
  max-width: 700px;
  margin: 0 0 11px;
  color: var(--therapy-muted);
  font-size: 17px;
  line-height: 1.88;
  word-break: keep-all;
}

.therapy-detail__copy dl {
  display: grid;
  gap: 8px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid #d8e0ea;
}

.therapy-detail__copy dl > div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.therapy-detail__copy dt {
  color: var(--therapy-accent);
  font-size: 14px;
  font-weight: 800;
}

.therapy-detail__copy dd {
  color: #3d4a5c;
  font-size: 15px;
  line-height: 1.65;
}

.therapy-detail:last-child {
  padding-bottom: 112px;
}

@media (max-width: 1180px) {
  .therapy-guide-intro {
    grid-template-columns: minmax(0, .9fr) minmax(390px, 1.1fr);
    gap: 42px;
  }

  .therapy-guide-intro__visual {
    min-height: 390px;
  }

  .therapy-quick-nav a {
    gap: 6px;
    min-height: 74px;
    font-size: 14px;
  }

  .therapy-detail {
    grid-template-columns: minmax(360px, .95fr) minmax(0, 1.05fr);
    gap: 50px;
  }
}

@media (max-width: 900px) {
  .therapy-guide-intro,
  .therapy-detail {
    grid-template-columns: 1fr;
  }

  .therapy-guide-intro {
    gap: 34px;
    min-height: 0;
    padding-top: 20px;
  }

  .therapy-guide-intro__visual {
    min-height: 0;
  }

  .therapy-quick-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 52px;
    border: 1px solid #dbe3ed;
  }

  .therapy-quick-nav a,
  .therapy-quick-nav a:last-child {
    min-height: 64px;
    border-right: 1px solid #dbe3ed;
    border-bottom: 1px solid #dbe3ed;
  }

  .therapy-quick-nav a:nth-child(even) {
    border-right: 0;
  }

  .therapy-quick-nav a:last-child {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 0;
  }

  .therapy-detail {
    gap: 28px;
    min-height: 0;
    padding: 58px 0;
  }

  .therapy-detail--reverse .therapy-detail__visual,
  .therapy-detail--reverse .therapy-detail__copy {
    order: initial;
  }

  .therapy-detail__visual {
    min-height: 0;
  }

  .therapy-detail__copy {
    padding: 0;
  }
}

@media (max-width: 560px) {
  .therapy-guide {
    padding-top: 0;
  }

  .therapy-guide-intro {
    padding: 4px 0 46px;
  }

  .therapy-guide-intro__copy h3 {
    margin: 12px 0 20px;
    font-size: 34px;
  }

  .therapy-guide-intro__copy p,
  .therapy-detail__copy p {
    font-size: 15px;
    line-height: 1.78;
  }

  .therapy-quick-nav a {
    justify-content: flex-start;
    min-height: 58px;
    padding: 13px 14px;
    font-size: 13px;
  }

  .therapy-detail {
    padding: 46px 0;
  }

  .therapy-detail__copy h3 {
    margin: 10px 0 17px;
    font-size: 30px;
  }

  .therapy-detail__copy dl > div {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 10px;
  }
}

/* Exercise therapy */
.park-content-shell.is-exercise-therapy-page {
  padding-bottom: 0;
}

.exercise-therapy-content {
  --et-blue: #5f84d6;
  --et-deep: #19355f;
  --et-ink: #172235;
  --et-muted: #5b6878;
  --et-line: #dce5ef;
  --et-soft: #f3f7fb;
  margin-top: clamp(42px, 4vw, 64px);
  color: var(--et-ink);
}

.exercise-therapy-content figure {
  margin: 0;
}

.exercise-therapy-content img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exercise-therapy-content .medipium-inline-image-placeholder {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  padding: 20px;
  color: #6c7b8f;
  border: 0;
  border-radius: 0;
  background: #eaf1f7;
}

.et-eyebrow {
  display: block;
  margin-bottom: 17px;
  color: var(--et-blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
}

.et-intro {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(540px, 1.18fr);
  gap: clamp(64px, 6vw, 112px);
  align-items: stretch;
  min-height: 580px;
}

.et-intro-copy {
  align-self: center;
  padding: clamp(48px, 5vw, 78px) 0;
}

.et-intro-copy::before {
  display: block;
  width: 58px;
  height: 3px;
  margin-bottom: 30px;
  content: "";
  background: var(--et-blue);
}

.et-intro-copy h3 {
  max-width: 680px;
  margin: 0 0 36px;
  color: var(--et-ink);
  font-size: clamp(40px, 3.5vw, 58px);
  font-weight: 740;
  line-height: 1.22;
  word-break: keep-all;
}

.et-intro-copy p,
.et-assessment-copy p {
  margin: 0 0 14px;
  color: var(--et-muted);
  font-size: 17px;
  line-height: 1.85;
  word-break: keep-all;
}

.et-intro-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 36px 0 0;
  padding: 26px 0 0;
  border-top: 1px solid var(--et-line);
  list-style: none;
}

.et-intro-points li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 2px 10px;
  min-width: 0;
  padding-right: 13px;
}

.et-intro-points li + li {
  padding-left: 15px;
  border-left: 1px solid var(--et-line);
}

.et-intro-points svg {
  width: 24px;
  height: 24px;
  color: var(--et-blue);
  stroke-width: 1.8;
}

.et-intro-points b,
.et-intro-points small {
  display: block;
}

.et-intro-points b {
  font-size: 15px;
  line-height: 1.35;
  white-space: nowrap;
}

.et-intro-points small {
  overflow: hidden;
  margin-top: 3px;
  color: #788699;
  font-size: 12px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.et-intro-visual {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  border-radius: 6px;
  background: #edf2f7;
}

.et-intro-visual::after {
  position: absolute;
  inset: 55% 0 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(20, 42, 70, .58));
}

.et-intro-visual figcaption {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 28px;
  left: 30px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  color: #fff;
}

.et-intro-visual figcaption strong {
  font-size: 20px;
  font-weight: 650;
}

.et-intro-visual figcaption span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
}

.et-assessment {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  width: 100vw;
  margin: clamp(88px, 9vw, 144px) 0 0 calc(50% - 50vw);
  padding: 0 max(48px, calc((100vw - 1280px) / 2));
  background: var(--et-soft);
}

.et-assessment-visual {
  min-height: 520px;
}

.et-assessment-copy {
  align-self: center;
  padding: clamp(62px, 7vw, 112px) clamp(48px, 6vw, 100px);
}

.et-section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  color: var(--et-blue);
  border: 1px solid #bfd0e6;
  border-radius: 50%;
  background: #fff;
}

.et-section-icon svg {
  width: 27px;
  height: 27px;
  stroke-width: 1.7;
}

.et-assessment-copy h3,
.et-section-heading h3,
.et-principle > header h3 {
  margin: 0;
  color: var(--et-ink);
  font-size: clamp(34px, 2.8vw, 46px);
  font-weight: 720;
  line-height: 1.3;
  word-break: keep-all;
}

.et-assessment-copy h3 {
  margin-bottom: 28px;
}

.et-program,
.et-target {
  padding: clamp(96px, 8vw, 138px) 0;
}

.et-section-heading {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .75fr);
  gap: clamp(50px, 7vw, 116px);
  align-items: end;
  margin-bottom: clamp(46px, 5vw, 76px);
}

.et-section-heading > p {
  margin: 0;
  padding-left: 32px;
  color: var(--et-muted);
  border-left: 1px solid var(--et-line);
  font-size: 16px;
  line-height: 1.8;
  word-break: keep-all;
}

.et-program-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(46px, 5vw, 82px);
  border-top: 1px solid var(--et-line);
}

.et-program-item {
  display: grid;
  grid-template-columns: minmax(210px, .85fr) minmax(0, 1.15fr);
  gap: clamp(26px, 3vw, 46px);
  align-items: center;
  min-width: 0;
  padding: clamp(38px, 4vw, 60px) 0;
  border-bottom: 1px solid var(--et-line);
}

.et-program-item figure {
  min-height: 250px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 5px;
  background: #edf2f7;
}

.et-program-item em {
  display: block;
  margin-bottom: 12px;
  color: var(--et-blue);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.et-program-item h4 {
  margin: 0 0 18px;
  color: var(--et-ink);
  font-size: 25px;
  font-weight: 690;
  line-height: 1.35;
}

.et-program-item p,
.et-principle-flow p,
.et-target-list p {
  margin: 0;
  color: var(--et-muted);
  font-size: 15px;
  line-height: 1.78;
  word-break: keep-all;
}

.et-principle {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: clamp(96px, 8vw, 138px) max(48px, calc((100vw - 1280px) / 2));
  background: #eef4fa;
}

.et-principle > header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, .7fr);
  gap: clamp(50px, 7vw, 112px);
  align-items: end;
  margin-bottom: 58px;
}

.et-principle > header .et-eyebrow,
.et-principle > header h3 {
  grid-column: 1;
}

.et-principle > header .et-eyebrow {
  margin-bottom: -32px;
}

.et-principle > header p {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0;
  padding-left: 32px;
  color: var(--et-muted);
  border-left: 1px solid #cddbea;
  font-size: 16px;
  line-height: 1.8;
}

.et-principle-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 70px minmax(0, 1fr);
  align-items: stretch;
}

.et-principle-flow article {
  display: grid;
  grid-template-columns: minmax(230px, .9fr) minmax(0, 1.1fr);
  background: #fff;
}

.et-principle-flow figure {
  min-height: 380px;
  background: #e4ecf5;
}

.et-principle-flow article > div {
  align-self: center;
  padding: 36px;
}

.et-principle-flow article > div > span {
  display: block;
  margin-bottom: 13px;
  color: var(--et-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}

.et-principle-flow h4 {
  margin: 0 0 18px;
  font-size: 26px;
  font-weight: 690;
}

.et-principle-plus {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--et-deep);
}

.et-principle-plus svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.4;
}

.et-target-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--et-line);
  border-bottom: 1px solid var(--et-line);
}

.et-target-list article {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 25px;
  min-width: 0;
  padding: 44px clamp(28px, 3vw, 48px);
}

.et-target-list article + article {
  border-left: 1px solid var(--et-line);
}

.et-target-list article > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  color: var(--et-blue);
  border: 1px solid #c5d6ea;
  border-radius: 50%;
  background: #f7faff;
}

.et-target-list svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.7;
}

.et-target-list h4 {
  margin: 2px 0 13px;
  font-size: 22px;
  font-weight: 680;
}

.et-summary {
  display: grid;
  grid-template-columns: minmax(300px, .75fr) minmax(0, 1.25fr);
  gap: clamp(60px, 8vw, 140px);
  align-items: center;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: clamp(78px, 7vw, 110px) max(48px, calc((100vw - 1640px) / 2));
  background: #f2f6fa;
}

.et-summary > div > span {
  display: block;
  margin-bottom: 17px;
  color: var(--et-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}

.et-summary h3 {
  margin: 0;
  font-size: clamp(34px, 2.8vw, 46px);
  font-weight: 720;
  line-height: 1.35;
  word-break: keep-all;
}

.et-summary ol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.et-summary li {
  min-width: 0;
  padding: 0 22px;
}

.et-summary li + li {
  border-left: 1px solid #ccd9e7;
}

.et-summary li b,
.et-summary li strong,
.et-summary li span {
  display: block;
}

.et-summary li b {
  margin-bottom: 15px;
  color: var(--et-blue);
  font-size: 13px;
}

.et-summary li strong {
  margin-bottom: 8px;
  color: var(--et-ink);
  font-size: 18px;
}

.et-summary li span {
  color: #6f7c8c;
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 1180px) {
  .et-intro {
    grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
    gap: 48px;
  }

  .et-intro-copy h3 {
    font-size: 42px;
  }

  .et-program-item {
    grid-template-columns: 1fr;
    align-content: start;
  }

  .et-principle-flow {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .et-principle-plus {
    height: 62px;
  }

  .et-principle-flow article {
    grid-template-columns: minmax(300px, .85fr) minmax(0, 1.15fr);
  }

  .et-summary {
    grid-template-columns: 1fr;
    gap: 45px;
  }
}

@media (max-width: 820px) {
  .exercise-therapy-content {
    margin-top: 36px;
  }

  .et-intro {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: 0;
  }

  .et-intro-copy {
    padding: 32px 0 0;
  }

  .et-intro-copy h3 {
    margin-bottom: 25px;
    font-size: 36px;
  }

  .et-intro-copy p,
  .et-assessment-copy p {
    font-size: 15px;
    line-height: 1.75;
  }

  .et-intro-visual {
    min-height: 390px;
    aspect-ratio: 4 / 3;
  }

  .et-intro-points {
    margin-top: 28px;
    padding-top: 22px;
  }

  .et-intro-points li {
    grid-template-columns: 27px minmax(0, 1fr);
    padding-right: 7px;
  }

  .et-intro-points li + li {
    padding-left: 9px;
  }

  .et-intro-points svg {
    width: 21px;
    height: 21px;
  }

  .et-intro-points b {
    font-size: 13px;
  }

  .et-intro-points small {
    font-size: 10px;
  }

  .et-intro-visual figcaption span {
    display: none;
  }

  .et-assessment {
    grid-template-columns: 1fr;
    margin-top: 76px;
    padding: 0 24px;
  }

  .et-assessment-visual {
    min-height: 320px;
    aspect-ratio: 4 / 3;
  }

  .et-assessment-copy {
    padding: 42px 0 52px;
  }

  .et-assessment-copy h3,
  .et-section-heading h3,
  .et-principle > header h3,
  .et-summary h3 {
    font-size: 31px;
  }

  .et-program,
  .et-target {
    padding: 76px 0;
  }

  .et-section-heading,
  .et-principle > header {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 38px;
  }

  .et-section-heading > p,
  .et-principle > header p {
    grid-column: auto;
    grid-row: auto;
    padding: 0;
    border-left: 0;
    font-size: 15px;
  }

  .et-principle > header .et-eyebrow {
    margin-bottom: -12px;
  }

  .et-program-grid {
    grid-template-columns: 1fr;
  }

  .et-program-item {
    grid-template-columns: 40% minmax(0, 1fr);
    gap: 22px;
    padding: 28px 0;
  }

  .et-program-item figure {
    min-height: 0;
  }

  .et-program-item h4 {
    font-size: 20px;
  }

  .et-program-item p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }

  .et-principle {
    padding: 72px 24px;
  }

  .et-principle-flow article {
    grid-template-columns: 1fr;
  }

  .et-principle-flow figure {
    min-height: 280px;
    aspect-ratio: 16 / 10;
  }

  .et-principle-flow article > div {
    padding: 28px;
  }

  .et-target-list {
    grid-template-columns: 1fr;
  }

  .et-target-list article {
    padding: 30px 0;
  }

  .et-target-list article + article {
    border-top: 1px solid var(--et-line);
    border-left: 0;
  }

  .et-summary {
    gap: 36px;
    padding: 68px 24px;
  }

  .et-summary ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 0;
  }

  .et-summary li:nth-child(3) {
    border-left: 0;
  }
}

@media (max-width: 560px) {
  .et-intro-copy h3 {
    font-size: 31px;
  }

  .et-intro-points {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .et-intro-points li,
  .et-intro-points li + li {
    padding: 0;
    border-left: 0;
  }

  .et-intro-points small {
    font-size: 12px;
  }

  .et-intro-visual {
    min-height: 300px;
  }

  .et-intro-visual figcaption {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .et-assessment {
    padding: 0 18px;
  }

  .et-assessment-visual {
    min-height: 260px;
  }

  .et-program-item {
    grid-template-columns: 1fr;
  }

  .et-program-item figure {
    aspect-ratio: 16 / 10;
  }

  .et-program-item p {
    display: block;
  }

  .et-principle {
    padding-right: 18px;
    padding-left: 18px;
  }

  .et-principle-flow figure {
    min-height: 240px;
  }

  .et-target-list article {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 18px;
  }

  .et-target-list article > span {
    width: 54px;
    height: 54px;
  }

  .et-target-list svg {
    width: 25px;
    height: 25px;
  }

  .et-summary ol {
    grid-template-columns: 1fr;
  }

  .et-summary li,
  .et-summary li + li,
  .et-summary li:nth-child(3) {
    padding: 18px 0 0;
    border-top: 1px solid #ccd9e7;
    border-left: 0;
  }
}

/* Physical therapy */
.physical-therapy-content {
  --pt-blue: #5f84d6;
  --pt-deep: #19355f;
  --pt-ink: #172235;
  --pt-muted: #5b6878;
  --pt-line: #dce5ef;
  margin-top: clamp(42px, 4vw, 64px);
  color: var(--pt-ink);
}

.physical-therapy-content figure {
  margin: 0;
}

.physical-therapy-content .medipium-inline-image-placeholder {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  padding: 20px;
  color: #6c7b8f;
  border-radius: 0;
  background: #edf2f7;
}

.physical-therapy-content img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pt-eyebrow {
  display: block;
  margin-bottom: 18px;
  color: var(--pt-blue);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .08em;
}

.pt-intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(540px, 1.18fr);
  gap: clamp(64px, 6vw, 112px);
  align-items: stretch;
  width: 100%;
  min-height: 580px;
  padding: 0;
  background: #fff;
}

.pt-intro::before {
  display: none;
}

.pt-intro-copy {
  position: relative;
  z-index: 1;
  align-self: center;
  padding: clamp(48px, 5vw, 78px) 0;
}

.pt-intro-copy::before {
  display: block;
  width: 58px;
  height: 3px;
  margin-bottom: 30px;
  content: "";
  background: var(--pt-blue);
}

.pt-intro-copy h3 {
  max-width: 660px;
  margin: 0 0 38px;
  color: var(--pt-ink);
  font-size: clamp(40px, 3.5vw, 58px);
  font-weight: 740;
  line-height: 1.22;
  word-break: keep-all;
}

.pt-intro-copy p,
.pt-assessment-copy p {
  margin: 0 0 15px;
  color: var(--pt-muted);
  font-size: 17px;
  line-height: 1.85;
  word-break: keep-all;
}

.pt-intro-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 36px 0 0;
  padding: 26px 0 0;
  border-top: 1px solid var(--pt-line);
  list-style: none;
}

.pt-intro-points li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 1px 10px;
  min-width: 0;
  padding-right: 14px;
}

.pt-intro-points li + li {
  padding-left: 16px;
  border-left: 1px solid var(--pt-line);
}

.pt-intro-points span {
  grid-row: 1 / span 2;
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  width: 34px;
  color: var(--pt-blue);
}

.pt-intro-points svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.8;
}

.pt-intro-points b {
  color: var(--pt-ink);
  font-size: 15px;
  line-height: 1.4;
  white-space: nowrap;
}

.pt-intro-points small {
  overflow: hidden;
  color: #788699;
  font-size: 12px;
  line-height: 1.45;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.pt-intro-visual {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 580px;
  overflow: hidden;
  border-radius: 6px;
  background: #edf2f7;
}

.pt-intro-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 58%, rgba(16, 37, 65, .55));
}

.pt-intro-visual figcaption {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 28px;
  left: 30px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  color: #fff;
}

.pt-intro-visual figcaption strong {
  font-size: clamp(20px, 1.6vw, 28px);
}

.pt-intro-visual figcaption span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  opacity: .78;
}

.pt-assessment {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  width: 100vw;
  margin: clamp(88px, 9vw, 144px) 0 0 calc(50% - 50vw);
  padding: 0 max(48px, calc((100vw - 1280px) / 2));
  background: #f1f5f9;
}

.pt-assessment-visual {
  min-height: 520px;
  overflow: hidden;
  background: #e6edf4;
}

.pt-assessment-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(58px, 6vw, 94px);
}

.pt-section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 26px;
  color: var(--pt-blue);
  border: 1px solid #cbdaf0;
  border-radius: 4px;
  background: #fff;
}

.pt-section-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.9;
}

.pt-assessment-copy h3,
.pt-section-heading h3,
.pt-principle > header h3 {
  margin: 0 0 24px;
  color: var(--pt-ink);
  font-size: clamp(34px, 3vw, 50px);
  font-weight: 740;
  line-height: 1.25;
}

.pt-neuro {
  padding: clamp(100px, 9vw, 150px) 0;
}

.pt-section-heading {
  display: grid;
  grid-template-columns: minmax(300px, .85fr) minmax(420px, 1.15fr);
  column-gap: clamp(56px, 7vw, 120px);
  align-items: end;
  margin-bottom: clamp(50px, 5vw, 78px);
}

.pt-section-heading .pt-eyebrow {
  grid-column: 1;
}

.pt-section-heading h3 {
  grid-column: 1;
  margin-bottom: 0;
}

.pt-section-heading > p {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0;
  padding-left: 30px;
  color: var(--pt-muted);
  border-left: 1px solid #cfd9e5;
  font-size: 17px;
  line-height: 1.85;
  word-break: keep-all;
}

.pt-program-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(48px, 6vw, 90px);
  border-top: 1px solid var(--pt-line);
}

.pt-program-item {
  display: grid;
  grid-template-columns: minmax(190px, 42%) minmax(0, 1fr);
  gap: clamp(24px, 3vw, 42px);
  align-items: center;
  padding: 46px 0;
  border-bottom: 1px solid var(--pt-line);
}

.pt-program-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
  background: #edf2f7;
}

.pt-program-item em {
  display: block;
  margin-bottom: 13px;
  color: var(--pt-blue);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .08em;
}

.pt-program-item h4,
.pt-pain-grid h4 {
  margin: 0 0 17px;
  color: var(--pt-ink);
  font-size: clamp(21px, 1.6vw, 27px);
  font-weight: 720;
  line-height: 1.35;
}

.pt-program-item p,
.pt-pain-grid p {
  margin: 0;
  color: var(--pt-muted);
  font-size: 15px;
  line-height: 1.75;
  word-break: keep-all;
}

.pt-principle {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: clamp(92px, 8vw, 132px) max(48px, calc((100vw - 1280px) / 2));
  background: #eaf0f6;
}

.pt-principle > header {
  max-width: 680px;
  margin-bottom: clamp(46px, 5vw, 72px);
}

.pt-principle-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 64px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
}

.pt-principle-flow article {
  display: grid;
  grid-template-columns: minmax(220px, .82fr) minmax(220px, 1fr);
  min-height: 330px;
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
}

.pt-principle-flow figure {
  min-height: 330px;
  overflow: hidden;
  background: #dfe8f1;
}

.pt-principle-flow article > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
}

.pt-principle-flow article > div > span {
  margin-bottom: 17px;
  color: var(--pt-blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
}

.pt-principle-flow h4 {
  margin: 0 0 18px;
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 740;
}

.pt-principle-flow p {
  margin: 0;
  color: var(--pt-muted);
  font-size: 15px;
  line-height: 1.75;
}

.pt-principle-plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  color: var(--pt-deep);
}

.pt-principle-plus svg {
  width: 36px;
  height: 36px;
  stroke-width: 1.5;
}

.pt-pain {
  padding: clamp(100px, 9vw, 150px) 0 clamp(90px, 8vw, 130px);
}

.pt-pain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(32px, 4vw, 60px);
}

.pt-pain-grid article {
  position: relative;
  padding-top: 1px;
}

.pt-pain-grid figure {
  aspect-ratio: 4 / 3;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 4px;
  background: #edf2f7;
}

.pt-pain-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: var(--pt-blue);
  border: 1px solid #cbdaf0;
  border-radius: 50%;
}

.pt-pain-icon svg {
  width: 20px;
  height: 20px;
}

.pt-pain-grid ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.pt-pain-grid li {
  padding: 6px 10px;
  color: #4e6176;
  border: 1px solid #d7e1ec;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 700;
}

.pt-summary {
  display: block;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: clamp(76px, 6vw, 104px) max(40px, calc((100vw - 1840px) / 2));
  color: #172235;
  background: #f4f7fa;
}

.pt-summary-heading {
  max-width: 920px;
  margin: 0 auto clamp(46px, 4vw, 64px);
  text-align: center;
}

.pt-summary-heading > span {
  display: block;
  margin-bottom: 16px;
  color: var(--pt-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.pt-summary h3 {
  margin: 0;
  font-size: clamp(34px, 2.7vw, 48px);
  font-weight: 720;
  line-height: 1.25;
  letter-spacing: 0;
}

.pt-summary-heading p {
  margin: 18px 0 0;
  color: #69778a;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.7;
  word-break: keep-all;
}

.pt-summary ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0;
  border-top: 1px solid #ccd7e4;
  border-bottom: 1px solid #ccd7e4;
  list-style: none;
}

.pt-summary li {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 158px;
  padding: 32px clamp(30px, 3vw, 54px);
  border-left: 1px solid #d7e0ea;
}

.pt-summary li:first-child {
  border-left: 0;
}

.pt-summary-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  color: #5f84cb !important;
  border: 1px solid #b9cae5;
  border-radius: 50%;
  background: rgba(255, 255, 255, .72);
}

.pt-summary-icon svg {
  width: 27px;
  height: 27px;
  stroke-width: 1.7;
}

.pt-summary li span {
  color: #667487;
  font-size: 15px;
  line-height: 1.7;
  word-break: keep-all;
}

.pt-summary li b {
  display: block;
  margin-bottom: 8px;
  color: var(--pt-ink);
  font-size: 20px;
  font-weight: 720;
  line-height: 1.35;
}

@media (max-width: 1180px) {
  .pt-intro {
    grid-template-columns: minmax(0, .9fr) minmax(400px, 1.1fr);
    gap: 46px;
    padding: 0;
  }

  .pt-intro-copy {
    padding-right: 0;
    padding-left: 0;
  }

  .pt-intro-points small {
    display: none;
  }

  .pt-program-grid {
    gap: 0 36px;
  }

  .pt-program-item {
    grid-template-columns: 1fr;
    align-content: start;
  }

  .pt-principle-flow {
    grid-template-columns: 1fr;
  }

  .pt-principle-plus {
    margin: -14px auto;
  }

  .pt-principle-flow article {
    grid-template-columns: minmax(300px, .85fr) 1.15fr;
  }

  .pt-summary {
    padding-right: 36px;
    padding-left: 36px;
  }

  .pt-summary ul {
    max-width: 1080px;
  }

  .pt-summary li {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 16px;
    padding: 28px 24px;
  }

  .pt-summary-icon {
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 820px) {
  .physical-therapy-content {
    margin-top: 36px;
  }

  .pt-intro {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 0;
  }

  .pt-intro::before {
    display: none;
  }

  .pt-intro-copy {
    padding: 32px 0 0;
  }

  .pt-intro-copy h3 {
    margin-bottom: 25px;
    font-size: 36px;
  }

  .pt-intro-copy p,
  .pt-assessment-copy p {
    font-size: 15px;
    line-height: 1.75;
  }

  .pt-intro-visual {
    height: auto;
    min-height: 390px;
    aspect-ratio: 4 / 3;
  }

  .pt-intro-points {
    margin-top: 28px;
    padding-top: 22px;
  }

  .pt-intro-points li {
    grid-template-columns: 28px minmax(0, 1fr);
    padding-right: 8px;
  }

  .pt-intro-points li + li {
    padding-left: 10px;
  }

  .pt-intro-points span {
    width: 28px;
  }

  .pt-intro-points svg {
    width: 21px;
    height: 21px;
  }

  .pt-intro-points b {
    font-size: 14px;
  }

  .pt-intro-visual figcaption {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .pt-intro-visual figcaption span {
    display: none;
  }

  .pt-assessment {
    grid-template-columns: 1fr;
    margin-top: 76px;
    padding: 0 24px;
  }

  .pt-assessment-visual {
    min-height: 320px;
    aspect-ratio: 4 / 3;
  }

  .pt-assessment-copy {
    padding: 40px 0 50px;
  }

  .pt-assessment-copy h3,
  .pt-section-heading h3,
  .pt-principle > header h3 {
    font-size: 31px;
  }

  .pt-neuro,
  .pt-pain {
    padding: 78px 0;
  }

  .pt-section-heading {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 36px;
  }

  .pt-section-heading .pt-eyebrow,
  .pt-section-heading h3,
  .pt-section-heading > p {
    grid-column: auto;
    grid-row: auto;
  }

  .pt-section-heading > p {
    padding: 0;
    border-left: 0;
    font-size: 15px;
  }

  .pt-program-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .pt-program-item {
    grid-template-columns: 42% minmax(0, 1fr);
    gap: 22px;
    padding: 28px 0;
  }

  .pt-program-item h4 {
    font-size: 20px;
  }

  .pt-program-item p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }

  .pt-principle {
    padding: 72px 24px;
  }

  .pt-principle-flow article {
    grid-template-columns: 1fr;
  }

  .pt-principle-flow figure {
    min-height: 280px;
    aspect-ratio: 16 / 10;
  }

  .pt-principle-flow article > div {
    padding: 28px;
  }

  .pt-pain-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .pt-pain-grid figure {
    margin-bottom: 22px;
  }

  .pt-summary {
    padding: 62px 24px;
  }

  .pt-summary ul {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }

  .pt-summary li {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 17px;
    min-height: auto;
    padding: 24px 4px;
    border-bottom: 1px solid #d7e0ea;
    border-left: 0;
  }

  .pt-summary-icon {
    width: 52px;
    height: 52px;
  }

  .pt-summary-icon svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 560px) {
  .pt-intro-points {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pt-intro-points li,
  .pt-intro-points li + li {
    grid-template-columns: 30px minmax(0, 1fr);
    padding: 0;
    border-left: 0;
  }

  .pt-intro-points small {
    display: block;
  }

  .pt-intro-copy h3 {
    font-size: 31px;
  }

  .pt-program-item {
    grid-template-columns: 1fr;
  }

  .pt-program-image {
    aspect-ratio: 16 / 10;
  }

  .pt-program-item p {
    -webkit-line-clamp: 5;
  }

  .pt-principle-flow figure {
    min-height: 230px;
  }
}

/* Occupational therapy */
.occupational-therapy-content {
  --ot-blue: #5f84d6;
  --ot-olive: #8a963e;
  --ot-orange: #f3ab52;
  --ot-deep: #1d365d;
  --ot-ink: #172235;
  --ot-muted: #586779;
  --ot-line: #d9e3ed;
  margin-top: clamp(42px, 4vw, 64px);
  color: var(--ot-ink);
}

.occupational-therapy-content figure {
  margin: 0;
}

.occupational-therapy-content .medipium-inline-picture {
  display: block;
  width: 100%;
  height: 100%;
}

.occupational-therapy-content .medipium-inline-image-placeholder {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  padding: 20px;
  color: #6c7b8f;
  border-radius: 0;
  background: #edf2f7;
}

.occupational-therapy-content img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ot-eyebrow {
  display: block;
  margin-bottom: 17px;
  color: var(--ot-blue);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .08em;
}

.ot-intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(540px, 1.18fr);
  gap: clamp(64px, 6vw, 112px);
  align-items: stretch;
  width: 100%;
  min-height: 580px;
  padding: 0;
  background: #fff;
}

.ot-intro::before {
  display: none;
}

.ot-intro-copy {
  position: relative;
  z-index: 1;
  align-self: center;
  padding: clamp(48px, 5vw, 78px) 0;
}

.ot-intro-copy::before {
  display: block;
  width: 58px;
  height: 3px;
  margin-bottom: 30px;
  content: "";
  background: var(--ot-blue);
}

.ot-intro-copy h3 {
  max-width: 660px;
  margin: 0 0 38px;
  color: var(--ot-ink);
  font-size: clamp(40px, 3.5vw, 58px);
  font-weight: 740;
  line-height: 1.22;
  word-break: keep-all;
}

.ot-intro-copy p,
.ot-meaning-copy p {
  margin: 0 0 15px;
  color: var(--ot-muted);
  font-size: 17px;
  line-height: 1.85;
  word-break: keep-all;
}

.ot-intro-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 36px 0 0;
  padding: 26px 0 0;
  border-top: 1px solid var(--ot-line);
  list-style: none;
}

.ot-intro-points li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 1px 10px;
  min-width: 0;
  padding-right: 14px;
}

.ot-intro-points li + li {
  padding-left: 16px;
  border-left: 1px solid var(--ot-line);
}

.ot-intro-points span {
  grid-row: 1 / span 2;
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  width: 34px;
  color: var(--ot-blue);
}

.ot-intro-points svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.8;
}

.ot-intro-points b {
  color: var(--ot-ink);
  font-size: 15px;
  line-height: 1.4;
  white-space: nowrap;
}

.ot-intro-points small {
  overflow: hidden;
  color: #788699;
  font-size: 12px;
  line-height: 1.45;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.ot-intro-visual {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 580px;
  overflow: hidden;
  border-radius: 6px;
  background: #edf2f7;
}

.ot-intro-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent 58%, rgba(16, 37, 65, .55));
}

.ot-intro-visual figcaption {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 28px;
  left: 30px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  color: #fff;
}

.ot-intro-visual figcaption strong {
  font-size: clamp(20px, 1.6vw, 28px);
}

.ot-intro-visual figcaption span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  opacity: .78;
}

.ot-meaning {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  width: 100vw;
  margin: clamp(88px, 9vw, 144px) 0 0 calc(50% - 50vw);
  padding: 0 max(48px, calc((100vw - 1280px) / 2));
  background: #f1f5f8;
}

.ot-meaning-visual {
  min-height: 540px;
  overflow: hidden;
  background: #e5edf4;
}

.ot-meaning-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(58px, 6vw, 94px);
}

.ot-section-icon,
.ot-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ot-blue);
  border: 1px solid #c9d8ed;
  background: #fff;
}

.ot-section-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 26px;
  border-radius: 4px;
}

.ot-section-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.9;
}

.ot-meaning-copy h3,
.ot-section-heading h3,
.ot-process-head h3 {
  margin: 0 0 24px;
  color: var(--ot-ink);
  font-size: clamp(34px, 3vw, 50px);
  font-weight: 740;
  line-height: 1.25;
  word-break: keep-all;
}

.ot-return {
  padding: clamp(104px, 9vw, 150px) 0;
}

.ot-section-heading {
  display: grid;
  grid-template-columns: minmax(300px, .85fr) minmax(420px, 1.15fr);
  column-gap: clamp(56px, 7vw, 120px);
  align-items: end;
  margin-bottom: clamp(50px, 5vw, 76px);
}

.ot-section-heading .ot-eyebrow {
  grid-column: 1;
}

.ot-section-heading h3 {
  grid-column: 1;
  margin-bottom: 0;
}

.ot-section-heading > p {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0;
  padding-left: clamp(30px, 4vw, 62px);
  color: var(--ot-muted);
  border-left: 1px solid var(--ot-line);
  font-size: 17px;
  line-height: 1.85;
  word-break: keep-all;
}

.ot-return-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--ot-deep);
  border-bottom: 1px solid var(--ot-line);
}

.ot-return-grid article {
  display: grid;
  grid-template-columns: minmax(220px, .86fr) minmax(0, 1.14fr);
  min-height: 390px;
}

.ot-return-grid article + article {
  border-left: 1px solid var(--ot-line);
}

.ot-return-grid figure {
  min-height: 100%;
  overflow: hidden;
  background: #edf2f7;
}

.ot-return-grid article > div {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 4vw, 58px);
}

.ot-feature-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 24px;
  border-radius: 50%;
}

.ot-feature-icon svg {
  width: 25px;
  height: 25px;
}

.ot-return-grid em {
  position: absolute;
  top: 24px;
  right: 26px;
  color: #aab7c7;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.ot-return-grid h4 {
  margin: 0 0 17px;
  color: var(--ot-ink);
  font-size: clamp(22px, 1.7vw, 28px);
  line-height: 1.35;
  word-break: keep-all;
}

.ot-return-grid p {
  margin: 0;
  color: var(--ot-muted);
  font-size: 15px;
  line-height: 1.8;
  word-break: keep-all;
}

.ot-integrated {
  position: relative;
  z-index: 1;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: clamp(92px, 8vw, 132px) 0;
  background: #edf4f8;
}

.ot-integrated-inner {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr);
  gap: clamp(60px, 7vw, 120px);
  align-items: center;
  width: min(1280px, calc(100% - 96px));
  margin: 0 auto;
}

.ot-integrated-copy h3 {
  margin: 0 0 32px;
  color: var(--ot-ink);
  font-size: clamp(38px, 3.2vw, 54px);
  line-height: 1.25;
  word-break: keep-all;
}

.ot-integrated-copy p {
  margin: 0;
  color: var(--ot-muted);
  font-size: 17px;
  line-height: 1.9;
  word-break: keep-all;
}

.ot-integrated-visual {
  min-height: 460px;
  overflow: hidden;
  border-radius: 6px;
  background: #e1eaf1;
}

.ot-process {
  padding: clamp(104px, 9vw, 150px) 0;
}

.ot-process-head {
  max-width: 850px;
  margin-bottom: clamp(52px, 6vw, 82px);
}

.ot-process-head > p {
  margin: 0;
  color: var(--ot-muted);
  font-size: 17px;
  line-height: 1.85;
  word-break: keep-all;
}

.ot-process-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ot-deep);
  border-bottom: 1px solid var(--ot-line);
  list-style: none;
}

.ot-process-flow li {
  position: relative;
  min-height: 300px;
  padding: 48px clamp(32px, 4vw, 64px);
}

.ot-process-flow li + li {
  border-left: 1px solid var(--ot-line);
}

.ot-process-flow li > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 36px;
  color: var(--ot-blue);
  border-radius: 50%;
  background: #edf3fb;
}

.ot-process-flow svg {
  width: 26px;
  height: 26px;
}

.ot-process-flow em {
  position: absolute;
  top: 52px;
  right: 38px;
  color: var(--ot-blue);
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: .05em;
}

.ot-process-flow h4 {
  margin: 0 0 18px;
  color: var(--ot-ink);
  font-size: 25px;
}

.ot-process-flow p {
  margin: 0;
  color: var(--ot-muted);
  font-size: 15px;
  line-height: 1.8;
  word-break: keep-all;
}

.ot-programs {
  position: relative;
  z-index: 1;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: clamp(100px, 9vw, 150px) max(48px, calc((100vw - 1280px) / 2));
  background: #f7f9fb;
}

.ot-program-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.ot-program-grid article {
  display: grid;
  grid-template-columns: minmax(230px, .9fr) minmax(0, 1.1fr);
  min-height: 360px;
  overflow: hidden;
  border: 1px solid #dfe7ef;
  border-radius: 6px;
  background: #fff;
}

.ot-program-grid figure {
  min-height: 100%;
  overflow: hidden;
  background: #e8eef4;
}

.ot-program-grid article > div {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 4vw, 54px);
}

.ot-program-grid article > div > span {
  position: absolute;
  top: 26px;
  right: 28px;
  color: #b3bdca;
  font-size: 13px;
  font-weight: 800;
}

.ot-program-grid small {
  display: block;
  margin-bottom: 12px;
  color: var(--ot-blue);
  font-size: 11px;
  font-weight: 850;
  line-height: 1.4;
  letter-spacing: .04em;
}

.ot-program-grid h4 {
  margin: 0 0 18px;
  color: var(--ot-ink);
  font-size: clamp(22px, 1.7vw, 28px);
  line-height: 1.35;
  word-break: keep-all;
}

.ot-program-grid p {
  margin: 0;
  color: var(--ot-muted);
  font-size: 15px;
  line-height: 1.8;
  word-break: keep-all;
}

.ot-summary {
  display: grid;
  grid-template-columns: minmax(430px, .82fr) minmax(780px, 1.58fr);
  gap: clamp(72px, 6vw, 120px);
  align-items: center;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: clamp(78px, 7vw, 110px) max(48px, calc((100vw - 1640px) / 2));
  background: #eef3f7;
}

.ot-summary > div > span {
  display: block;
  margin-bottom: 20px;
  color: var(--ot-blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .06em;
}

.ot-summary > div h3 {
  margin: 0;
  color: var(--ot-ink);
  font-size: clamp(33px, 3vw, 48px);
  line-height: 1.28;
  word-break: keep-all;
}

.ot-summary ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(48px, 4vw, 84px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.ot-summary li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 4px 18px;
  align-items: start;
}

.ot-summary li > span {
  grid-row: 1 / span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--ot-blue);
}

.ot-summary li svg {
  width: 34px;
  height: 34px;
  stroke-width: 1.8;
}

.ot-summary li b {
  color: var(--ot-ink);
  font-size: 19px;
  line-height: 1.4;
}

.ot-summary li p {
  margin: 0;
  color: var(--ot-muted);
  font-size: 15px;
  line-height: 1.7;
  word-break: keep-all;
}

.park-content-shell.is-occupational-therapy-page {
  padding-bottom: 0;
}

@media (max-width: 1180px) {
  .ot-intro {
    grid-template-columns: minmax(0, .9fr) minmax(400px, 1.1fr);
    gap: 46px;
    padding: 0;
  }

  .ot-intro-copy {
    padding-right: 0;
    padding-left: 0;
  }

  .ot-intro-points small {
    display: none;
  }

  .ot-return-grid article,
  .ot-program-grid article {
    grid-template-columns: 1fr;
  }

  .ot-return-grid figure,
  .ot-program-grid figure {
    min-height: 280px;
    aspect-ratio: 16 / 10;
  }

  .ot-integrated-inner {
    grid-template-columns: minmax(0, .9fr) minmax(440px, 1.1fr);
    gap: 54px;
  }

  .ot-summary {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .ot-summary ul {
    gap: 42px;
  }
}

@media (max-width: 820px) {
  .occupational-therapy-content {
    margin-top: 36px;
  }

  .ot-intro,
  .ot-meaning,
  .ot-integrated-inner {
    grid-template-columns: 1fr;
  }

  .ot-intro {
    gap: 34px;
    padding: 0;
  }

  .ot-intro::before {
    display: none;
  }

  .ot-intro-copy {
    padding: 32px 0 0;
  }

  .ot-intro-copy h3 {
    margin-bottom: 25px;
    font-size: 36px;
  }

  .ot-intro-copy p,
  .ot-meaning-copy p,
  .ot-integrated-copy p,
  .ot-process-head > p {
    font-size: 15px;
    line-height: 1.75;
  }

  .ot-intro-visual {
    height: auto;
    min-height: 390px;
    aspect-ratio: 4 / 3;
  }

  .ot-intro-points {
    margin-top: 28px;
    padding-top: 22px;
  }

  .ot-intro-points li {
    grid-template-columns: 28px minmax(0, 1fr);
    padding-right: 8px;
  }

  .ot-intro-points li + li {
    padding-left: 10px;
  }

  .ot-intro-points span {
    width: 28px;
  }

  .ot-intro-points svg {
    width: 21px;
    height: 21px;
  }

  .ot-intro-points b {
    font-size: 14px;
  }

  .ot-intro-visual figcaption {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .ot-intro-visual figcaption span {
    display: none;
  }

  .ot-meaning {
    margin-top: 76px;
    padding: 0 24px;
  }

  .ot-meaning-visual {
    min-height: 320px;
    aspect-ratio: 4 / 3;
  }

  .ot-meaning-copy {
    padding: 40px 0 50px;
  }

  .ot-meaning-copy h3,
  .ot-section-heading h3,
  .ot-process-head h3 {
    font-size: 31px;
  }

  .ot-return,
  .ot-process {
    padding: 78px 0;
  }

  .ot-section-heading {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 36px;
  }

  .ot-section-heading .ot-eyebrow,
  .ot-section-heading h3,
  .ot-section-heading > p {
    grid-column: auto;
    grid-row: auto;
  }

  .ot-section-heading > p {
    padding: 0;
    border-left: 0;
    font-size: 15px;
  }

  .ot-return-grid,
  .ot-process-flow,
  .ot-program-grid {
    grid-template-columns: 1fr;
  }

  .ot-return-grid article + article,
  .ot-process-flow li + li {
    border-top: 1px solid var(--ot-line);
    border-left: 0;
  }

  .ot-return-grid article {
    grid-template-columns: 42% minmax(0, 1fr);
    min-height: 290px;
  }

  .ot-return-grid figure {
    min-height: 100%;
    aspect-ratio: auto;
  }

  .ot-return-grid article > div {
    padding: 30px 24px;
  }

  .ot-integrated {
    padding: 78px 0;
  }

  .ot-integrated-inner {
    width: calc(100% - 48px);
    gap: 36px;
  }

  .ot-integrated-copy h3 {
    font-size: 34px;
  }

  .ot-integrated-visual {
    min-height: 320px;
    aspect-ratio: 4 / 3;
  }

  .ot-process-head {
    margin-bottom: 38px;
  }

  .ot-process-flow li {
    min-height: 0;
    padding: 34px 0;
  }

  .ot-process-flow em {
    top: 40px;
    right: 6px;
  }

  .ot-programs {
    padding: 78px 24px;
  }

  .ot-program-grid {
    gap: 18px;
  }

  .ot-program-grid article {
    grid-template-columns: 42% minmax(0, 1fr);
    min-height: 290px;
  }

  .ot-program-grid figure {
    min-height: 100%;
    aspect-ratio: auto;
  }

  .ot-program-grid article > div {
    padding: 28px 22px;
  }

  .ot-summary {
    gap: 36px;
    padding: 62px 24px;
  }

  .ot-summary ul {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

@media (max-width: 560px) {
  .ot-intro-points {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ot-intro-points li,
  .ot-intro-points li + li {
    grid-template-columns: 30px minmax(0, 1fr);
    padding: 0;
    border-left: 0;
  }

  .ot-intro-points small {
    display: block;
  }

  .ot-intro-copy h3,
  .ot-integrated-copy h3 {
    font-size: 31px;
  }

  .ot-return-grid article,
  .ot-program-grid article {
    grid-template-columns: 1fr;
  }

  .ot-return-grid figure,
  .ot-program-grid figure {
    min-height: 230px;
    aspect-ratio: 16 / 10;
  }

  .ot-program-grid h4,
  .ot-return-grid h4 {
    font-size: 21px;
  }
}

/* Speech therapy */
.speech-therapy-content {
  --st-blue: #5f84d6;
  --st-cyan: #5aa9bd;
  --st-olive: #8a963e;
  --st-orange: #f3ab52;
  --st-ink: #172235;
  --st-muted: #59687a;
  --st-line: #d8e2ec;
  margin-top: clamp(42px, 4vw, 64px);
  color: var(--st-ink);
}

.speech-therapy-content figure {
  margin: 0;
}

.speech-therapy-content .medipium-inline-picture {
  display: block;
  width: 100%;
  height: 100%;
}

.speech-therapy-content .medipium-inline-image-placeholder {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  padding: 20px;
  color: #6c7b8f;
  border-radius: 0;
  background: #edf2f7;
}

.speech-therapy-content img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.st-eyebrow {
  display: block;
  margin-bottom: 17px;
  color: var(--st-blue);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .08em;
}

.st-intro {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(540px, 1.18fr);
  gap: clamp(64px, 6vw, 112px);
  align-items: stretch;
  width: 100%;
  min-height: 580px;
}

.st-intro-copy {
  position: relative;
  align-self: center;
  padding: clamp(48px, 5vw, 78px) 0;
}

.st-intro-copy::before {
  display: block;
  width: 58px;
  height: 3px;
  margin-bottom: 30px;
  content: "";
  background: var(--st-blue);
}

.st-intro-copy h3 {
  max-width: 680px;
  margin: 0 0 38px;
  color: var(--st-ink);
  font-size: clamp(40px, 3.5vw, 58px);
  font-weight: 740;
  line-height: 1.22;
  word-break: keep-all;
}

.st-intro-copy p,
.st-definition-copy p {
  margin: 0 0 15px;
  color: var(--st-muted);
  font-size: 17px;
  line-height: 1.85;
  word-break: keep-all;
}

.st-intro-visual {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  border-radius: 6px;
  background: #edf2f7;
}

.st-intro-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent 58%, rgba(20, 43, 70, .54));
}

.st-intro-visual figcaption {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 28px;
  left: 30px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  color: #fff;
}

.st-intro-visual figcaption strong {
  font-size: clamp(20px, 1.6vw, 28px);
}

.st-intro-visual figcaption span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  opacity: .78;
}

.st-definition {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  width: 100vw;
  margin: clamp(88px, 9vw, 144px) 0 0 calc(50% - 50vw);
  padding: 0 max(48px, calc((100vw - 1280px) / 2));
  background: #f1f5f8;
}

.st-definition-visual {
  min-height: 540px;
  overflow: hidden;
  background: #e5edf4;
}

.st-definition-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(58px, 6vw, 94px);
}

.st-section-icon,
.st-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--st-blue);
  border: 1px solid #c9d8ed;
  background: #fff;
}

.st-section-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 26px;
  border-radius: 4px;
}

.st-section-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.9;
}

.st-definition-copy h3,
.st-section-heading h3,
.st-process header h3 {
  margin: 0 0 24px;
  color: var(--st-ink);
  font-size: clamp(34px, 3vw, 50px);
  font-weight: 740;
  line-height: 1.25;
  word-break: keep-all;
}

.st-approach,
.st-disorders,
.st-programs {
  padding: clamp(104px, 9vw, 150px) 0;
}

.st-section-heading {
  display: grid;
  grid-template-columns: minmax(340px, .88fr) minmax(440px, 1.12fr);
  column-gap: clamp(56px, 7vw, 120px);
  align-items: end;
  margin-bottom: clamp(50px, 5vw, 76px);
}

.st-section-heading .st-eyebrow,
.st-section-heading h3 {
  grid-column: 1;
}

.st-section-heading h3 {
  margin-bottom: 0;
}

.st-section-heading > p {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0;
  padding-left: clamp(30px, 4vw, 62px);
  color: var(--st-muted);
  border-left: 1px solid var(--st-line);
  font-size: 17px;
  line-height: 1.85;
  word-break: keep-all;
}

.st-approach-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--st-ink);
  border-bottom: 1px solid var(--st-line);
}

.st-approach-grid article {
  display: grid;
  grid-template-columns: minmax(220px, .86fr) minmax(0, 1.14fr);
  min-height: 390px;
}

.st-approach-grid article + article {
  border-left: 1px solid var(--st-line);
}

.st-approach-grid figure {
  min-height: 100%;
  overflow: hidden;
  background: #edf2f7;
}

.st-approach-grid article > div {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 4vw, 58px);
}

.st-feature-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 24px;
  border-radius: 50%;
}

.st-feature-icon svg {
  width: 25px;
  height: 25px;
}

.st-approach-grid em {
  position: absolute;
  top: 24px;
  right: 26px;
  color: #aab7c7;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.st-approach-grid h4,
.st-disorder-grid h4,
.st-program-grid h4 {
  margin: 0 0 17px;
  color: var(--st-ink);
  font-size: clamp(22px, 1.7vw, 28px);
  line-height: 1.35;
  word-break: keep-all;
}

.st-approach-grid p,
.st-disorder-grid p,
.st-program-grid p {
  margin: 0;
  color: var(--st-muted);
  font-size: 15px;
  line-height: 1.8;
  word-break: keep-all;
}

.st-process {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: clamp(92px, 8vw, 132px) 0;
  background: #edf4f8;
}

.st-process-inner {
  display: grid;
  grid-template-columns: minmax(320px, .76fr) minmax(760px, 1.64fr);
  gap: clamp(60px, 7vw, 120px);
  align-items: start;
  width: min(1640px, calc(100% - 96px));
  margin: 0 auto;
}

.st-process header > p {
  margin: 0;
  color: var(--st-muted);
  font-size: 16px;
  line-height: 1.8;
  word-break: keep-all;
}

.st-process ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--st-ink);
  border-bottom: 1px solid #cfdce8;
  list-style: none;
}

.st-process li {
  position: relative;
  min-height: 315px;
  padding: 46px clamp(28px, 3vw, 48px);
}

.st-process li + li {
  border-left: 1px solid #cfdce8;
}

.st-process li > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 36px;
  color: var(--st-blue);
  border-radius: 50%;
  background: #fff;
}

.st-process li svg {
  width: 26px;
  height: 26px;
}

.st-process li em {
  position: absolute;
  top: 52px;
  right: 30px;
  color: var(--st-blue);
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: .05em;
}

.st-process li h4 {
  margin: 0 0 18px;
  color: var(--st-ink);
  font-size: 24px;
}

.st-process li p {
  margin: 0;
  color: var(--st-muted);
  font-size: 14px;
  line-height: 1.8;
  word-break: keep-all;
}

.st-disorder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(32px, 4vw, 64px);
}

.st-disorder-grid article {
  position: relative;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--st-line);
}

.st-disorder-grid figure {
  height: 270px;
  margin-bottom: 30px;
  overflow: hidden;
  background: #edf2f7;
}

.st-disorder-grid article > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  color: var(--st-blue);
  border: 1px solid #cad9ea;
  border-radius: 50%;
  background: #fff;
}

.st-disorder-grid article > span svg {
  width: 23px;
  height: 23px;
}

.st-target {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: clamp(96px, 8vw, 136px) 0;
  background: #f2f6f9;
}

.st-target-inner {
  display: grid;
  grid-template-columns: minmax(480px, .92fr) minmax(620px, 1.08fr);
  gap: clamp(60px, 7vw, 120px);
  align-items: stretch;
  width: min(1640px, calc(100% - 96px));
  margin: 0 auto;
}

.st-target-visual {
  min-height: 600px;
  overflow: hidden;
  border-radius: 6px;
  background: #e3ebf2;
}

.st-target-copy {
  align-self: center;
}

.st-target-copy h3 {
  margin: 0 0 24px;
  color: var(--st-ink);
  font-size: clamp(36px, 3vw, 50px);
}

.st-target-copy > p {
  margin: 0 0 36px;
  color: var(--st-muted);
  font-size: 16px;
  line-height: 1.8;
  word-break: keep-all;
}

.st-target-copy dl {
  margin: 0;
  border-top: 1px solid var(--st-ink);
}

.st-target-copy dl > div {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 26px;
  padding: 18px 0;
  border-bottom: 1px solid var(--st-line);
}

.st-target-copy dt {
  color: var(--st-ink);
  font-size: 15px;
  font-weight: 800;
}

.st-target-copy dd {
  margin: 0;
  color: var(--st-muted);
  font-size: 14px;
  line-height: 1.65;
  word-break: keep-all;
}

.st-programs {
  padding-bottom: clamp(110px, 9vw, 150px);
}

.st-program-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--st-ink);
  border-bottom: 1px solid var(--st-line);
}

.st-program-grid article {
  min-height: 330px;
  padding: 48px clamp(28px, 3vw, 46px);
}

.st-program-grid article + article {
  border-left: 1px solid var(--st-line);
}

.st-program-grid article > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 34px;
  color: var(--st-blue);
  border-radius: 50%;
  background: #edf3fb;
}

.st-program-grid article > span svg {
  width: 26px;
  height: 26px;
}

.st-program-grid small {
  display: block;
  margin-bottom: 12px;
  color: var(--st-blue);
  font-size: 11px;
  font-weight: 850;
  line-height: 1.4;
  letter-spacing: .04em;
}

.st-summary {
  display: grid;
  grid-template-columns: minmax(520px, .92fr) minmax(620px, 1.08fr);
  gap: clamp(72px, 8vw, 150px);
  align-items: center;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: clamp(78px, 7vw, 110px) max(48px, calc((100vw - 1640px) / 2));
  background: #eaf1f6;
}

.st-summary > div > span {
  display: block;
  margin-bottom: 20px;
  color: var(--st-blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .06em;
}

.st-summary h3 {
  margin: 0;
  color: var(--st-ink);
  font-size: clamp(33px, 3vw, 48px);
  line-height: 1.28;
  word-break: keep-all;
}

.st-summary > p {
  margin: 0;
  padding-left: clamp(30px, 4vw, 62px);
  color: var(--st-muted);
  border-left: 1px solid #c8d7e4;
  font-size: 17px;
  line-height: 1.9;
  word-break: keep-all;
}

.park-content-shell.is-speech-therapy-page {
  padding-bottom: 0;
}

@media (max-width: 1180px) {
  .st-intro {
    grid-template-columns: minmax(0, .9fr) minmax(400px, 1.1fr);
    gap: 46px;
  }

  .st-approach-grid article {
    grid-template-columns: 1fr;
  }

  .st-approach-grid figure {
    min-height: 280px;
    aspect-ratio: 16 / 10;
  }

  .st-process-inner,
  .st-target-inner {
    grid-template-columns: 1fr;
  }

  .st-target-visual {
    min-height: 460px;
    aspect-ratio: 16 / 9;
  }

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

  .st-program-grid article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--st-line);
  }

  .st-program-grid article:nth-child(4) {
    border-top: 1px solid var(--st-line);
  }
}

@media (max-width: 820px) {
  .speech-therapy-content {
    margin-top: 36px;
  }

  .st-intro,
  .st-definition,
  .st-section-heading,
  .st-process-inner,
  .st-target-inner,
  .st-summary {
    grid-template-columns: 1fr;
  }

  .st-intro {
    gap: 34px;
  }

  .st-intro-copy {
    padding: 32px 0 0;
  }

  .st-intro-copy h3 {
    margin-bottom: 25px;
    font-size: 36px;
  }

  .st-intro-copy p,
  .st-definition-copy p,
  .st-section-heading > p,
  .st-summary > p {
    font-size: 15px;
    line-height: 1.75;
  }

  .st-intro-visual {
    min-height: 390px;
    aspect-ratio: 4 / 3;
  }

  .st-intro-visual figcaption {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .st-intro-visual figcaption span {
    display: none;
  }

  .st-definition {
    margin-top: 76px;
    padding: 0 24px;
  }

  .st-definition-visual {
    min-height: 320px;
    aspect-ratio: 4 / 3;
  }

  .st-definition-copy {
    padding: 40px 0 50px;
  }

  .st-definition-copy h3,
  .st-section-heading h3,
  .st-process header h3,
  .st-target-copy h3 {
    font-size: 31px;
  }

  .st-approach,
  .st-disorders,
  .st-programs {
    padding: 78px 0;
  }

  .st-section-heading {
    gap: 25px;
    margin-bottom: 36px;
  }

  .st-section-heading .st-eyebrow,
  .st-section-heading h3,
  .st-section-heading > p {
    grid-column: auto;
    grid-row: auto;
  }

  .st-section-heading > p,
  .st-summary > p {
    padding: 0;
    border-left: 0;
  }

  .st-approach-grid,
  .st-process ol,
  .st-disorder-grid,
  .st-program-grid {
    grid-template-columns: 1fr;
  }

  .st-approach-grid article + article,
  .st-process li + li,
  .st-program-grid article + article,
  .st-program-grid article:nth-child(4) {
    border-top: 1px solid var(--st-line);
    border-left: 0;
  }

  .st-approach-grid article {
    grid-template-columns: 42% minmax(0, 1fr);
    min-height: 290px;
  }

  .st-approach-grid figure {
    min-height: 100%;
    aspect-ratio: auto;
  }

  .st-approach-grid article > div {
    padding: 30px 24px;
  }

  .st-process {
    padding: 78px 0;
  }

  .st-process-inner,
  .st-target-inner {
    width: calc(100% - 48px);
    gap: 42px;
  }

  .st-process li {
    min-height: 0;
    padding: 34px 0;
  }

  .st-process li em {
    top: 40px;
    right: 6px;
  }

  .st-disorder-grid {
    gap: 42px;
  }

  .st-disorder-grid figure {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .st-target {
    padding: 78px 0;
  }

  .st-target-visual {
    min-height: 320px;
    aspect-ratio: 4 / 3;
  }

  .st-target-copy dl > div {
    grid-template-columns: 140px minmax(0, 1fr);
  }

  .st-program-grid article,
  .st-program-grid article:nth-child(3) {
    min-height: 0;
    padding: 36px 0;
    border-left: 0;
  }

  .st-summary {
    gap: 32px;
    padding: 62px 24px;
  }
}

@media (max-width: 560px) {
  .st-intro-copy h3,
  .st-summary h3 {
    font-size: 31px;
  }

  .st-approach-grid article {
    grid-template-columns: 1fr;
  }

  .st-approach-grid figure {
    min-height: 230px;
    aspect-ratio: 16 / 10;
  }

  .st-target-copy dl > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

/* Naver appointment guide */
.naver-booking-guide {
  position: relative;
  z-index: 1;
  margin-top: 76px;
  padding: 86px 0 104px;
}

.naver-booking-guide::before {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  content: "";
  transform: translateX(-50%);
  background: #f4f7fa;
}

.naver-booking-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: end;
  padding-bottom: 46px;
  border-bottom: 1px solid #d7e0e9;
}

.naver-booking-intro > div > span {
  color: #00a84f;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.naver-booking-intro h3 {
  margin: 15px 0 18px;
  color: #142033;
  font-size: clamp(36px, 3.2vw, 54px);
  font-weight: 750;
  line-height: 1.2;
}

.naver-booking-intro p {
  max-width: 760px;
  margin: 0;
  color: #536174;
  font-size: 17px;
  line-height: 1.8;
}

.naver-booking-cta {
  display: flex;
  min-width: 250px;
  min-height: 62px;
  align-items: center;
  gap: 12px;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid #00b956;
  border-radius: 5px;
  color: #fff;
  background: #03c75a;
  transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.naver-booking-cta > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #03b954;
  background: #fff;
  font-size: 18px;
  font-weight: 900;
}

.naver-booking-cta b {
  font-size: 16px;
}

.naver-booking-cta svg {
  width: 19px;
  height: 19px;
}

.naver-booking-cta:hover,
.naver-booking-cta:focus-visible {
  border-color: #008d43;
  background: #009f4b;
  transform: translateY(-2px);
}

.naver-booking-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 56px 0 48px;
  list-style: none;
  border-bottom: 1px solid #d7e0e9;
}

.naver-booking-steps li {
  min-width: 0;
  padding: 0 26px;
  border-left: 1px solid #d7e0e9;
}

.naver-booking-steps li:first-child {
  padding-left: 0;
  border-left: 0;
}

.naver-booking-steps li:last-child {
  padding-right: 0;
}

.naver-booking-steps em {
  display: block;
  color: #768396;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.naver-booking-steps li > span {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  margin: 15px 0 22px;
  border: 1px solid #bdd0e7;
  border-radius: 4px;
  color: #5d83ca;
  background: #fff;
}

.naver-booking-steps svg {
  width: 23px;
  height: 23px;
}

.naver-booking-steps h4 {
  margin: 0 0 11px;
  color: #172235;
  font-size: 19px;
  line-height: 1.45;
}

.naver-booking-steps p {
  margin: 0;
  color: #637084;
  font-size: 14px;
  line-height: 1.7;
}

.naver-booking-notice {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 34px;
}

.naver-booking-notice > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #5f84d6;
}

.naver-booking-notice > span svg {
  width: 21px;
  height: 21px;
}

.naver-booking-notice strong {
  display: block;
  color: #1a2638;
  font-size: 16px;
}

.naver-booking-notice p {
  margin: 6px 0 0;
  color: #738094;
  font-size: 14px;
}

.naver-booking-notice > a {
  display: flex;
  align-items: baseline;
  gap: 13px;
  padding-left: 30px;
  border-left: 1px solid #d1dbe6;
  color: #1a2638;
}

.naver-booking-notice > a small {
  color: #7a8798;
  font-size: 13px;
}

.naver-booking-notice > a b {
  color: #4f76c3;
  font-size: 27px;
  font-weight: 700;
}

@media (max-width: 1000px) {
  .naver-booking-intro {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .naver-booking-cta {
    width: fit-content;
  }

  .naver-booking-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  .naver-booking-steps li,
  .naver-booking-steps li:first-child,
  .naver-booking-steps li:last-child {
    padding: 28px;
    border-top: 1px solid #d7e0e9;
    border-left: 1px solid #d7e0e9;
  }

  .naver-booking-steps li:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .naver-booking-steps li:nth-child(-n+2) {
    border-top: 0;
  }
}

@media (max-width: 680px) {
  .naver-booking-guide {
    margin-top: 54px;
    padding: 64px 0 76px;
  }

  .naver-booking-intro {
    gap: 30px;
    padding-bottom: 34px;
  }

  .naver-booking-intro h3 {
    margin-top: 12px;
    font-size: 32px;
  }

  .naver-booking-intro p {
    font-size: 15px;
  }

  .naver-booking-cta {
    width: 100%;
    min-width: 0;
  }

  .naver-booking-steps {
    grid-template-columns: 1fr;
    padding: 30px 0 24px;
  }

  .naver-booking-steps li,
  .naver-booking-steps li:first-child,
  .naver-booking-steps li:last-child,
  .naver-booking-steps li:nth-child(odd) {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 4px 16px;
    padding: 22px 0;
    border-top: 1px solid #d7e0e9;
    border-left: 0;
  }

  .naver-booking-steps li:first-child {
    border-top: 0;
  }

  .naver-booking-steps em {
    grid-column: 2;
  }

  .naver-booking-steps li > span {
    grid-row: 1 / span 3;
    margin: 0;
  }

  .naver-booking-steps h4 {
    grid-column: 2;
    margin: 2px 0 4px;
    font-size: 17px;
  }

  .naver-booking-steps p {
    grid-column: 2;
  }

  .naver-booking-notice {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
  }

  .naver-booking-notice > span {
    width: 42px;
    height: 42px;
  }

  .naver-booking-notice > a {
    grid-column: 1 / -1;
    justify-content: space-between;
    margin-top: 6px;
    padding: 18px 0 0;
    border-top: 1px solid #d1dbe6;
    border-left: 0;
  }

  .naver-booking-notice > a b {
    font-size: 24px;
  }
}

:root {
  --ink: #17212b;
  --muted: #65717f;
  --line: #dfe6ef;
  --blue: #5f84d6;
  --deep: #1f3158;
  --green: #7fa342;
  --paper: #ffffff;
  --max: 1640px;
}

/* Certificate issuance */
.certificate-guide {
  --certificate-blue: #7395d1;
  --certificate-ink: #152033;
  --certificate-line: #dbe3ef;
  margin-top: 64px;
  color: var(--certificate-ink);
}

.certificate-intro {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(560px, 1.1fr);
  gap: 76px;
  align-items: end;
  padding: 0 0 72px;
  border-bottom: 1px solid var(--certificate-line);
}

.certificate-intro-copy > span,
.certificate-section-head > span,
.certificate-download > div > span {
  display: block;
  margin-bottom: 20px;
  color: var(--certificate-blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.certificate-intro-copy h3 {
  margin: 0;
  font-size: 46px;
  line-height: 1.25;
  letter-spacing: 0;
}

.certificate-intro-copy p {
  max-width: 590px;
  margin: 28px 0 0;
  color: #5e6878;
  font-size: 17px;
  line-height: 1.8;
}

.certificate-quick-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: #f5f8fc;
  border-top: 3px solid var(--certificate-blue);
}

.certificate-quick-info article {
  min-width: 0;
  padding: 30px 26px;
  border-right: 1px solid var(--certificate-line);
}

.certificate-quick-info article:last-child {
  border-right: 0;
}

.certificate-quick-info svg {
  width: 24px;
  height: 24px;
  margin-bottom: 22px;
  color: var(--certificate-blue);
  stroke-width: 1.8;
}

.certificate-quick-info span,
.certificate-quick-info strong {
  display: block;
}

.certificate-quick-info span {
  margin-bottom: 8px;
  color: #7b8594;
  font-size: 13px;
}

.certificate-quick-info strong {
  font-size: 16px;
  line-height: 1.45;
}

.certificate-process,
.certificate-documents {
  padding: 92px 0 0;
}

.certificate-section-head {
  display: grid;
  grid-template-columns: minmax(250px, .55fr) minmax(0, 1fr);
  align-items: end;
  column-gap: 64px;
  margin-bottom: 42px;
}

.certificate-section-head > span {
  grid-column: 1 / -1;
}

.certificate-section-head h3 {
  margin: 0;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0;
}

.certificate-section-head p {
  margin: 0;
  color: #687386;
  font-size: 16px;
  line-height: 1.65;
}

.certificate-process ol {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--certificate-ink);
  border-bottom: 1px solid var(--certificate-line);
}

.certificate-process li {
  position: relative;
  min-width: 0;
  min-height: 250px;
  padding: 30px 30px 34px;
  border-right: 1px solid var(--certificate-line);
}

.certificate-process li:last-child {
  border-right: 0;
}

.certificate-process li > span {
  position: absolute;
  top: 28px;
  right: 28px;
  color: #a7b1c1;
  font-size: 13px;
  font-weight: 700;
}

.certificate-process li svg {
  width: 34px;
  height: 34px;
  margin: 32px 0 30px;
  color: var(--certificate-blue);
  stroke-width: 1.6;
}

.certificate-process li strong {
  display: block;
  margin-bottom: 13px;
  font-size: 20px;
}

.certificate-process li p {
  margin: 0;
  color: #6a7484;
  font-size: 15px;
  line-height: 1.65;
}

.certificate-document-list {
  border-top: 2px solid var(--certificate-ink);
}

.certificate-document-list > article {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  align-items: stretch;
  border-bottom: 1px solid var(--certificate-line);
}

.certificate-document-type {
  display: grid;
  grid-template-columns: 30px 38px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 128px;
  padding: 26px 30px;
  background: #f7f9fc;
}

.certificate-document-type > span {
  color: #9aa6b8;
  font-size: 12px;
  font-weight: 800;
}

.certificate-document-type svg {
  width: 26px;
  height: 26px;
  color: var(--certificate-blue);
  stroke-width: 1.7;
}

.certificate-document-type h4 {
  margin: 0;
  font-size: 19px;
}

.certificate-document-list ul {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  gap: 10px 34px;
  margin: 0;
  padding: 28px 36px;
  list-style: none;
}

.certificate-document-list li {
  position: relative;
  width: calc(50% - 17px);
  padding-left: 13px;
  color: #4f5a6b;
  font-size: 15px;
  line-height: 1.6;
}

.certificate-document-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .72em;
  width: 4px;
  height: 4px;
  background: var(--certificate-blue);
}

.certificate-download {
  display: grid;
  grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr);
  gap: 80px;
  align-items: center;
  margin-top: 92px;
  padding: 54px 58px;
  background: #eef3fa;
}

.certificate-download h3 {
  margin: 0;
  font-size: 30px;
}

.certificate-download p {
  margin: 15px 0 0;
  color: #697487;
  font-size: 15px;
  line-height: 1.65;
}

.certificate-download-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.certificate-download-actions a {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 92px;
  padding: 18px 20px;
  color: var(--certificate-ink);
  background: #fff;
  border: 1px solid #d4deec;
  text-decoration: none;
  transition: border-color .25s ease, color .25s ease, transform .25s ease;
}

.certificate-download-actions a:hover {
  color: #5278bd;
  border-color: var(--certificate-blue);
  transform: translateY(-3px);
}

.certificate-download-actions svg {
  width: 27px;
  height: 27px;
  color: var(--certificate-blue);
}

.certificate-download-actions span,
.certificate-download-actions small {
  display: block;
}

.certificate-download-actions span {
  font-size: 16px;
  font-weight: 700;
}

.certificate-download-actions small {
  margin-bottom: 5px;
  color: #8a94a4;
  font-size: 11px;
  font-weight: 500;
}

.certificate-download-actions b {
  font-size: 12px;
}

.certificate-notice {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 18px;
  margin-top: 26px;
  padding: 30px 34px;
  color: #465164;
  border: 1px solid var(--certificate-line);
}

.certificate-notice > svg {
  width: 26px;
  height: 26px;
  color: var(--certificate-blue);
}

.certificate-notice strong {
  display: block;
  margin-bottom: 11px;
  color: var(--certificate-ink);
  font-size: 16px;
}

.certificate-notice ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .certificate-intro {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .certificate-section-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .certificate-process ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .certificate-process li:nth-child(2) {
    border-right: 0;
  }

  .certificate-process li:nth-child(-n+2) {
    border-bottom: 1px solid var(--certificate-line);
  }

  .certificate-document-list > article {
    grid-template-columns: 260px minmax(0, 1fr);
  }

  .certificate-document-list li {
    width: 100%;
  }

  .certificate-download {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .certificate-guide {
    margin-top: 42px;
  }

  .certificate-intro {
    padding-bottom: 48px;
  }

  .certificate-intro-copy h3 {
    font-size: 31px;
  }

  .certificate-intro-copy p {
    margin-top: 20px;
    font-size: 15px;
  }

  .certificate-quick-info {
    grid-template-columns: 1fr;
  }

  .certificate-quick-info article {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 20px;
    border-right: 0;
    border-bottom: 1px solid var(--certificate-line);
  }

  .certificate-quick-info article:last-child {
    border-bottom: 0;
  }

  .certificate-quick-info svg {
    grid-row: 1 / 3;
    margin: 3px 0 0;
  }

  .certificate-process,
  .certificate-documents {
    padding-top: 64px;
  }

  .certificate-section-head {
    margin-bottom: 28px;
  }

  .certificate-section-head h3 {
    font-size: 28px;
  }

  .certificate-section-head p {
    font-size: 14px;
  }

  .certificate-process ol {
    grid-template-columns: 1fr;
  }

  .certificate-process li {
    min-height: 0;
    padding: 22px 22px 24px 78px;
    border-right: 0;
    border-bottom: 1px solid var(--certificate-line);
  }

  .certificate-process li:nth-child(-n+2) {
    border-bottom: 1px solid var(--certificate-line);
  }

  .certificate-process li:last-child {
    border-bottom: 0;
  }

  .certificate-process li > span {
    top: 20px;
    right: 20px;
  }

  .certificate-process li svg {
    position: absolute;
    left: 22px;
    top: 24px;
    width: 30px;
    height: 30px;
    margin: 0;
  }

  .certificate-process li strong {
    padding-right: 35px;
    font-size: 18px;
  }

  .certificate-document-list > article {
    grid-template-columns: 1fr;
  }

  .certificate-document-type {
    min-height: 0;
    padding: 20px;
  }

  .certificate-document-list ul {
    padding: 22px 20px 26px;
  }

  .certificate-download {
    margin-top: 64px;
    padding: 34px 22px;
  }

  .certificate-download-actions {
    grid-template-columns: 1fr;
  }

  .certificate-notice {
    grid-template-columns: 28px minmax(0, 1fr);
    padding: 24px 20px;
  }
}

/* Health check-up preparation guide */
.checkup-guide-page {
  margin-top: 58px;
  color: #172033;
}

.checkup-guide-overview {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr);
  overflow: hidden;
  margin-bottom: 64px;
  border: 1px solid #dfe7f1;
  border-left: 4px solid #5f84d6;
  border-radius: 8px;
  background: #f7f9fc;
}

.checkup-guide-overview-copy {
  padding: clamp(44px, 4.6vw, 68px);
}

.checkup-guide-overview-copy > span,
.checkup-guide-panel-head > span {
  display: block;
  margin-bottom: 14px;
  color: #5f84d6;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
}

.checkup-guide-overview-copy h3 {
  margin: 0;
  font-size: clamp(34px, 3vw, 50px);
  font-weight: 750;
  line-height: 1.24;
  letter-spacing: 0;
  word-break: keep-all;
}

.checkup-guide-overview-copy p {
  max-width: 620px;
  margin: 24px 0 0;
  color: #526074;
  font-size: 17px;
  line-height: 1.8;
  word-break: keep-all;
}

.checkup-guide-overview-list {
  display: grid;
  align-content: center;
  padding: 30px clamp(34px, 4vw, 62px);
  border-left: 1px solid #dfe7f1;
  background: rgba(255, 255, 255, .76);
}

.checkup-guide-overview-list > div {
  display: grid;
  grid-template-columns: 42px 104px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 92px;
  border-bottom: 1px solid #e3e8ef;
}

.checkup-guide-overview-list > div:last-child {
  border-bottom: 0;
}

.checkup-guide-overview-list svg {
  width: 24px;
  height: 24px;
  color: #5f84d6;
}

.checkup-guide-overview-list strong {
  font-size: 17px;
}

.checkup-guide-overview-list span {
  color: #586679;
  font-size: 15px;
  line-height: 1.65;
  word-break: keep-all;
}

.checkup-guide-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 0;
  border-bottom: 1px solid #cfd8e5;
}

.checkup-guide-tabs button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 72px;
  padding: 0 14px;
  border: 0;
  background: #fff;
  color: #657184;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: color .2s ease, background-color .2s ease;
}

.checkup-guide-tabs button::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: transparent;
}

.checkup-guide-tabs button span {
  color: #9aa6b7;
  font-size: 12px;
  font-weight: 800;
}

.checkup-guide-tabs button:hover,
.checkup-guide-tabs button.is-active {
  color: #315caa;
  background: #f5f8fd;
}

.checkup-guide-tabs button.is-active::after {
  background: #5f84d6;
}

.checkup-guide-tabs button.is-active span {
  color: #5f84d6;
}

.checkup-guide-panels {
  margin-bottom: 64px;
}

.checkup-guide-panel {
  padding: clamp(56px, 6vw, 88px) clamp(28px, 4.5vw, 72px) 28px;
  background: #fff;
}

.checkup-guide-panel[hidden] {
  display: none;
}

.checkup-guide-panel-head {
  margin-bottom: 38px;
}

.checkup-guide-panel-head h3 {
  margin: 0;
  font-size: clamp(30px, 2.4vw, 40px);
  font-weight: 740;
  line-height: 1.25;
  letter-spacing: 0;
}

.checkup-guide-panel-head p {
  margin: 13px 0 0;
  color: #657184;
  font-size: 16px;
}

.checkup-guide-row {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  padding: 34px 0;
  border-top: 1px solid #dfe5ed;
}

.checkup-guide-row-title {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.checkup-guide-row-title svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: #5f84d6;
}

.checkup-guide-row-title h4 {
  margin: -2px 0 0;
  font-size: 19px;
  font-weight: 750;
  line-height: 1.45;
}

.checkup-guide-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: guide-item;
}

.checkup-guide-list[start="4"] {
  counter-reset: guide-item 3;
}

.checkup-guide-list[start="5"] {
  counter-reset: guide-item 4;
}

.checkup-guide-list li {
  position: relative;
  padding: 0 0 17px 36px;
  color: #424f61;
  font-size: 16px;
  line-height: 1.82;
  word-break: keep-all;
  counter-increment: guide-item;
}

.checkup-guide-list li:last-child {
  padding-bottom: 0;
}

.checkup-guide-list li::before {
  content: counter(guide-item, decimal-leading-zero);
  position: absolute;
  top: 3px;
  left: 0;
  color: #5f84d6;
  font-size: 12px;
  font-weight: 850;
}

.checkup-guide-copy p {
  margin: 0;
  color: #424f61;
  font-size: 16px;
  line-height: 1.82;
  word-break: keep-all;
}

.checkup-guide-copy .checkup-guide-note {
  margin-top: 18px;
  padding: 18px 20px;
  border-left: 3px solid #89a4d5;
  background: #f5f8fc;
  color: #5a6677;
  font-size: 14px;
}

.checkup-medication-list {
  display: grid;
  gap: 0;
}

.checkup-medication-list section {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid #e6ebf1;
}

.checkup-medication-list section:first-child {
  padding-top: 0;
}

.checkup-medication-list section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.checkup-medication-list strong {
  color: #315caa;
  font-size: 15px;
}

.checkup-medication-list p,
.checkup-medication-list small {
  margin: 0;
  color: #424f61;
  font-size: 15px;
  line-height: 1.75;
  word-break: keep-all;
}

.checkup-medication-list small {
  grid-column: 2;
  margin-top: -12px;
  color: #788394;
  font-size: 13px;
}

.checkup-guide-time {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 12px;
  padding: 28px 32px;
  border: 1px solid #dbe4ef;
  border-radius: 6px;
  background: #f6f9fd;
}

.checkup-guide-time > svg {
  width: 36px;
  height: 36px;
  color: #5f84d6;
}

.checkup-guide-time span,
.checkup-guide-time strong,
.checkup-guide-time p {
  display: block;
  margin: 0;
}

.checkup-guide-time span {
  margin-bottom: 4px;
  color: #667286;
  font-size: 13px;
}

.checkup-guide-time strong {
  color: #315caa;
  font-size: 24px;
}

.checkup-guide-time p {
  margin-top: 5px;
  color: #667286;
  font-size: 14px;
}

.checkup-guide-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 0;
  padding: 28px 32px;
  border-top: 1px solid #dce4ee;
  border-bottom: 1px solid #dce4ee;
}

.checkup-guide-contact > div {
  display: flex;
  align-items: center;
  gap: 13px;
}

.checkup-guide-contact > div svg {
  width: 21px;
  height: 21px;
  color: #5f84d6;
}

.checkup-guide-contact p {
  margin: 0;
  color: #596678;
  font-size: 15px;
}

.checkup-guide-contact > a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #315caa;
  font-size: 20px;
  font-weight: 800;
}

.checkup-guide-contact > a span {
  color: #718095;
  font-size: 13px;
  font-weight: 700;
}

.checkup-guide-contact > a svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 1180px) {
  .checkup-guide-overview {
    grid-template-columns: 1fr;
  }

  .checkup-guide-overview-list {
    border-top: 1px solid #dfe7f1;
    border-left: 0;
  }

  .checkup-guide-row {
    grid-template-columns: 190px minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .checkup-guide-page {
    margin-top: 42px;
  }

  .checkup-guide-overview {
    margin-bottom: 42px;
  }

  .checkup-guide-overview-copy {
    padding: 34px 26px 38px;
  }

  .checkup-guide-overview-copy h3 {
    font-size: 29px;
  }

  .checkup-guide-overview-copy p {
    margin-top: 17px;
    font-size: 15px;
  }

  .checkup-guide-overview-list {
    padding: 10px 24px 18px;
  }

  .checkup-guide-overview-list > div {
    grid-template-columns: 34px 82px minmax(0, 1fr);
    gap: 9px;
    min-height: 82px;
  }

  .checkup-guide-overview-list strong,
  .checkup-guide-overview-list span {
    font-size: 13px;
  }

  .checkup-guide-tabs {
    display: flex;
    overflow-x: auto;
    margin-right: -20px;
    padding-right: 20px;
    scrollbar-width: none;
  }

  .checkup-guide-tabs::-webkit-scrollbar {
    display: none;
  }

  .checkup-guide-tabs button {
    flex: 0 0 auto;
    min-width: 128px;
    min-height: 62px;
    font-size: 14px;
  }

  .checkup-guide-panel {
    padding: 44px 0 12px;
  }

  .checkup-guide-panel-head {
    margin-bottom: 27px;
  }

  .checkup-guide-panel-head h3 {
    font-size: 28px;
  }

  .checkup-guide-panel-head p {
    font-size: 14px;
    line-height: 1.65;
  }

  .checkup-guide-row {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px 0;
  }

  .checkup-guide-row-title h4 {
    font-size: 18px;
  }

  .checkup-guide-list li,
  .checkup-guide-copy p {
    font-size: 15px;
    line-height: 1.75;
  }

  .checkup-medication-list section {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .checkup-medication-list small {
    grid-column: auto;
    margin-top: 0;
  }

  .checkup-guide-time {
    align-items: flex-start;
    padding: 24px 20px;
  }

  .checkup-guide-contact {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px 0;
  }
}

* {
  box-sizing: border-box;
}

html {
  margin: 0;
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  overflow-x: hidden;
}

html.is-sub-html {
  scroll-snap-type: none;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", system-ui, sans-serif;
  line-height: 1.5;
  background: #fff;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

body.is-sub {
  background: #f6f8fb;
}

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

button {
  font: inherit;
}

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

.sound_only,
#hd_pop > h2,
#hd_pop .sound_only,
#hd_login_msg {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.family-bar {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 3000;
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 38px;
  padding: 0 46px;
  color: rgba(255, 255, 255, .72);
  background: #2f3b6f;
  font-size: 14px;
  font-weight: 800;
}

.family-bar nav,
.blog-link {
  display: flex;
  align-items: center;
  height: 100%;
}

.family-bar nav a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 24px;
}

.family-bar nav a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, .14);
}

.family-bar nav a:hover,
.blog-link:hover {
  color: #fff;
}

.blog-link {
  gap: 9px;
  padding: 0 24px;
  color: #fff;
  background: rgba(255, 255, 255, .13);
}

.blog-link span {
  display: inline-grid;
  place-items: center;
  min-width: 30px;
  height: 20px;
  color: #2f3b6f;
  background: #fff;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 900;
}

.stage-header {
  position: fixed;
  left: 0;
  top: 38px;
  z-index: 2900;
  display: grid;
  grid-template-columns: 250px 1fr auto;
  align-items: center;
  width: 100%;
  height: 86px;
  padding: 0 46px;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(14px);
  transition: color .24s ease, background .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.stage-header.is-solid {
  color: var(--ink);
  background: rgba(255, 255, 255, .94);
  border-bottom-color: rgba(111, 143, 202, .22);
  box-shadow: 0 12px 30px rgba(23, 33, 43, .08);
}

.stage-header.is-nav-open,
.stage-header:focus-within {
  color: var(--ink);
  background: rgba(255, 255, 255, .98);
  border-bottom-color: rgba(111, 143, 202, .22);
  box-shadow: 0 12px 30px rgba(23, 33, 43, .08);
}

body.is-sub .stage-header {
  color: var(--ink);
  background: rgba(255, 255, 255, .98);
  border-bottom-color: rgba(111, 143, 202, .22);
  box-shadow: 0 12px 30px rgba(23, 33, 43, .08);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 268px;
  height: auto;
  transition: filter .24s ease;
}

body:not(.is-sub) .stage-header:not(.is-solid):not(.is-nav-open):not(:hover):not(:focus-within) .brand img {
  filter: brightness(0) invert(1);
}

.stage-nav {
  display: block;
  font-size: 18px;
  font-weight: 900;
  white-space: nowrap;
}

.stage-nav > ul {
  display: flex;
  justify-content: center;
  gap: clamp(26px, calc(2vw + 8px), 46px);
  padding: 0;
  margin: 0;
  list-style: none;
}

.stage-nav > ul > li {
  position: static;
}

.stage-nav > ul > li > a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 86px;
  padding: 30px 0;
  font-family: "SUIT", "Noto Sans KR", "Apple SD Gothic Neo", system-ui, sans-serif;
  font-weight: 700;
}

.stage-nav > ul > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.stage-nav > ul > li:hover > a::after,
.stage-nav > ul > li:focus-within > a::after,
.stage-nav > ul > li.is-active > a::after {
  transform: scaleX(1);
}

.mega-panel {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 2910;
  display: grid;
  grid-template-columns: minmax(380px, 520px) repeat(3, minmax(220px, 280px));
  grid-template-rows: auto 1fr;
  justify-content: center;
  width: 100%;
  min-height: 350px;
  padding: 46px 0 42px;
  color: var(--ink);
  background: rgba(255, 255, 255, .98);
  border-top: 1px solid rgba(31, 49, 88, .08);
  border-bottom: 3px solid var(--blue);
  box-shadow: 0 18px 40px rgba(23, 33, 43, .12);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
}

.stage-nav li.is-active .mega-panel,
.stage-nav > ul > li:hover .mega-panel,
.stage-nav > ul > li:focus-within .mega-panel {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.stage-header:hover,
.stage-header:focus-within {
  color: var(--ink);
  background: rgba(255, 255, 255, .98);
  border-bottom-color: rgba(111, 143, 202, .22);
  box-shadow: 0 12px 30px rgba(23, 33, 43, .08);
}

.stage-header.is-nav-open .mega-panel,
.stage-nav > ul > li:hover .mega-panel,
.stage-nav > ul > li:focus-within .mega-panel {
  transition: none;
}

.mega-intro,
.mega-col,
.mega-promo {
  min-height: 0;
  padding: 0 42px;
  border-left: 1px solid #d9dee6;
}

.mega-intro {
  grid-column: 1;
  grid-row: 1;
  padding-left: 52px;
  padding-right: 48px;
}

.mega-intro h2 {
  margin: 0;
  color: var(--blue);
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.mega-intro p {
  margin: 16px 0 0;
  color: #8a94a3;
  font-size: 16px;
  line-height: 1.55;
  white-space: normal;
}

.mega-intro i {
  display: none;
}

.mega-col {
  grid-row: 1 / span 2;
  padding-top: 20px;
}

.mega-panel .mega-col:nth-of-type(2) {
  grid-column: 2;
}

.mega-panel .mega-col:nth-of-type(3) {
  grid-column: 3;
}

.mega-panel .mega-col:nth-of-type(4) {
  grid-column: 4;
}

.mega-col h3 {
  margin: 0 0 12px;
  color: #111827;
  font-size: 22px;
  font-weight: 900;
}

.mega-col a {
  position: relative;
  display: block;
  padding: 6px 0 6px 13px;
  color: #707b8a;
  font-size: 15px;
  font-weight: 700;
}

.mega-col a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 4px;
  height: 4px;
  background: var(--blue);
}

.mega-col a:hover {
  color: var(--blue);
}

.mega-promo {
  grid-column: 1;
  grid-row: 2;
  padding: 24px 48px 0 52px;
  min-width: 0;
}

.promo-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 122px;
  padding: 24px 28px;
  background: #f2f6ff;
}

.promo-card b {
  color: #17212b;
  font-size: 24px;
  font-weight: 900;
}

.promo-card span {
  margin-top: 10px;
  color: #5d6878;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
}

.promo-buttons {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 20px;
}

.promo-buttons a {
  display: grid;
  place-items: center;
  min-height: 56px;
  color: #fff;
  background: var(--blue);
  border: 1px solid var(--blue);
  font-size: 18px;
  font-weight: 900;
}

.promo-buttons a:nth-child(n+2) {
  display: none;
}

.promo-buttons a:first-child {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.mega-promo p {
  display: none;
}

.mega-promo strong {
  margin-left: 12px;
  color: #273449;
  font-size: 30px;
  font-weight: 500;
}

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

.phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 158px;
  height: 42px;
  padding: 0 18px;
  color: #fff;
  background: var(--blue);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  font-weight: 900;
}

.menu-button {
  display: grid;
  grid-template-columns: repeat(2, 7px);
  justify-content: center;
  align-content: center;
  gap: 5px;
  width: 54px;
  height: 54px;
  padding: 0;
  background: #5576b3;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.menu-button span {
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 2px;
}

body.is-sub .menu-button {
  background: #5576b3;
  border: 0;
  box-shadow: 0 10px 22px rgba(85, 118, 179, .22);
}

body.is-sub .menu-button:hover {
  background: #6f91d8;
}

.section-pager {
  position: fixed;
  right: 34px;
  top: 50%;
  z-index: 70;
  display: grid;
  justify-items: center;
  gap: 21px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform: translateY(-50%);
}

.section-pager::before {
  display: none;
}

.section-pager button {
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  padding: 0;
  color: transparent;
  background: rgba(255, 255, 255, .52);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0;
  font-weight: 900;
  box-shadow: 0 0 0 1px rgba(23, 33, 43, .08);
  transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.section-pager button::before {
  display: none;
}

.section-pager button.is-active {
  background: var(--blue);
  box-shadow: 0 0 0 6px rgba(95, 132, 214, .16);
  transform: scale(1.16);
}

body.on-light-section .section-pager button {
  background: #cfd3d8;
}

body.on-light-section .section-pager button.is-active {
  background: var(--blue);
}

.snap-section {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background: #f5f7fb;
}

.snap-section.is-dark {
  color: #fff;
  background: var(--deep);
}

.hero-section {
  --hero-left: max(54px, calc((100% - var(--max)) / 2 + 28px));
  --hero-right: max(54px, calc((100% - var(--max)) / 2));
  --hero-copy-top: clamp(150px, 19svh, 230px);
  --hero-action-top: clamp(380px, calc(44svh - 80px), 430px);
  background: var(--deep);
}

.hero-slider,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  visibility: hidden;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity .65s ease, visibility .65s ease, transform 1.2s ease;
}

.hero-slide.is-active {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

.section-bg {
  position: absolute;
  inset: 0;
}

.section-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23, 33, 43, .78) 0%, rgba(23, 33, 43, .54) 42%, rgba(23, 33, 43, .16) 100%);
}

.section-bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.section-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-img-pos, center center);
}

.hero-slide .section-bg img {
  transform: scale(1);
}

.hero-slide.is-active .section-bg img {
  animation: heroImageZoomOut 10s ease-out forwards;
}

.section-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 96px));
  min-height: 100svh;
  margin: 0 auto;
  padding: 126px 0 72px 28px;
}

.hero-grid,
.center-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.center-layout,
.contact-layout {
  grid-template-columns: minmax(0, 1fr) 460px;
}

.notice-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(560px, 720px);
  gap: 74px;
  align-items: center;
}

.hero-section .hero-grid {
  position: absolute;
  inset: 0;
  width: min(var(--max), calc(100% - 96px));
  min-height: 0;
  padding: 0;
  transform: none;
  pointer-events: none;
}

.hero-copy {
  position: absolute;
  top: var(--hero-copy-top);
  left: 28px;
  max-width: 920px;
  pointer-events: auto;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease .08s, transform .62s cubic-bezier(.2, .78, .18, 1) .08s;
}

.hero-copy > * {
  opacity: 1;
  transform: none;
}

.hero-slide.is-active .hero-copy {
  opacity: 1;
  transform: translateY(0);
}

.pill,
.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 0 34px;
  color: #fff;
  background: var(--blue);
  border-radius: 999px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .02em;
  box-shadow: 0 14px 28px rgba(18, 28, 45, .22);
}

.hero-slide:nth-child(1) .pill {
  background: #5f84d6;
}

.hero-slide:nth-child(2) .pill {
  background: #7fa342;
}

.hero-slide:nth-child(3) .pill {
  background: #2c9ab7;
}

.hero-copy h1,
.section-title h2 {
  margin: 28px 0 24px;
  font-size: clamp(46px, 3.75vw, 62px);
  line-height: 1.12;
  letter-spacing: 0;
}

.hero-copy h1 {
  white-space: nowrap;
  word-break: keep-all;
}

.section-title h2 {
  font-size: clamp(44px, 4.4vw, 72px);
}

.hero-copy p,
.section-title p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 23px;
  font-weight: 750;
  line-height: 1.62;
}

.section-title {
  max-width: 760px;
}

.section-title:not(.light) p {
  color: var(--muted);
}

.contact-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  height: 54px;
  padding: 0 24px;
  color: #fff;
  background: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 4px;
  font-weight: 900;
}

.hero-panel,
.contact-card {
  padding: 38px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 8px;
  backdrop-filter: blur(16px);
}

.hero-panel b,
.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel b {
  color: rgba(255, 255, 255, .62);
  font-size: 14px;
  letter-spacing: .08em;
}

.hero-panel strong {
  margin: 20px 0 30px;
  font-size: 42px;
  line-height: 1.2;
}

.hero-panel span {
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}

.hero-action-row {
  position: absolute;
  left: var(--hero-left);
  right: var(--hero-right);
  top: var(--hero-action-top);
  z-index: 8;
  display: grid;
  grid-template-columns: minmax(0, 900px) minmax(390px, 460px);
  gap: clamp(42px, 6vw, 120px);
  align-items: end;
  justify-content: space-between;
}

.hero-quick-menu {
  z-index: 7;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.hero-quick-menu a {
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  aspect-ratio: 1 / 1;
  min-height: 0;
  padding: 18px 10px;
  overflow: hidden;
  color: #111827;
  text-align: center;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(255, 255, 255, .76);
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(18, 28, 45, .15);
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.hero-quick-menu a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(95, 132, 214, .16), rgba(44, 154, 183, 0) 58%);
  opacity: 0;
  transition: opacity .24s ease;
}

.hero-quick-menu a::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -70%;
  width: 42%;
  height: 240%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .58), transparent);
  transform: rotate(24deg);
  transition: left .55s ease;
}

.hero-quick-menu a:hover,
.hero-quick-menu a:focus-visible {
  background: #fff;
  border-color: rgba(95, 132, 214, .68);
  transform: translateY(-7px);
  box-shadow: 0 28px 52px rgba(18, 28, 45, .24);
}

.hero-quick-menu a:hover::before,
.hero-quick-menu a:focus-visible::before {
  opacity: 1;
}

.hero-quick-menu a:hover::after,
.hero-quick-menu a:focus-visible::after {
  left: 128%;
}

.hero-quick-menu span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 13px;
  color: #426eb8;
  background: #f3f7ff;
  border: 2px solid #8fa9df;
  border-radius: 15px;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .9);
  transition: transform .22s ease, color .22s ease, background .22s ease, border-color .22s ease;
}

.hero-quick-menu span svg {
  width: 25px;
  height: 25px;
  stroke-width: 2.3;
}

.hero-quick-menu a:hover span,
.hero-quick-menu a:focus-visible span {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-3px) scale(1.04);
}

.hero-quick-menu a:nth-child(2) span {
  color: #6e8f33;
  background: #f0f6e9;
  border-color: #9fba6a;
}

.hero-quick-menu a:nth-child(3) span {
  color: #1f8aa5;
  background: #eaf7fa;
  border-color: #77bdd0;
}

.hero-quick-menu a:nth-child(4) span {
  color: #426eb8;
  background: #edf2ff;
  border-color: #8fa9df;
}

.hero-quick-menu a:nth-child(5) span {
  color: #2f7faf;
  background: #edf8fb;
  border-color: #7db8d4;
}

.hero-quick-menu a:nth-child(6) span {
  color: #6e8f33;
  background: #f0f6e9;
  border-color: #9fba6a;
}

.hero-quick-menu a:hover span,
.hero-quick-menu a:focus-visible span,
.hero-quick-menu a:nth-child(2):hover span,
.hero-quick-menu a:nth-child(2):focus-visible span,
.hero-quick-menu a:nth-child(3):hover span,
.hero-quick-menu a:nth-child(3):focus-visible span,
.hero-quick-menu a:nth-child(4):hover span,
.hero-quick-menu a:nth-child(4):focus-visible span,
.hero-quick-menu a:nth-child(5):hover span,
.hero-quick-menu a:nth-child(5):focus-visible span,
.hero-quick-menu a:nth-child(6):hover span,
.hero-quick-menu a:nth-child(6):focus-visible span {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: none;
}

.hero-quick-menu b {
  position: relative;
  z-index: 1;
  font-size: 16px;
  line-height: 1.25;
  transition: color .2s ease;
}

.hero-quick-menu a:hover b,
.hero-quick-menu a:focus-visible b {
  color: var(--deep);
}

.hero-reservation-card {
  position: relative;
  z-index: 8;
  width: 100%;
  padding: 32px;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(111, 143, 216, .98) 0%, rgba(44, 154, 183, .98) 100%);
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(11, 25, 55, .34);
}

.hero-reservation-card::before {
  content: "";
  position: absolute;
  top: -84px;
  right: -72px;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, .16);
  border-radius: 999px;
}

.hero-reservation-card > * {
  position: relative;
  z-index: 1;
}

.hero-reservation-card span {
  display: block;
  color: rgba(255, 255, 255, .7);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}

.hero-reservation-card strong {
  display: block;
  margin-top: 10px;
  font-size: 34px;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-reservation-card p {
  margin: 10px 0 22px;
  color: rgba(255, 255, 255, .86);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.5;
}

.reservation-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 102px;
  gap: 8px;
  margin-inline: auto;
}

.reservation-form input,
.reservation-form button,
.reservation-phone {
  min-height: 52px;
  border-radius: 999px;
  font: inherit;
  font-weight: 900;
}

.reservation-form input {
  width: 100%;
  padding: 0 20px;
  color: #17212b;
  background: #fff;
  border: 0;
  outline: none;
}

.reservation-form input::placeholder {
  color: #9aa5b4;
}

.reservation-form button {
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .72);
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.reservation-form button:hover {
  background: rgba(255, 255, 255, .24);
  transform: translateY(-2px);
}

.reservation-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
  color: #17212b;
  background: #fff;
  box-shadow: 0 12px 24px rgba(11, 25, 55, .18);
}

.reservation-phone b {
  color: var(--blue);
  font-size: 22px;
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 42px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  transform: translateX(-50%);
}

.hero-progress {
  display: flex;
  align-items: center;
  gap: 6px;
  pointer-events: auto;
}

.hero-progress button {
  min-width: 44px;
  height: 34px;
  padding: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, .58);
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  transition: color .2s ease, background .2s ease;
}

.hero-progress button.is-active {
  width: auto;
  color: var(--deep);
  background: #fff;
}

@keyframes heroTextUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroImageZoomOut {
  0% {
    transform: scale(1.08);
  }

  78%,
  100% {
    transform: scale(1);
  }
}

@media (min-width: 1800px) {
  .hero-slide {
    transform: none;
    transition: opacity .45s ease, visibility .45s ease;
  }

  .hero-slide.is-active .section-bg img {
    animation: none;
    transform: scale(1.01);
  }

  .stage-header,
  .hero-panel,
  .contact-card,
  .hero-controls,
  .center-list a,
  .notice-board,
  .notice-feature,
  .notice-list a,
  .notice-more,
  .menu-backdrop,
  .all-menu-head {
    backdrop-filter: none;
  }

  .hero-quick-menu a::after {
    display: none;
  }

  .hero-quick-menu a,
  .program-tile,
  .news-card,
  .notice-feature,
  .notice-list a,
  .all-menu-grid article {
    transition: transform .16s ease, border-color .16s ease, background .16s ease;
  }

  .hero-quick-menu a:hover,
  .hero-quick-menu a:focus-visible,
  .program-tile:hover,
  .news-card:hover,
  .notice-feature:hover,
  .notice-list a:hover,
  .all-menu-grid article:hover {
    transform: translateY(-3px);
  }

  .hero-reservation-card {
    box-shadow: 0 16px 36px rgba(11, 25, 55, .24);
  }

  .hero-quick-menu a {
    box-shadow: 0 10px 22px rgba(18, 28, 45, .12);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

.program-section .section-inner,
.newsroom-section .section-inner {
  display: grid;
  align-content: center;
  gap: 48px;
}

.program-section,
.newsroom-section {
  background:
    radial-gradient(circle at 78% 18%, rgba(111, 143, 216, .12), transparent 32%),
    linear-gradient(135deg, #f6f9fd 0%, #fff 52%, #eef4fb 100%);
}

.program-section::before,
.newsroom-section::before {
  content: "";
  position: absolute;
  right: max(22px, calc((100% - var(--max)) / 2 - 96px));
  top: 13%;
  z-index: 0;
  width: min(620px, 42vw);
  aspect-ratio: 1;
  border: 38px solid rgba(111, 143, 216, .08);
  border-radius: 42px;
  transform: rotate(-10deg);
}

.program-section::after,
.newsroom-section::after {
  position: absolute;
  left: max(36px, calc((100% - var(--max)) / 2 - 54px));
  bottom: 7%;
  z-index: 0;
  color: transparent;
  -webkit-text-stroke: 1px rgba(111, 143, 216, .16);
  font-size: clamp(92px, 12vw, 210px);
  font-weight: 900;
  line-height: .85;
  letter-spacing: .02em;
  pointer-events: none;
  opacity: .62;
}

.program-section::after {
  content: "PROGRAM";
}

.newsroom-section::before {
  right: auto;
  left: max(22px, calc((100% - var(--max)) / 2 - 112px));
  border-color: rgba(44, 154, 183, .08);
  transform: rotate(8deg);
}

.newsroom-section::after {
  right: max(30px, calc((100% - var(--max)) / 2 - 70px));
  left: auto;
  content: "NEWSROOM";
  -webkit-text-stroke-color: rgba(44, 154, 183, .15);
}

.program-carousel {
  position: relative;
  display: grid;
  gap: 22px;
}

.program-viewport {
  overflow: hidden;
}

.program-track {
  display: flex;
  transition: transform .56s cubic-bezier(.2, .78, .18, 1);
  will-change: transform;
}

.program-page {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.program-controls {
  position: absolute;
  top: -92px;
  right: 0;
  z-index: 3;
  display: flex;
  gap: 10px;
}

.program-controls button {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--deep);
  background: #fff;
  border: 1px solid #d7e1ee;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(23, 33, 43, .08);
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.program-controls button:hover,
.program-controls button:focus-visible {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-2px);
}

.program-controls svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.4;
}

.program-tile {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: 190px auto auto 1fr;
  min-height: 430px;
  background: #fff;
  border: 1px solid #c9d6e7;
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(23, 33, 43, .06);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.program-tile:hover {
  border-color: var(--blue);
  transform: translateY(-7px);
  box-shadow: 0 24px 52px rgba(23, 33, 43, .13);
}

.program-tile::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .24s ease;
}

.program-tile:hover::after {
  transform: scaleX(1);
}

.program-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-tile-placeholder {
  display: grid;
  place-items: center;
  color: #8290a4;
  background: #edf2f8;
  font-size: 14px;
  font-weight: 700;
}

.program-tile span,
.program-tile b,
.program-tile p {
  margin-left: 24px;
  margin-right: 24px;
}

.program-tile span {
  margin-top: 24px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .04em;
}

.program-tile b {
  margin-top: 10px;
  font-size: 25px;
  line-height: 1.25;
}

.program-tile p {
  margin-top: 12px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.58;
}

.program-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.program-dots button {
  min-width: 42px;
  height: 30px;
  padding: 0 12px;
  color: #7a8796;
  background: #fff;
  border: 1px solid #d7e1ee;
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.program-dots button.is-active {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

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

.center-list a {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 5px 20px;
  min-height: 116px;
  padding: 25px 28px;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 8px;
  backdrop-filter: blur(12px);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.center-list a:hover {
  background: rgba(111, 143, 202, .76);
  border-color: rgba(255, 255, 255, .48);
  transform: translateX(6px);
}

.center-list span {
  display: grid;
  place-items: center;
  grid-row: span 2;
  width: 54px;
  height: 54px;
  color: #fff;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 16px;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.center-list span svg {
  width: 27px;
  height: 27px;
  stroke-width: 2.2;
}

.center-list a:hover span {
  background: rgba(255, 255, 255, .24);
  border-color: rgba(255, 255, 255, .62);
  transform: scale(1.04);
}

.center-list b {
  font-size: 25px;
  line-height: 1.28;
}

.center-list em {
  color: rgba(255, 255, 255, .72);
  font-style: normal;
  font-weight: 750;
  line-height: 1.5;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.news-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid #cbd6e5;
  border-radius: 8px;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.news-card:hover {
  border-color: var(--blue);
  transform: translateY(-5px);
  box-shadow: 0 22px 46px rgba(23, 33, 43, .12);
}

.news-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
}

.news-card span {
  align-self: flex-start;
  padding: 9px 14px;
  color: #2f66b3;
  background: #e9f1fb;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
}

.news-card h3 {
  margin: 30px 0 auto;
  font-size: 24px;
  line-height: 1.35;
  letter-spacing: 0;
}

.news-card p {
  margin: 26px 0 0;
  color: #7a828c;
  font-weight: 850;
}

.news-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  filter: saturate(.95);
  transition: transform .35s ease;
}

.news-card:hover img {
  transform: scale(1.04);
}

@media (min-width: 1500px) and (min-height: 981px) {
  .section-title {
    max-width: 820px;
  }

  .section-title p {
    max-width: 720px;
    font-size: 24px;
  }

  .center-layout,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr) 520px;
  }

  .program-page,
  .news-grid {
    gap: 24px;
  }

  .program-tile {
    grid-template-rows: 210px auto auto 1fr;
    min-height: 450px;
  }

  .program-tile b {
    font-size: 27px;
  }

  .program-tile p {
    font-size: 16px;
  }

  .news-card {
    min-height: 410px;
  }

  .news-card img {
    height: 170px;
  }
}

@media (min-width: 1181px) and (max-height: 980px) {
  .program-section .section-inner,
  .center-section .section-inner,
  .newsroom-section .section-inner {
    padding-top: 104px;
    padding-bottom: 50px;
  }

  .program-section .section-inner,
  .newsroom-section .section-inner {
    gap: 34px;
  }

  .program-section .section-title h2,
  .center-section .section-title h2,
  .newsroom-section .section-title h2 {
    margin-bottom: 18px;
    font-size: clamp(40px, 3.75vw, 62px);
  }

  .program-section .section-title p,
  .center-section .section-title p,
  .newsroom-section .section-title p {
    font-size: 20px;
    line-height: 1.5;
  }

  .program-controls {
    top: -74px;
  }

  .program-tile {
    grid-template-rows: 158px auto auto 1fr;
    min-height: 360px;
  }

  .program-tile span,
  .program-tile b,
  .program-tile p {
    margin-left: 20px;
    margin-right: 20px;
  }

  .program-tile span {
    margin-top: 18px;
    font-size: 13px;
  }

  .program-tile b {
    margin-top: 8px;
    font-size: 22px;
  }

  .program-tile p {
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.48;
  }

  .center-list {
    gap: 14px;
  }

  .center-list a {
    min-height: 96px;
    padding: 20px 24px;
  }

  .center-list span {
    width: 48px;
    height: 48px;
  }

  .center-list b {
    font-size: 22px;
  }

  .center-list em {
    font-size: 15px;
    line-height: 1.42;
  }

  .news-card {
    min-height: 330px;
  }

  .news-body {
    padding: 22px;
  }

  .news-card span {
    padding: 8px 12px;
    font-size: 13px;
  }

  .news-card h3 {
    margin-top: 22px;
    font-size: 21px;
  }

  .news-card p {
    margin-top: 18px;
  }

  .news-card img {
    height: 128px;
  }
}

.contact-card {
  display: grid;
  gap: 14px;
}

.contact-card a {
  width: 100%;
  background: #fff;
  color: var(--deep);
  border-color: #fff;
}

.contact-card a:nth-child(2) {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.contact-card a:nth-child(3) {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, .42);
}

.contact-card p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 18px;
}

.contact-card strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 34px;
}

.notice-board {
  display: grid;
  gap: 16px;
  padding: 18px;
  background: rgba(8, 14, 26, .42);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 14px;
  backdrop-filter: blur(18px);
}

.notice-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 6px;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 11px;
}

.notice-tabs button {
  height: 54px;
  color: rgba(255, 255, 255, .68);
  background: transparent;
  border: 0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.notice-tabs button:hover,
.notice-tabs button.is-active {
  color: #fff;
  background: linear-gradient(135deg, rgba(115, 151, 226, .98), rgba(73, 112, 201, .92));
}

.notice-tabs button.is-active {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18);
}

.notice-pane {
  display: none;
}

.notice-pane.is-active {
  display: grid;
  gap: 16px;
  animation: noticeFade .24s ease both;
}

@keyframes noticeFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.notice-feature,
.notice-list a,
.notice-more {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .24);
  backdrop-filter: blur(14px);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.notice-feature {
  display: grid;
  min-height: 250px;
  padding: 34px;
  background: linear-gradient(135deg, rgba(95, 132, 214, .86), rgba(31, 49, 88, .72));
  border-radius: 10px;
}

.notice-feature:hover,
.notice-list a:hover,
.notice-more:hover {
  background-color: rgba(111, 143, 216, .72);
  border-color: rgba(255, 255, 255, .48);
  transform: translateY(-4px);
}

.notice-feature span,
.notice-list span {
  justify-self: start;
  padding: 8px 13px;
  color: #fff;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.notice-feature span {
  align-self: start;
}

.notice-list span {
  align-self: center;
}

.notice-feature strong {
  margin-top: 28px;
  font-size: 34px;
  line-height: 1.25;
  letter-spacing: 0;
}

.notice-feature p {
  max-width: 520px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.62;
}

.notice-feature em,
.notice-list em {
  color: rgba(255, 255, 255, .62);
  font-style: normal;
  font-weight: 800;
}

.notice-list {
  display: grid;
  gap: 10px;
}

.notice-list a {
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr) 96px;
  align-items: center;
  gap: 18px;
  min-height: 72px;
  padding: 0 24px;
  background: rgba(255, 255, 255, .13);
  border-radius: 8px;
}

.notice-list b {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 18px;
  letter-spacing: 0;
}

.notice-more {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  background: rgba(255, 255, 255, .1);
  border-radius: 999px;
  font-weight: 900;
}

.notice-more svg {
  width: 18px;
  height: 18px;
}

.footer-section {
  display: grid;
  align-items: stretch;
  position: relative;
  z-index: 0;
  clear: both;
  color: rgba(255, 255, 255, .68);
  background: #2b2c2e;
}

.footer-inner {
  --footer-width: min(1640px, calc(100% - 96px));
  display: grid;
  grid-template-rows: 58px auto auto;
  min-height: auto;
}

.footer-policy {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: var(--footer-width);
  margin: 0 auto;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-policy nav {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-left: auto;
}

.footer-policy a,
.footer-menu a {
  color: rgba(255, 255, 255, .46);
  font-weight: 400;
  transition: color .18s ease;
}

.footer-policy a:hover,
.footer-menu a:hover {
  color: var(--blue);
}

.footer-policy a + a::before {
  content: "·";
  margin-right: 18px;
  color: rgba(255, 255, 255, .22);
}

.footer-menu {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: clamp(18px, 1.55vw, 30px);
  width: var(--footer-width);
  margin: 0 auto;
  padding: 38px 0 36px;
}

.medipium-inline-picture {
  display: contents;
}

.footer-menu section {
  display: grid;
  align-content: start;
  gap: 12px;
}

@media (min-width: 1181px) {
  .footer-menu section {
    justify-items: start;
    text-align: left;
  }
}

.footer-menu-primary,
.footer-menu-extra-inner {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-menu-extra {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows .28s ease, opacity .2s ease;
}

.footer-menu-extra-inner {
  overflow: hidden;
}

.footer-menu-group.is-expanded .footer-menu-extra {
  grid-template-rows: 1fr;
  opacity: 1;
}

.footer-menu h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 18px;
  line-height: 1.25;
}

.footer-menu a {
  font-size: 14px;
}

.footer-menu-more {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  width: max-content;
  min-height: 30px;
  margin-top: 1px;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, .58);
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: color .18s ease;
}

.footer-menu-more:hover,
.footer-menu-more:focus-visible {
  color: var(--blue);
}

.footer-menu-more svg {
  width: 15px;
  height: 15px;
  transition: transform .22s ease;
}

.footer-menu-more[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 2.4vw, 46px);
  align-items: center;
  min-height: 160px;
  padding: 28px calc((100% - var(--footer-width)) / 2);
  background: #252326;
}

.footer-contact {
  justify-self: end;
  text-align: right;
}

.footer-contact > span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, .68);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .04em;
}

.footer-phone {
  display: block;
  color: var(--blue);
  font-size: clamp(38px, 3vw, 52px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.03em;
  white-space: nowrap;
  transition: color .18s ease;
}

.footer-phone:hover,
.footer-phone:focus-visible {
  color: #fff;
}

.footer-ars strong {
  display: block;
  color: var(--blue);
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
}

.footer-ars span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, .72);
  font-size: 16px;
  font-weight: 500;
}

.footer-numbers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 10px;
  color: rgba(255, 255, 255, .76);
  font-size: 14px;
  font-weight: 500;
}

.footer-numbers span {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 0 15px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .095);
  border-radius: 8px;
}

.footer-copy b {
  display: block;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

.footer-copy p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, .42);
  font-weight: 400;
  line-height: 1.55;
}

.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 2800;
  display: grid;
  width: 64px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d7e0eb;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(23, 33, 43, .1);
}

.floating-contact a,
.floating-contact button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 100%;
  height: 60px;
  color: #344154;
  background: #fff;
  border: 0;
  border-bottom: 1px solid #e2e8f0;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  transition: color .18s ease, background-color .18s ease;
}

.floating-contact a:first-child {
  color: #fff;
  background: var(--blue);
}

.floating-contact button {
  border-bottom: 0;
}

.floating-contact svg {
  width: 19px;
  height: 19px;
  stroke-width: 2;
}

.floating-contact a:hover,
.floating-contact button:hover {
  color: #315a9d;
  background: #edf3fc;
}

.floating-contact a:first-child:hover {
  color: #fff;
  background: #4f76c6;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: none;
}

.menu-overlay.is-open {
  display: block;
}

.menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 31, .68);
  backdrop-filter: blur(8px);
}

.all-menu {
  position: absolute;
  inset: 38px;
  overflow: auto;
  color: var(--deep);
  background:
    radial-gradient(circle at 88% 10%, rgba(111, 143, 216, .22), transparent 34%),
    linear-gradient(180deg, #f7faff 0%, #fff 100%);
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 18px;
  box-shadow: 0 34px 110px rgba(3, 11, 26, .38);
}

.all-menu-head {
  position: sticky;
  top: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 16px;
  align-items: center;
  min-height: 116px;
  padding: 26px 34px;
  color: #fff;
  background: linear-gradient(135deg, rgba(29, 39, 58, .98), rgba(88, 121, 198, .95));
  border-bottom: 4px solid var(--blue);
  backdrop-filter: blur(14px);
}

.all-menu-head span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
}

.all-menu-head strong {
  display: block;
  color: #fff;
  font-size: 34px;
  line-height: 1.15;
}

.all-menu-head p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.all-menu-head a {
  display: grid;
  place-items: center;
  min-width: 178px;
  height: 48px;
  padding: 0 20px;
  color: #fff;
  background: rgba(111, 143, 216, .95);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  font-weight: 900;
}

.all-menu-head button {
  position: relative;
  width: 48px;
  height: 48px;
  overflow: hidden;
  color: transparent;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  cursor: pointer;
}

.all-menu-head button::before,
.all-menu-head button::after {
  content: "";
  position: absolute;
  left: 14px;
  top: 23px;
  width: 20px;
  height: 2px;
  background: #fff;
}

.all-menu-head button::before {
  transform: rotate(45deg);
}

.all-menu-head button::after {
  transform: rotate(-45deg);
}

.all-menu-body {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 24px;
  padding: 30px;
}

.all-menu-summary {
  position: sticky;
  top: 146px;
  align-self: start;
  min-height: 540px;
  padding: 30px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(180deg, rgba(29, 39, 58, .98), rgba(49, 78, 139, .96));
  border-radius: 15px;
  box-shadow: 0 22px 54px rgba(23, 33, 43, .16);
}

.all-menu-summary::after {
  content: "MEDIPIUM";
  position: absolute;
  left: 28px;
  bottom: 22px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .13);
  font-size: 58px;
  font-weight: 900;
  letter-spacing: .02em;
}

.all-menu-summary > * {
  position: relative;
  z-index: 1;
}

.all-menu-summary span {
  display: inline-flex;
  padding: 8px 12px;
  color: #fff;
  background: rgba(111, 143, 216, .92);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.all-menu-summary h2 {
  margin: 24px 0 0;
  color: #fff;
  font-size: 29px;
  line-height: 1.28;
  letter-spacing: 0;
}

.all-menu-summary p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .72);
  font-weight: 700;
  line-height: 1.65;
}

.summary-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 28px;
}

.summary-actions a {
  display: grid;
  place-items: center;
  min-height: 48px;
  color: var(--deep);
  background: #fff;
  border-radius: 7px;
  font-weight: 900;
}

.summary-actions a:first-child {
  color: #fff;
  background: var(--blue);
}

.all-menu-summary dl {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
}

.all-menu-summary dl div {
  padding: 16px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 9px;
}

.all-menu-summary dt {
  color: rgba(255, 255, 255, .58);
  font-size: 13px;
  font-weight: 800;
}

.all-menu-summary dd {
  margin: 7px 0 0;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

.all-menu-grid {
  counter-reset: menu;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.all-menu-grid article {
  counter-increment: menu;
  position: relative;
  min-height: 214px;
  padding: 25px 24px 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, .92);
  border: 1px solid #dfe8f3;
  border-radius: 13px;
  box-shadow: 0 14px 34px rgba(23, 33, 43, .06);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.all-menu-grid article::before {
  content: counter(menu, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 28px;
  margin-bottom: 18px;
  color: var(--blue);
  background: #edf3ff;
  border: 1px solid #d7e3f4;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.all-menu-grid article::after {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 108px;
  height: 108px;
  background: rgba(111, 143, 216, .12);
  border-radius: 999px;
}

.all-menu-grid article:hover {
  border-color: var(--blue);
  transform: translateY(-5px);
  box-shadow: 0 24px 54px rgba(23, 33, 43, .12);
}

.all-menu-grid h3 {
  margin: 0 0 16px;
  color: var(--deep);
  font-size: 23px;
  line-height: 1.22;
}

.all-menu-grid a {
  position: relative;
  display: inline-flex;
  margin: 0 6px 8px 0;
  padding: 8px 11px 8px 20px;
  color: #5f6b78;
  background: #f5f8fc;
  border: 1px solid #e4ebf4;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  transition: color .18s ease, background .18s ease, border-color .18s ease;
}

.all-menu-grid a::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  width: 5px;
  height: 5px;
  background: #8fa6c4;
  border-radius: 50%;
  transform: translateY(-50%);
}

.all-menu-grid a:hover {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
  font-weight: 800;
}

.all-menu-grid a:hover::before {
  background: #fff;
}

@media (max-width: 1180px) {
  .hero-section {
    --hero-left: 32px;
    --hero-right: 24px;
    --hero-copy-top: clamp(132px, 17svh, 190px);
    --hero-action-top: clamp(350px, calc(56svh - 80px), 480px);
  }

  .stage-header {
    grid-template-columns: auto 1fr auto;
    padding: 0 28px;
  }

  .stage-nav {
    display: none;
  }

  .hero-grid,
  .center-layout,
  .contact-layout,
  .notice-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-panel,
  .contact-card {
    max-width: 520px;
  }

  .hero-section .hero-grid {
    transform: none;
  }

  .hero-action-row {
    left: 32px;
    right: 32px;
    top: var(--hero-action-top);
    grid-template-columns: minmax(0, 720px);
    gap: 18px;
  }

  .hero-quick-menu {
    width: min(720px, calc(100% - 64px));
    gap: 12px;
  }

  .hero-reservation-card {
    display: none;
    width: min(420px, calc(100% - 64px));
  }

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

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

  .program-controls {
    top: -76px;
  }

  .footer-inner {
    grid-template-rows: auto auto auto;
  }

  .footer-policy {
    display: grid;
    gap: 14px;
    padding: 20px 0;
  }

  .footer-menu {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-left: calc((100% - var(--footer-width)) / 2);
    padding-right: calc((100% - var(--footer-width)) / 2);
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .footer-contact {
    justify-self: start;
    text-align: left;
  }

  .program-tile {
    grid-template-rows: 180px auto auto 1fr;
    min-height: 360px;
  }

  .program-tile img {
    grid-row: auto;
  }

  .notice-board {
    max-width: 760px;
  }
}

@media (max-width: 720px) {
  html {
    scroll-snap-type: none;
  }

  .stage-header {
    height: 72px;
    padding: 0 16px;
  }

  .family-bar {
    height: 34px;
    padding: 0 12px;
    font-size: 12px;
  }

  .family-bar nav a {
    padding: 0 8px;
  }

  .blog-link {
    padding: 0 10px;
  }

  .blog-link span {
    display: none;
  }

  .stage-header {
    top: 34px;
  }

  .section-bg img {
    object-position: var(--hero-img-pos-mo, var(--hero-img-pos, center center));
  }

  .brand img {
    width: 210px;
  }

  .phone,
  .section-pager {
    display: none;
  }

  .section-inner {
    width: min(100% - 32px, 560px);
    padding: 104px 0 44px;
  }

  .hero-copy h1,
  .section-title h2 {
    font-size: 39px;
  }

  .hero-copy h1 {
    white-space: normal;
  }

  .hero-copy p,
  .section-title p {
    font-size: 17px;
  }

  .hero-section .hero-grid {
    position: relative;
    inset: auto;
    width: min(100% - 32px, 560px);
    min-height: 100svh;
    padding: 104px 0 44px;
    transform: none;
    pointer-events: auto;
  }

  .hero-copy {
    position: static;
    max-width: none;
  }

  .hero-action-row {
    display: none;
  }

  .hero-quick-menu {
    display: none;
  }

  .hero-reservation-card {
    display: none;
  }

  .floating-contact {
    right: auto;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 50%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(calc(100% - 32px), 300px);
    transform: translateX(-50%);
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(23, 33, 43, .12);
  }

  .floating-contact a,
  .floating-contact button {
    flex-direction: row;
    gap: 6px;
    height: 52px;
    border-right: 1px solid #e2e8f0;
    border-bottom: 0;
    font-size: 12px;
  }

  .floating-contact button {
    border-right: 0;
  }

  .floating-contact svg {
    width: 17px;
    height: 17px;
  }

  .hero-controls {
    bottom: 24px;
  }

  .hero-progress button {
    min-width: 38px;
    height: 30px;
  }

  .hero-panel,
  .contact-card {
    padding: 26px;
  }

  .notice-feature {
    min-height: auto;
    padding: 26px;
  }

  .notice-tabs {
    gap: 4px;
    padding: 5px;
  }

  .notice-tabs button {
    height: 42px;
    padding: 0 4px;
    white-space: nowrap;
    font-size: 13px;
    letter-spacing: 0;
  }

  .notice-feature strong {
    font-size: 27px;
  }

  .notice-list a {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px;
  }

  .notice-list b {
    white-space: normal;
    font-size: 17px;
  }

  .notice-more {
    justify-self: stretch;
    justify-content: center;
  }

  .program-tile {
    grid-template-rows: 190px auto auto 1fr;
    min-height: auto;
  }

  .program-page {
    grid-template-columns: 1fr;
  }

  .program-controls {
    position: static;
    justify-content: flex-end;
    order: -1;
  }

  .newsroom-section .section-inner {
    gap: 22px;
  }

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

  .news-card:nth-child(n+3) {
    display: none;
  }

  .news-card {
    min-height: 0;
    padding: 0;
    border-radius: 10px;
  }

  .news-body {
    min-height: 168px;
    padding: 14px 12px;
  }

  .news-card span {
    padding: 6px 9px;
    font-size: 11px;
  }

  .news-card h3 {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.38;
  }

  .news-card p {
    margin-top: 12px;
    font-size: 12px;
    line-height: 1.35;
  }

  .news-card img {
    order: -1;
    height: 86px;
  }

  .footer-section {
    min-height: auto;
  }

  .footer-inner {
    min-height: auto;
  }

  .footer-policy,
  .footer-menu {
    display: none;
  }

  .footer-bottom {
    padding-left: 16px;
    padding-right: 16px;
  }

  .footer-numbers {
    grid-template-columns: 1fr;
  }

  .all-menu {
    inset: 10px;
    padding: 0;
    overflow-y: auto;
    max-height: calc(100svh - 20px);
    border-radius: 16px;
  }

  .all-menu-head {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: auto;
    padding: 16px;
    border-bottom-width: 3px;
  }

  .all-menu-head span {
    margin-bottom: 5px;
    font-size: 10px;
  }

  .all-menu-head strong {
    font-size: 22px;
  }

  .all-menu-head p {
    display: none;
  }

  .all-menu-head a {
    display: none;
  }

  .all-menu-body {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .all-menu-summary {
    display: none;
  }

  .all-menu-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .all-menu-grid article {
    min-height: auto;
    padding: 18px 16px;
    border-radius: 12px;
  }

  .all-menu-grid article::before {
    min-width: 36px;
    height: 24px;
    margin-bottom: 10px;
    font-size: 11px;
  }

  .all-menu-grid article::after {
    width: 82px;
    height: 82px;
  }

  .all-menu-grid h3 {
    margin-bottom: 12px;
    font-size: 19px;
  }

  .all-menu-grid a {
    margin: 0 4px 6px 0;
    padding: 8px 10px 8px 20px;
    font-size: 14px;
  }
}

@media (max-width: 900px) {
  .hero-action-row,
  .hero-quick-menu {
    display: none;
  }

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

  .news-card:nth-child(n+3) {
    display: none;
  }

  .news-card {
    min-height: 0;
    padding: 0;
    border-radius: 10px;
  }

  .news-body {
    min-height: 168px;
    padding: 14px 12px;
  }

  .news-card span {
    padding: 6px 9px;
    font-size: 11px;
  }

  .news-card h3 {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.38;
  }

  .news-card p {
    margin-top: 12px;
    font-size: 12px;
    line-height: 1.35;
  }

  .news-card img {
    order: -1;
    height: 86px;
  }

  .program-page {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .program-tile {
    grid-template-rows: 96px auto auto 1fr;
    min-height: 246px;
    border-radius: 10px;
    box-shadow: 0 12px 26px rgba(23, 33, 43, .07);
  }

  .program-tile span,
  .program-tile b,
  .program-tile p {
    margin-left: 13px;
    margin-right: 13px;
  }

  .program-tile span {
    margin-top: 13px;
    font-size: 11px;
  }

  .program-tile b {
    margin-top: 6px;
    font-size: 17px;
    line-height: 1.22;
  }

  .program-tile p {
    display: -webkit-box;
    margin-top: 7px;
    margin-bottom: 14px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 12px;
    line-height: 1.42;
  }

  .program-controls {
    gap: 7px;
  }

  .program-controls button {
    width: 40px;
    height: 40px;
  }

  .program-dots button {
    min-width: 38px;
    height: 28px;
    font-size: 11px;
  }

  .notice-tabs {
    gap: 4px;
    padding: 5px;
  }

  .notice-tabs button {
    height: 42px;
    padding: 0 4px;
    white-space: nowrap;
    font-size: 13px;
    letter-spacing: 0;
  }

  .all-menu {
    inset: 10px;
    max-height: calc(100svh - 20px);
    border-radius: 16px;
  }

  .all-menu-head {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: auto;
    padding: 16px;
    border-bottom-width: 3px;
  }

  .all-menu-head span {
    margin-bottom: 5px;
    font-size: 10px;
  }

  .all-menu-head strong {
    font-size: 22px;
  }

  .all-menu-head p,
  .all-menu-head a,
  .all-menu-summary {
    display: none;
  }

  .all-menu-body {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .all-menu-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .all-menu-grid article {
    min-height: auto;
    padding: 18px 16px;
    border-radius: 12px;
  }

  .all-menu-grid article::before {
    min-width: 36px;
    height: 24px;
    margin-bottom: 10px;
    font-size: 11px;
  }

  .all-menu-grid article::after {
    width: 82px;
    height: 82px;
  }

  .all-menu-grid h3 {
    margin-bottom: 12px;
    font-size: 19px;
  }

  .all-menu-grid a {
    margin: 0 4px 6px 0;
    padding: 8px 10px 8px 20px;
    font-size: 14px;
  }
}

.gnuboard-sub-page {
  min-height: 100vh;
  padding-top: 118px;
  background: #f6f8fb;
}

.sub-hero {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  padding: 128px 0 86px;
  color: #fff;
  background:
    linear-gradient(115deg, rgba(31, 49, 88, .94) 0%, rgba(31, 49, 88, .74) 46%, rgba(95, 132, 214, .18) 100%),
    url("https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?auto=format&fit=crop&w=1800&q=78") center/cover no-repeat;
}

.sub-hero::after {
  content: "MEDIPIUM";
  position: absolute;
  right: max(28px, calc((100% - var(--max)) / 2 - 44px));
  bottom: -12px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .18);
  font-size: clamp(80px, 13vw, 220px);
  font-weight: 900;
  line-height: .8;
  pointer-events: none;
}

.sub-hero-inner,
.sub-layout {
  width: min(var(--max), calc(100% - 96px));
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  font-weight: 800;
}

.breadcrumb a:hover,
.breadcrumb strong {
  color: #fff;
}

.breadcrumb span {
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, .42);
  border-radius: 50%;
}

.sub-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 20px;
  color: #fff;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.sub-hero h1 {
  max-width: 860px;
  margin: 28px 0 22px;
  font-size: clamp(52px, 6vw, 86px);
  line-height: 1.05;
  letter-spacing: 0;
}

.sub-hero p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, .8);
  font-size: 22px;
  font-weight: 750;
  line-height: 1.65;
}

.sub-nav-band {
  position: relative;
  z-index: 3;
  width: min(var(--max), calc(100% - 96px));
  margin: -36px auto 0;
  background: #fff;
  border: 1px solid #dbe5f1;
  border-radius: 10px;
  box-shadow: 0 22px 56px rgba(23, 33, 43, .1);
}

.sub-nav-band ul {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sub-nav-band a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 0 18px;
  color: #526070;
  border-right: 1px solid #e5ecf5;
  font-weight: 900;
  text-align: center;
}

.sub-nav-band li:last-child a {
  border-right: 0;
}

.sub-nav-band a.is-active,
.sub-nav-band a:hover {
  color: #fff;
  background: var(--blue);
}

.sub-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 56px;
  padding: 82px 0 120px;
}

.sub-lnb {
  position: sticky;
  top: 150px;
  align-self: start;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dce5f0;
  border-radius: 10px;
}

.sub-lnb h2 {
  margin: 0;
  padding: 28px;
  color: #fff;
  background: var(--deep);
  font-size: 25px;
}

.sub-lnb a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 24px;
  color: #65717f;
  border-bottom: 1px solid #edf2f7;
  font-weight: 850;
}

.sub-lnb a:last-child {
  border-bottom: 0;
}

.sub-lnb a::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  opacity: .45;
}

.sub-lnb a.is-active,
.sub-lnb a:hover {
  color: var(--blue);
  background: #f3f7fd;
}

.sub-content {
  min-width: 0;
}

.sub-section-head {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-end;
  padding-bottom: 34px;
  border-bottom: 2px solid #17212b;
}

.sub-section-head span {
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .08em;
}

.sub-section-head h2 {
  margin: 12px 0 0;
  font-size: clamp(38px, 4.2vw, 64px);
  line-height: 1.12;
  letter-spacing: 0;
}

.sub-section-head p {
  max-width: 420px;
  margin: 0;
  color: #707d89;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.7;
}

.greeting-shell {
  margin-top: 48px;
}

.greeting-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: stretch;
}

.greeting-message {
  min-height: 360px;
  padding: 54px;
  background: #fff;
  border: 1px solid #dce5f0;
  border-radius: 10px;
}

.greeting-message em {
  display: block;
  color: var(--blue);
  font-style: normal;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .08em;
}

.greeting-message strong {
  display: block;
  max-width: 700px;
  margin-top: 22px;
  font-size: clamp(32px, 3.2vw, 52px);
  line-height: 1.22;
  letter-spacing: 0;
}

.greeting-message p {
  max-width: 720px;
  margin: 28px 0 0;
  color: #687583;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
}

.greeting-photo {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  background:
    linear-gradient(180deg, rgba(95, 132, 214, .08), rgba(31, 49, 88, .28)),
    url("https://images.unsplash.com/photo-1576091160550-2173dba999ef?auto=format&fit=crop&w=900&q=78") center/cover no-repeat;
  border-radius: 10px;
}

.greeting-photo::after {
  content: "CEO MESSAGE";
  position: absolute;
  left: 28px;
  bottom: 28px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
}

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

.placeholder-card {
  min-height: 150px;
  padding: 26px;
  background: #fff;
  border: 1px solid #dce5f0;
  border-radius: 10px;
}

.placeholder-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: var(--blue);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 900;
}

.placeholder-card b {
  display: block;
  margin-top: 22px;
  font-size: 21px;
}

.placeholder-card p {
  margin: 10px 0 0;
  color: #788491;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.58;
}

@media (max-width: 1180px) {
  .sub-layout,
  .greeting-feature {
    grid-template-columns: 1fr;
  }

  .sub-lnb {
    position: static;
  }
}

@media (max-width: 720px) {
  .gnuboard-sub-page {
    padding-top: 98px;
  }

  .sub-hero {
    min-height: 340px;
    padding: 92px 0 72px;
  }

  .sub-hero-inner,
  .sub-layout,
  .sub-nav-band {
    width: min(100% - 32px, 560px);
  }

  .sub-hero h1 {
    font-size: 46px;
  }

  .sub-hero p {
    font-size: 18px;
  }

  .sub-nav-band ul,
  .content-placeholder {
    grid-template-columns: 1fr;
  }

  .sub-nav-band a {
    justify-content: flex-start;
    min-height: 54px;
    border-right: 0;
    border-bottom: 1px solid #e5ecf5;
  }

  .sub-layout {
    gap: 28px;
    padding: 52px 0 76px;
  }

  .sub-section-head {
    display: block;
  }

  .sub-section-head p {
    margin-top: 18px;
  }

  .greeting-message {
    padding: 32px 24px;
  }
}

.about-heading {
  padding: 76px 0 72px;
  background: #fff;
}

.about-heading-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  width: min(1680px, calc(100% - 120px));
  margin: 0 auto;
}

.about-heading-copy p {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 24px;
  font-weight: 850;
  line-height: 1.3;
}

.about-heading-copy h1 {
  margin: 0;
  color: #151d28;
  font-size: clamp(36px, 3.7vw, 60px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0;
}

.about-path {
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 0 30px;
  color: #495565;
  background: #f3f6fa;
  border: 1px solid #e5ebf4;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
}

.about-path-home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: var(--deep);
}

.about-path-home svg {
  width: 17px;
  height: 17px;
  stroke-width: 2.4;
}

.about-path-part,
.about-path-select {
  position: relative;
  display: flex;
  align-items: center;
}

.about-path-part::before,
.about-path-select::before {
  content: "";
  display: block;
  width: 34px;
  height: 18px;
  background:
    linear-gradient(45deg, transparent 45%, #a8b2c0 45%, #a8b2c0 58%, transparent 58%) center/9px 9px no-repeat;
}

.about-path-select summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 64px;
  padding-right: 22px;
  cursor: pointer;
  list-style: none;
}

.about-path-select summary::-webkit-details-marker {
  display: none;
}

.about-path-select summary::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-70%) rotate(45deg);
  opacity: .72;
}

.about-path-select[open] summary::after {
  transform: translateY(-20%) rotate(225deg);
}

.about-path-select ul {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 30;
  min-width: 168px;
  margin: 0;
  padding: 12px 0;
  list-style: none;
  background: #fff;
  border: 1px solid #e4ebf4;
  border-radius: 12px;
  box-shadow: 0 20px 44px rgba(21, 29, 40, .14);
}

.about-path-select a {
  display: block;
  padding: 9px 18px;
  color: #4d5967;
  font-size: 14px;
}

.about-path-select a.is-active,
.about-path-select a:hover {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.about-message {
  padding: 4px 0 24px;
  background: #fff;
}

.about-message-head {
  position: relative;
  display: grid;
  gap: 14px;
  max-width: 1120px;
  padding: 0 0 42px 2px;
}

.about-message-head::after {
  content: "";
  position: absolute;
  left: 2px;
  bottom: 0;
  width: 72px;
  height: 3px;
  background: #f3ab52;
}

.about-message-head p {
  margin: 0;
  color: #263242;
  font-size: clamp(30px, 2.45vw, 43px);
  font-weight: 500;
  line-height: 1.38;
  letter-spacing: -.015em;
}

.about-message-head h2 {
  margin: 0;
  color: #101722;
  font-size: clamp(52px, 4.4vw, 82px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.02em;
}

.about-message-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 480px);
  gap: clamp(56px, 6vw, 104px);
  align-items: start;
  margin-top: 54px;
}

.about-message-body {
  max-width: 900px;
}

.about-message-body p {
  margin: 0;
  color: #34404f;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.88;
  letter-spacing: -.01em;
}

.about-message-body strong {
  color: #101722;
  font-weight: 650;
}

.about-message-body p + p {
  margin-top: 16px;
}

.about-message-body .about-message-opener {
  color: #101722;
  font-size: 22px;
  font-weight: 650;
  line-height: 1.45;
}

.about-message-sign {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 46px;
  padding: 22px 0 0;
  border-top: 1px solid #dfe6ef;
}

.about-message-sign span {
  color: #6f7b8b;
  font-size: 15px;
  font-weight: 500;
}

.about-message-sign strong {
  color: #101722;
  font-size: 24px;
  font-weight: 700;
}

.about-message-photo {
  position: sticky;
  top: 146px;
  display: grid;
  place-items: center;
  min-height: 540px;
  overflow: hidden;
  color: #778392;
  background:
    linear-gradient(135deg, rgba(95, 132, 214, .09), rgba(243, 171, 82, .08)),
    linear-gradient(180deg, #fafcff 0%, #f3f6fa 100%);
  border: 1px solid #dce4ee;
  border-radius: 2px;
}

.about-message-photo::before {
  content: "MEDIPIUM";
  position: absolute;
  left: 30px;
  top: 28px;
  color: rgba(16, 23, 34, .06);
  font-size: clamp(38px, 3.4vw, 58px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: .02em;
}

.about-message-photo::after {
  content: "";
  position: absolute;
  right: -72px;
  bottom: -72px;
  width: 210px;
  height: 210px;
  border: 34px solid rgba(95, 132, 214, .08);
  border-radius: 50%;
}

.about-message-photo > .medipium-inline-image-placeholder {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 158px;
  min-height: 50px;
  padding: 0 24px;
  color: #4f5d70;
  background: rgba(255, 255, 255, .86);
  border: 1px solid #dce4ee;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
}

.about-message-photo > img,
.department-visual-placeholder > img,
.department-equipment-placeholder > img {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.has-about-motion .about-message-head,
.has-about-motion .about-message-body p,
.has-about-motion .about-message-sign,
.has-about-motion .about-message-photo {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .82s ease, transform .82s cubic-bezier(.2, .72, .18, 1);
  will-change: transform, opacity;
}

.has-about-motion .about-message.is-visible .about-message-head,
.has-about-motion .about-message.is-visible .about-message-body p,
.has-about-motion .about-message.is-visible .about-message-sign,
.has-about-motion .about-message.is-visible .about-message-photo {
  opacity: 1;
  transform: translateY(0);
}

.has-about-motion .about-message.is-visible .about-message-body p:nth-child(1) { transition-delay: .08s; }
.has-about-motion .about-message.is-visible .about-message-body p:nth-child(2) { transition-delay: .13s; }
.has-about-motion .about-message.is-visible .about-message-body p:nth-child(3) { transition-delay: .18s; }
.has-about-motion .about-message.is-visible .about-message-body p:nth-child(4) { transition-delay: .23s; }
.has-about-motion .about-message.is-visible .about-message-body p:nth-child(5) { transition-delay: .28s; }
.has-about-motion .about-message.is-visible .about-message-body p:nth-child(6) { transition-delay: .33s; }
.has-about-motion .about-message.is-visible .about-message-body p:nth-child(7) { transition-delay: .38s; }
.has-about-motion .about-message.is-visible .about-message-body p:nth-child(8) { transition-delay: .43s; }
.has-about-motion .about-message.is-visible .about-message-sign { transition-delay: .5s; }
.has-about-motion .about-message.is-visible .about-message-photo { transition-delay: .2s; }

.about-visual {
  padding: 0 max(42px, calc((100% - 1840px) / 2));
  background: #fff;
}

.about-visual-inner {
  position: relative;
  overflow: hidden;
  height: clamp(320px, 26vw, 500px);
  background: #e8eef6;
  border-radius: 32px;
}

.about-visual-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 31, 54, .36), rgba(16, 31, 54, .06)),
    url("../images/sub/sub-about-building.jpg") center/cover no-repeat;
  transform: scale(1.02);
}

.about-overview-section {
  padding: 118px 0 0;
  background: #fff;
}

.about-overview-title {
  width: min(1680px, calc(100% - 120px));
  margin: 0 auto 48px;
}

.about-overview-title h2 {
  margin: 0;
  color: #cbd4df;
  font-size: clamp(56px, 5.2vw, 92px);
  font-weight: 900;
  line-height: 1.15;
}

.about-overview-title span {
  color: var(--blue);
}

.about-overview {
  display: flex;
  align-items: center;
  width: 100%;
}

.about-overview-image {
  position: relative;
  overflow: hidden;
  width: 50%;
  height: 500px;
  background: #eaf0f7;
  border-radius: 0 500px 500px 0;
}

.about-overview-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-overview-text {
  width: 50%;
}

.about-overview-text-inner {
  max-width: 780px;
  padding: 0 96px;
}

.about-overview-text p {
  margin: 24px 0 0;
  color: #596575;
  font-size: 19px;
  font-weight: 650;
  line-height: 1.78;
}

.about-overview-text .intro-title {
  margin-top: 0;
  color: #151d28;
  font-size: clamp(28px, 2.2vw, 38px);
  font-weight: 900;
  line-height: 1.42;
}

.about-value-section {
  padding: 110px 0 130px;
  background: #fff;
}

.about-value-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1680px, calc(100% - 120px));
  margin: 0 auto;
  border-top: 1px solid #dce4ee;
  border-bottom: 1px solid #dce4ee;
}

.about-value-inner article {
  min-height: 260px;
  padding: 42px 42px 48px;
  border-left: 1px solid #dce4ee;
}

.about-value-inner article:last-child {
  border-right: 1px solid #dce4ee;
}

.about-value-inner span {
  color: var(--blue);
  font-size: 15px;
  font-weight: 900;
}

.about-value-inner strong {
  display: block;
  margin-top: 24px;
  color: #151d28;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.28;
}

.about-value-inner p {
  margin: 22px 0 0;
  color: #65717f;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.68;
}

@media (max-width: 1180px) {
  .about-heading-inner {
    display: block;
    width: min(100% - 48px, 920px);
  }

  .about-path {
    width: fit-content;
    margin-top: 32px;
  }

  .about-message-head {
    max-width: 820px;
  }

  .about-message-head h2 {
    font-size: 56px;
  }

  .about-message-head p {
    font-size: 32px;
  }

  .about-message-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .about-message-photo {
    position: relative;
    top: auto;
    min-height: 360px;
  }

  .about-visual {
    padding: 0 24px;
  }

  .about-overview {
    display: block;
  }

  .about-overview-title,
  .about-value-inner {
    width: min(100% - 48px, 920px);
  }

  .about-overview-image,
  .about-overview-text {
    width: 100%;
  }

  .about-overview-image {
    width: calc(100% - 24px);
    height: 360px;
    border-radius: 0 360px 360px 0;
  }

  .about-overview-text-inner {
    max-width: none;
    padding: 48px 24px 0;
  }

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

  .about-value-inner article,
  .about-value-inner article:last-child {
    min-height: 0;
    border-right: 1px solid #dce4ee;
    border-bottom: 1px solid #dce4ee;
  }

  .about-value-inner article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 720px) {
  .about-heading {
    padding: 70px 0 38px;
  }

  .about-heading-inner,
  .about-overview-title,
  .about-value-inner {
    width: min(100% - 32px, 560px);
  }

  .about-heading-copy p {
    font-size: 17px;
  }

  .about-heading-copy h1 {
    font-size: 30px;
  }

  .about-path {
    min-height: 52px;
    padding: 0 16px;
    font-size: 13px;
  }

  .about-path-select summary {
    min-height: 52px;
  }

  .about-path-part::before,
  .about-path-select::before {
    width: 22px;
  }

  .about-message {
    padding-top: 0;
  }

  .about-message-head {
    gap: 12px;
  }

  .about-message-head p {
    font-size: 25px;
    line-height: 1.42;
  }

  .about-message-head h2 {
    font-size: 38px;
    line-height: 1.08;
  }

  .about-message-grid {
    gap: 34px;
    margin-top: 38px;
    padding-top: 30px;
  }

  .about-message-body p {
    font-size: 16px;
    line-height: 1.82;
  }

  .about-message-body {
    padding-left: 22px;
  }

  .about-message-body p + p {
    margin-top: 15px;
  }

  .about-message-body .about-message-opener {
    font-size: 19px;
  }

  .about-message-sign {
    display: block;
    margin-top: 34px;
    padding-top: 22px;
  }

  .about-message-sign strong {
    display: block;
    margin-top: 8px;
    font-size: 23px;
  }

  .about-message-photo {
    min-height: 280px;
  }

  .about-message-photo::before {
    left: 22px;
    top: 20px;
    font-size: 30px;
  }

  .about-visual {
    padding: 0 16px;
  }

  .about-visual-inner {
    height: 210px;
    border-radius: 18px;
  }

  .about-overview-section {
    padding-top: 62px;
  }

  .about-overview-title h2 {
    font-size: 36px;
  }

  .about-overview-image {
    width: calc(100% - 12px);
    height: 220px;
    border-radius: 0 220px 220px 0;
  }

  .about-overview-text-inner {
    padding: 34px 16px 0;
  }

  .about-overview-text p {
    font-size: 16px;
  }

  .about-value-section {
    padding: 64px 0 84px;
  }

  .about-value-inner article {
    padding: 30px 24px 34px;
  }

  .about-value-inner strong {
    font-size: 24px;
  }
}

.park-sub-hero {
  position: relative;
  overflow: visible;
  z-index: auto;
  min-height: 478px;
  color: #fff;
  background: #111923;
}

.park-sub-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 17, 28, .70) 0%, rgba(9, 17, 28, .20) 58%, rgba(9, 17, 28, .05) 100%),
    var(--park-sub-bg, url("https://images.unsplash.com/photo-1480714378408-67cf0d13bc1f?auto=format&fit=crop&w=2400&q=82")) var(--park-sub-bg-pos, center 50%)/cover no-repeat;
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .park-sub-bg {
    background:
      linear-gradient(90deg, rgba(9, 17, 28, .74) 0%, rgba(9, 17, 28, .34) 62%, rgba(9, 17, 28, .12) 100%),
      var(--park-sub-bg-mo, var(--park-sub-bg, url("https://images.unsplash.com/photo-1480714378408-67cf0d13bc1f?auto=format&fit=crop&w=1600&q=80"))) var(--park-sub-bg-mo-pos, var(--park-sub-bg-pos, center 50%))/cover no-repeat;
  }
}

.park-sub-inner {
  position: relative;
  z-index: 10;
  width: min(1640px, calc(100% - 96px));
  margin: 0 auto;
  padding: 146px 0 0;
  transform: translateY(50px);
}

.park-sub-inner h1 {
  margin: 0 0 30px;
  color: #fff;
  font-size: clamp(30px, 2.45vw, 42px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
}

.park-sub-menu {
  position: relative;
  display: grid;
  grid-template-columns: minmax(248px, 300px) minmax(0, 1fr);
  align-items: center;
  min-height: 72px;
}

.park-sub-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: rgba(255, 255, 255, .42);
}

.park-depth {
  position: relative;
  z-index: 30;
  width: min(300px, 88vw);
}

.park-depth summary {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 72px;
  padding: 0 18px;
  color: #fff;
  cursor: pointer;
  list-style: none;
  font-size: 17px;
  font-weight: 900;
  border-radius: 12px;
}

.park-depth summary::-webkit-details-marker {
  display: none;
}

.park-depth summary::after {
  content: "";
  width: 10px;
  height: 10px;
  margin-left: auto;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-4px) rotate(45deg);
}

.park-depth[open] summary::after {
  transform: translateY(3px) rotate(225deg);
}

.park-depth[open] {
  z-index: 80;
}

.park-depth[open] summary {
  color: #fff;
  background: #f3ab52;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 20px 45px rgba(9, 17, 28, .28);
}

.park-home-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border: 2px solid currentColor;
  border-radius: 7px;
}

.park-home-icon svg {
  width: 15px;
  height: 15px;
  stroke-width: 2.4;
}

.park-depth ul {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 81;
  width: 100%;
  margin: 0;
  padding: 14px 10px 18px;
  list-style: none;
  background: #f3ab52;
  border: 0;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 26px 60px rgba(9, 17, 28, .28);
  opacity: 0;
  transform: translateY(-8px);
  transform-origin: top center;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}

.park-depth[open] ul {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.park-depth-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 14px 6px 7px;
  padding: 8px 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  background: rgba(255, 255, 255, .18);
  border-left: 3px solid rgba(255, 255, 255, .95);
  border-radius: 8px;
}

.park-depth-heading:first-child {
  margin-top: 0;
}

.park-depth li a {
  display: block;
  margin: 0 6px;
  padding: 8px 14px 8px 22px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 7px;
  transition: background-color .18s ease, color .18s ease, transform .18s ease;
}

.park-depth li a.is-active,
.park-depth li a:hover {
  color: #fff;
  background: rgba(22, 28, 35, .88);
  transform: translateX(2px);
}

.park-depth li a.is-compact-label {
  font-size: 13px;
}

.park-sub-tabs {
  --tab-indicator-left: 58px;
  --tab-indicator-width: 76px;
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(18px, 2.05vw, 38px);
  min-width: 0;
  min-height: 72px;
  margin: 0;
  padding: 0 0 0 58px;
  list-style: none;
}

.park-sub-tabs::before {
  content: "";
  position: absolute;
  left: var(--tab-indicator-left);
  top: 0;
  width: var(--tab-indicator-width);
  height: 4px;
  background: #f3a51a;
  opacity: 0;
  transform: translateZ(0);
  transition: left .34s cubic-bezier(.22, 1, .36, 1), width .34s cubic-bezier(.22, 1, .36, 1), opacity .18s ease;
}

.park-sub-tabs.has-moving-indicator::before {
  opacity: 1;
}

.park-sub-tabs a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 72px;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(14px, .92vw, 17px);
  font-weight: 900;
  white-space: nowrap;
}

.park-sub-tabs a::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 76px;
  height: 4px;
  background: #f3a51a;
  opacity: 0;
  transform: translateX(-50%);
}

.park-sub-tabs.has-moving-indicator a::before {
  display: none;
}

.park-sub-tabs a.is-active,
.park-sub-tabs a:hover {
  color: #f3a51a;
}

.park-sub-tabs a.is-active::before,
.park-sub-tabs a:hover::before {
  opacity: 1;
}

.park-sub-curve {
  --park-sub-left: max(48px, calc((100vw - 1640px) / 2));
  --park-sub-radius: 86px;
  --park-sub-shape-left: calc(var(--park-sub-left) + 83px - var(--park-sub-radius));
  --park-sub-fill-left: max(0px, var(--park-sub-shape-left));
  --park-sub-notch: calc(var(--park-sub-left) + 83px);
  position: relative;
  z-index: 1;
  height: 178px;
  margin-top: -86px;
  background:
    radial-gradient(circle var(--park-sub-radius) at var(--park-sub-shape-left) var(--park-sub-radius), #fff 0 99%, transparent 100%),
    radial-gradient(circle var(--park-sub-radius) at calc(var(--park-sub-shape-left) + (var(--park-sub-radius) * 2)) var(--park-sub-radius), #fff 0 99%, transparent 100%),
    linear-gradient(#fff, #fff) 0 0 / var(--park-sub-fill-left) 100% no-repeat,
    linear-gradient(#fff, #fff) calc(var(--park-sub-shape-left) + (var(--park-sub-radius) * 2)) 0 / calc(100% - var(--park-sub-shape-left) - (var(--park-sub-radius) * 2)) 100% no-repeat,
    linear-gradient(#fff, #fff) 0 var(--park-sub-radius) / 100% calc(100% - var(--park-sub-radius)) no-repeat;
  pointer-events: none;
}

.park-sub-curve::before {
  display: none;
  content: "";
}

.park-sub-curve::after {
  content: "";
  position: absolute;
  left: calc(var(--park-sub-notch) - 29px);
  top: 96px;
  width: 58px;
  height: 52px;
  background: url("../images/logo/medipium-symbol.png") center/contain no-repeat;
  border-radius: 0;
}

.park-sub-curve span {
  display: none;
}

.park-content-shell {
  position: relative;
  z-index: 2;
  min-height: 360px;
  padding: 12px 0 130px;
  background: #fff;
}

.park-content-shell.is-inpatient-guide-page {
  overflow-x: clip;
  padding-bottom: 0;
}

.park-content-shell.is-inpatient-room-page {
  padding-bottom: 0;
}

.park-content-shell.is-mission-page {
  padding-bottom: 0;
}

.park-content-shell.is-clinic-department-page {
  padding-bottom: 0;
}

.park-content-shell.is-physical-therapy-page {
  padding-bottom: 0;
}

.park-content-shell.is-exercise-therapy-page {
  padding-bottom: 0;
}

.park-content-shell.is-nonpay-page {
  min-height: 0;
  padding-top: 0;
  padding-bottom: 82px;
}

.park-content-inner {
  width: min(1640px, calc(100% - 96px));
  margin: 0 auto;
  padding-left: 5px;
}

.park-content-title {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  color: #f0aa35;
}

.park-content-title strong {
  font-size: clamp(21px, 1.38vw, 27px);
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
}

.park-content-title span {
  flex: 1;
  height: 1px;
  background: #c9c9c9;
}

.park-local-tabs {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 44px;
  position: relative;
  z-index: 20;
}

.park-local-tabs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  height: 54px;
  padding: 0 34px;
  color: #d89642;
  font-size: 19px;
  font-weight: 600;
  border: 1px solid rgba(243, 171, 82, .52);
  border-radius: 999px;
  background: #fff;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.park-local-tabs a.is-active,
.park-local-tabs a:hover {
  color: #fff;
  border-color: #f3ab52;
  background: #f3ab52;
}

.park-local-tabs a.is-compact-label {
  min-width: 164px;
  padding-right: 16px;
  padding-left: 16px;
  font-size: 16px;
}

.park-local-tabs.is-clinic-tabs {
  gap: 10px;
}

.park-local-tabs.is-clinic-tabs a {
  min-width: 148px;
  height: 54px;
  padding: 0 29px;
  font-size: 19px;
}

@media (max-width: 1500px) {
  .park-local-tabs {
    gap: 8px;
  }

  .park-local-tabs a {
    min-width: 126px;
    height: 52px;
    padding: 0 28px;
    font-size: 17px;
  }

  .park-local-tabs.is-clinic-tabs {
    gap: 8px;
  }

  .park-local-tabs.is-clinic-tabs a {
    min-width: 126px;
    height: 52px;
    padding: 0 23px;
    font-size: 17px;
  }

  .medipium-sub-search {
    flex-basis: 300px;
  }

  .medipium-sub-search-head {
    gap: 10px;
    margin-bottom: 10px;
  }

  .medipium-sub-search-head > span {
    width: 36px;
    height: 36px;
  }

  .medipium-sub-search-head strong {
    font-size: 17px;
  }

  .medipium-sub-search-head em {
    font-size: 12px;
  }

  .medipium-sub-search label {
    height: 51px;
  }
}

.park-greeting-copy {
  padding-top: 4px;
  padding-left: 7px;
}

.park-page-headline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(36px, 5vw, 92px);
  margin-bottom: 38px;
}

.park-page-headline .park-greeting-copy,
.park-page-headline > div:first-child {
  flex: 1 1 auto;
  min-width: 0;
}

.park-content-shell.is-nonpay-page .park-local-tabs {
  margin-bottom: 30px;
}

.park-content-shell.is-nonpay-page .park-page-headline {
  margin-bottom: 18px;
}

.park-content-shell.is-nonpay-page .park-greeting-en {
  margin-bottom: 18px;
}

.park-greeting-copy h2 {
  margin: 0;
  color: #05070a;
  font-size: clamp(34px, 2.65vw, 48px);
  font-weight: 700;
  line-height: 1.12;
}

.park-greeting-en {
  margin: 6px 0 28px 2px;
  color: #e8e8e8;
  font-size: clamp(20px, 1.42vw, 27px);
  font-weight: 500;
  line-height: 1.2;
}

.park-greeting-note {
  display: inline-block;
  margin-top: 4px;
  color: #5f6878;
  font-size: .92em;
  line-height: 1.6;
}

.park-greeting-copy p:not(.park-greeting-en) {
  margin: 0 0 0 2px;
  color: #141922;
  font-size: clamp(16px, .98vw, 19px);
  font-weight: 400;
  line-height: 1.55;
}

.park-coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  margin-top: 38px;
  color: #8b95a3;
  border: 1px dashed #d8dee8;
  border-radius: 18px;
  background: linear-gradient(180deg, #fbfcfe 0%, #f7f9fc 100%);
}

.park-coming-soon span {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin-bottom: 18px;
  color: #5f84d6;
  border-radius: 50%;
  background: rgba(95, 132, 214, .1);
}

.park-coming-soon svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.8;
}

.park-coming-soon strong {
  color: #485465;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0;
}

.national-checkup-page {
  margin-top: 58px;
}

.national-checkup-overview {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr);
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  margin-bottom: clamp(86px, 8vw, 126px);
  border: 1px solid #e0e7f0;
  border-left: 4px solid #5f84d6;
  border-radius: 8px;
  background: #f7f9fc;
}

.national-checkup-intro {
  position: relative;
  z-index: 0;
  padding: clamp(48px, 5vw, 74px);
  background: transparent;
}

.national-checkup-intro::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -72px;
  bottom: -72px;
  width: 210px;
  height: 210px;
  border: 34px solid rgba(95, 132, 214, .07);
  border-radius: 50%;
}

.national-checkup-intro > span,
.national-section-heading > span,
.national-transition-copy > span {
  display: block;
  margin-bottom: 15px;
  color: #5f84d6;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: .08em;
}

.national-checkup-intro h3,
.national-section-heading h3,
.national-transition-copy h3 {
  margin: 0;
  color: #172033;
  font-size: clamp(34px, 3.1vw, 52px);
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: 0;
  word-break: keep-all;
}

.national-checkup-intro p,
.national-section-heading p,
.national-transition-copy p {
  max-width: 800px;
  margin: 24px 0 0;
  color: #4b5667;
  font-size: clamp(16px, 1.18vw, 19px);
  line-height: 1.8;
  word-break: keep-all;
}

.national-checkup-intro p {
  color: #43516a;
}

.national-summary-list {
  display: grid;
  align-content: center;
  margin: 0;
  padding: clamp(36px, 4vw, 60px) clamp(42px, 5vw, 76px);
  background: rgba(255, 255, 255, .76);
}

.national-summary-list > div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid #dfe5ee;
}

.national-summary-list > div:first-child {
  border-top: 2px solid #172033;
}

.national-summary-list dt {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #172033;
  font-size: 17px;
  font-weight: 800;
}

.national-summary-list dt svg {
  width: 21px;
  height: 21px;
  color: #5f84d6;
  stroke-width: 1.8;
}

.national-summary-list dd {
  margin: 0;
  color: #4b5667;
  font-size: 16px;
  line-height: 1.7;
  word-break: keep-all;
}

.national-checkup-section {
  margin-bottom: clamp(86px, 8vw, 126px);
}

.national-section-heading {
  margin-bottom: 42px;
}

.national-section-heading h3 {
  font-size: clamp(31px, 2.5vw, 44px);
}

.national-section-heading p {
  margin-top: 16px;
}

@media (min-width: 1181px) {
  .national-general-section .national-section-heading p {
    max-width: none;
    white-space: nowrap;
  }
}

.national-common-tests {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 2px solid #172033;
  border-bottom: 1px solid #dfe5ee;
}

.national-common-tests article {
  min-height: 218px;
  padding: 30px 24px;
  border-right: 1px solid #e2e7ee;
  transition: background .22s ease;
}

.national-common-tests article:last-child {
  border-right: 0;
}

.national-common-tests article:hover {
  background: #f7f9fc;
}

.national-common-tests article > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: #5f84d6;
  border: 1px solid #cad8ee;
  border-radius: 6px;
  background: #f6f9fe;
}

.national-common-tests svg {
  width: 23px;
  height: 23px;
  stroke-width: 1.7;
}

.national-common-tests strong {
  display: block;
  margin-bottom: 9px;
  color: #172033;
  font-size: 19px;
  font-weight: 750;
}

.national-common-tests p {
  margin: 0;
  color: #697385;
  font-size: 14px;
  line-height: 1.65;
  word-break: keep-all;
}

.national-age-list-wrap {
  margin-top: 58px;
}

.national-age-list-wrap h4 {
  margin: 0 0 20px;
  color: #172033;
  font-size: 27px;
  font-weight: 750;
}

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

.national-age-grid article {
  display: grid;
  grid-template-columns: minmax(130px, .62fr) minmax(0, 1.38fr);
  gap: 18px;
  align-items: center;
  min-height: 82px;
  padding: 19px 22px;
  border: 1px solid #dfe6ef;
  border-radius: 6px;
  background: #fafbfd;
  transition: border-color .2s ease, background .2s ease;
}

.national-age-grid article:hover {
  border-color: #b8c9e3;
  background: #f4f7fc;
}

.national-age-grid strong {
  color: #25344b;
  font-size: 15px;
  font-weight: 800;
}

.national-age-grid p {
  margin: 0;
  color: #596576;
  font-size: 14px;
  line-height: 1.55;
  word-break: keep-all;
}

.national-checkup-band {
  position: relative;
  z-index: 0;
  margin-bottom: clamp(86px, 8vw, 126px);
  padding: clamp(76px, 7vw, 108px) 0;
}

.national-checkup-band::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 auto 0 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: #f3f6fa;
}

.national-cancer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid #dce4ef;
  border-radius: 8px;
  background: #dce4ef;
}

.national-cancer-grid article {
  position: relative;
  min-height: 268px;
  padding: 34px;
  background: #fff;
  transition: background .22s ease;
}

.national-cancer-grid article:hover {
  background: #f8faff;
}

.national-cancer-grid article > span {
  position: absolute;
  top: 28px;
  right: 30px;
  color: #a8b3c2;
  font-size: 14px;
  font-weight: 850;
}

.national-cancer-grid svg {
  width: 34px;
  height: 34px;
  margin-bottom: 28px;
  color: #5f84d6;
  stroke-width: 1.6;
}

.national-cancer-grid h4 {
  margin: 0 0 12px;
  color: #172033;
  font-size: 25px;
  font-weight: 750;
}

.national-cancer-grid b {
  display: block;
  margin-bottom: 15px;
  color: #526f9e;
  font-size: 15px;
  font-weight: 800;
}

.national-cancer-grid p {
  margin: 0;
  color: #596576;
  font-size: 15px;
  line-height: 1.7;
  word-break: keep-all;
}

.national-followup-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 2px solid #172033;
  border-bottom: 1px solid #dfe5ee;
}

.national-followup-list article {
  min-height: 156px;
  padding: 30px 24px;
  border-right: 1px solid #e2e7ee;
}

.national-followup-list article:last-child {
  border-right: 0;
}

.national-followup-list strong {
  display: block;
  margin-bottom: 13px;
  color: #172033;
  font-size: 21px;
  font-weight: 750;
}

.national-followup-list p {
  margin: 0;
  color: #596576;
  font-size: 15px;
  line-height: 1.65;
  word-break: keep-all;
}

.national-transition-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 130px;
  gap: 50px;
  align-items: center;
  padding: clamp(48px, 5vw, 72px);
  border-left: 4px solid #5f84d6;
  background: #f7f9fc;
}

.national-transition-copy h3 {
  font-size: clamp(28px, 2.2vw, 38px);
}

.national-transition-copy p {
  max-width: 980px;
  margin-top: 18px;
}

.national-transition-icon {
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  color: #5f84d6;
  border-radius: 50%;
  background: #e9f0fb;
}

.national-transition-icon svg {
  width: 48px;
  height: 48px;
  stroke-width: 1.5;
}

.national-process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 2px solid #172033;
  list-style: none;
}

.national-process-list li {
  position: relative;
  min-height: 240px;
  padding: 34px 28px 30px;
  border-right: 1px solid #e2e7ee;
  border-bottom: 1px solid #dfe5ee;
}

.national-process-list li:last-child {
  border-right: 0;
}

.national-process-list li > span {
  position: absolute;
  top: 30px;
  right: 28px;
  color: #f3ab52;
  font-size: 14px;
  font-weight: 900;
}

.national-process-list svg {
  width: 34px;
  height: 34px;
  margin-bottom: 30px;
  color: #5f84d6;
  stroke-width: 1.6;
}

.national-process-list strong {
  display: block;
  margin-bottom: 12px;
  color: #172033;
  font-size: 21px;
  font-weight: 750;
}

.national-process-list p {
  margin: 0;
  color: #596576;
  font-size: 15px;
  line-height: 1.7;
  word-break: keep-all;
}

.national-checkup-notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 0;
  padding: 30px 32px;
  border: 1px solid #d9e1ec;
  border-radius: 8px;
  background: #fff;
}

.national-checkup-notice > div:first-child {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.national-checkup-notice svg {
  flex: 0 0 auto;
  width: 21px;
  height: 21px;
  margin-top: 2px;
  color: #5f84d6;
}

.national-checkup-notice p {
  max-width: 760px;
  margin: 0;
  color: #596576;
  font-size: 14px;
  line-height: 1.7;
  word-break: keep-all;
}

.national-checkup-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.national-checkup-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 17px;
  color: #40506a;
  border: 1px solid #ccd7e6;
  border-radius: 5px;
  background: #fff;
  font-size: 14px;
  font-weight: 750;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.national-checkup-actions a:first-child,
.national-checkup-actions a:hover {
  color: #fff;
  border-color: #5f84d6;
  background: #5f84d6;
}

@media (max-width: 1180px) {
  .national-checkup-overview {
    grid-template-columns: 1fr;
  }

  .national-common-tests {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .national-age-grid article {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .national-common-tests article {
    min-height: 0;
    border-bottom: 1px solid #e2e7ee;
  }

  .national-common-tests article:nth-child(2n) {
    border-right: 0;
  }

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

  .national-followup-list,
  .national-process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .national-followup-list article:nth-child(2n),
  .national-process-list li:nth-child(2n) {
    border-right: 0;
  }

  .national-checkup-notice {
    align-items: stretch;
    flex-direction: column;
  }

  .national-checkup-actions {
    flex-wrap: wrap;
  }
}

@media (max-width: 720px) {
  .national-checkup-page {
    margin-top: 42px;
  }

  .national-checkup-overview,
  .national-checkup-section,
  .national-checkup-band {
    margin-bottom: 68px;
  }

  .national-checkup-intro {
    padding: 34px 26px 38px;
  }

  .national-summary-list {
    padding: 8px 26px 20px;
  }

  .national-checkup-intro h3,
  .national-section-heading h3,
  .national-transition-copy h3 {
    font-size: 29px;
  }

  .national-checkup-intro p,
  .national-section-heading p,
  .national-transition-copy p {
    margin-top: 16px;
    font-size: 15px;
  }

  .national-summary-list > div {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 21px 0;
  }

  .national-summary-list dt,
  .national-summary-list dd {
    font-size: 14px;
  }

  .national-section-heading {
    margin-bottom: 26px;
  }

  .national-common-tests,
  .national-cancer-grid,
  .national-followup-list,
  .national-process-list {
    grid-template-columns: 1fr;
  }

  .national-common-tests article,
  .national-followup-list article,
  .national-process-list li {
    border-right: 0;
  }

  .national-common-tests article {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 4px 15px;
    padding: 21px 8px;
  }

  .national-common-tests article > span {
    grid-row: 1 / 3;
    width: 44px;
    height: 44px;
    margin: 0;
  }

  .national-common-tests strong {
    margin: 0;
    font-size: 17px;
  }

  .national-age-list-wrap {
    margin-top: 42px;
  }

  .national-age-list-wrap h4 {
    font-size: 22px;
  }

  .national-age-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .national-age-grid article {
    min-height: 0;
    padding: 17px 18px;
  }

  .national-checkup-band {
    padding: 58px 0;
  }

  .national-cancer-grid article {
    min-height: 0;
    padding: 28px 24px;
  }

  .national-cancer-grid h4 {
    font-size: 22px;
  }

  .national-followup-list article {
    min-height: 0;
    padding: 24px 8px;
    border-bottom: 1px solid #e2e7ee;
  }

  .national-transition-section {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 34px 26px;
  }

  .national-transition-icon {
    width: 76px;
    height: 76px;
  }

  .national-transition-icon svg {
    width: 34px;
    height: 34px;
  }

  .national-process-list li {
    min-height: 0;
    padding: 26px 8px;
  }

  .national-process-list li > span {
    top: 24px;
    right: 8px;
  }

  .national-checkup-notice {
    gap: 24px;
    padding: 24px 20px;
  }

  .national-checkup-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}

.corporate-checkup-page {
  margin-top: 58px;
}

.corporate-overview {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr);
  overflow: hidden;
  margin-bottom: clamp(86px, 8vw, 126px);
  border: 1px solid #e0e7f0;
  border-left: 4px solid #5f84d6;
  border-radius: 8px;
  background: #f7f9fc;
}

.corporate-overview-copy {
  position: relative;
  z-index: 0;
  padding: clamp(48px, 5vw, 74px);
}

.corporate-overview-copy::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -76px;
  bottom: -78px;
  width: 220px;
  height: 220px;
  border: 36px solid rgba(95, 132, 214, .07);
  border-radius: 50%;
}

.corporate-overview-copy > span,
.corporate-section-heading > span,
.corporate-consult > div:first-child > span {
  display: block;
  margin-bottom: 15px;
  color: #5f84d6;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: .08em;
}

.corporate-overview-copy h3,
.corporate-section-heading h3,
.corporate-consult h3 {
  margin: 0;
  color: #172033;
  font-size: clamp(34px, 3.1vw, 52px);
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: 0;
  word-break: keep-all;
}

.corporate-overview-copy p,
.corporate-section-heading p,
.corporate-consult p {
  max-width: 820px;
  margin: 24px 0 0;
  color: #4b5667;
  font-size: clamp(16px, 1.18vw, 19px);
  line-height: 1.8;
  word-break: keep-all;
}

.corporate-summary-list {
  display: grid;
  align-content: center;
  margin: 0;
  padding: clamp(36px, 4vw, 60px) clamp(42px, 5vw, 76px);
  background: rgba(255, 255, 255, .78);
}

.corporate-summary-list > div {
  display: grid;
  grid-template-columns: 142px minmax(0, 1fr);
  gap: 24px;
  padding: 27px 0;
  border-bottom: 1px solid #dfe5ee;
}

.corporate-summary-list > div:first-child {
  border-top: 2px solid #172033;
}

.corporate-summary-list dt {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #172033;
  font-size: 16px;
  font-weight: 800;
}

.corporate-summary-list dt svg {
  width: 20px;
  height: 20px;
  color: #5f84d6;
  stroke-width: 1.8;
}

.corporate-summary-list dd {
  margin: 0;
  color: #4b5667;
  font-size: 15px;
  line-height: 1.7;
  word-break: keep-all;
}

.corporate-section {
  margin-bottom: clamp(86px, 8vw, 126px);
}

.corporate-section-heading {
  margin-bottom: 42px;
}

.corporate-section-heading h3 {
  font-size: clamp(31px, 2.5vw, 44px);
}

.corporate-section-heading p {
  margin-top: 16px;
}

.corporate-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 2px solid #172033;
  border-bottom: 1px solid #dfe5ee;
}

.corporate-service-grid article {
  position: relative;
  min-height: 300px;
  padding: 34px 28px 30px;
  border-right: 1px solid #e2e7ee;
  transition: background .22s ease;
}

.corporate-service-grid article:last-child {
  border-right: 0;
}

.corporate-service-grid article:hover {
  background: #f7f9fc;
}

.corporate-service-grid article > span {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 36px;
  color: #5f84d6;
  border: 1px solid #cad8ee;
  border-radius: 6px;
  background: #f6f9fe;
}

.corporate-service-grid svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.7;
}

.corporate-service-grid article > b {
  position: absolute;
  top: 34px;
  right: 28px;
  color: #a5afbd;
  font-size: 13px;
  font-weight: 850;
}

.corporate-service-grid h4,
.corporate-program-list h4 {
  margin: 0 0 13px;
  color: #172033;
  font-size: 21px;
  font-weight: 750;
  line-height: 1.4;
  word-break: keep-all;
}

.corporate-service-grid p,
.corporate-program-list p {
  margin: 0;
  color: #596576;
  font-size: 15px;
  line-height: 1.72;
  word-break: keep-all;
}

.corporate-program-band {
  position: relative;
  z-index: 0;
  margin-bottom: clamp(86px, 8vw, 126px);
  padding: clamp(76px, 7vw, 108px) 0;
}

.corporate-program-band::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 auto 0 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: #f3f6fa;
}

.corporate-program-inner {
  display: grid;
  grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr);
  gap: clamp(54px, 7vw, 110px);
  align-items: start;
}

.corporate-program-list {
  border-top: 2px solid #172033;
}

.corporate-program-list article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 24px;
  padding: 29px 0;
  border-bottom: 1px solid #dce3ec;
}

.corporate-program-list article > svg {
  width: 30px;
  height: 30px;
  margin-top: 3px;
  color: #5f84d6;
  stroke-width: 1.55;
}

.corporate-program-list h4 {
  font-size: 20px;
}

.corporate-process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 2px solid #172033;
  list-style: none;
}

.corporate-process-list li {
  position: relative;
  min-height: 224px;
  padding: 32px 28px;
  border-right: 1px solid #e2e7ee;
  border-bottom: 1px solid #dfe5ee;
}

.corporate-process-list li:nth-child(3n) {
  border-right: 0;
}

.corporate-process-list li > span {
  position: absolute;
  top: 30px;
  right: 28px;
  color: #f3ab52;
  font-size: 13px;
  font-weight: 900;
}

.corporate-process-list svg {
  width: 32px;
  height: 32px;
  margin-bottom: 27px;
  color: #5f84d6;
  stroke-width: 1.6;
}

.corporate-process-list strong {
  display: block;
  margin-bottom: 11px;
  color: #172033;
  font-size: 20px;
  font-weight: 750;
}

.corporate-process-list p {
  margin: 0;
  color: #596576;
  font-size: 14px;
  line-height: 1.7;
  word-break: keep-all;
}

.corporate-consult {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  padding: clamp(42px, 5vw, 62px);
  border-radius: 8px;
  background: #eaf1fb;
}

.corporate-consult > div:first-child > span {
  margin-bottom: 10px;
}

.corporate-consult h3 {
  font-size: clamp(27px, 2.3vw, 38px);
}

.corporate-consult p {
  max-width: 720px;
  margin-top: 12px;
  font-size: 15px;
}

.corporate-consult-actions {
  display: grid;
  flex: 0 0 auto;
  gap: 9px;
}

.corporate-consult-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  min-width: 250px;
  min-height: 50px;
  padding: 0 18px;
  color: #fff;
  border: 1px solid #5f84d6;
  border-radius: 5px;
  background: #5f84d6;
  font-size: 14px;
  font-weight: 750;
  transition: color .2s ease, background .2s ease;
}

.corporate-consult-actions a:last-child {
  color: #40506a;
  border-color: #b9c8df;
  background: #fff;
}

.corporate-consult-actions a:hover {
  color: #fff;
  border-color: #405f9e;
  background: #405f9e;
}

.corporate-consult-actions svg {
  width: 18px;
  height: 18px;
}

.employment-type-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid #dce4ef;
  border-radius: 8px;
  background: #dce4ef;
}

.employment-type-grid article {
  min-height: 248px;
  padding: 34px;
  background: #fff;
  transition: background .22s ease;
}

.employment-type-grid article:hover {
  background: #f7f9fc;
}

.employment-type-grid article > span {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 28px;
  color: #5f84d6;
  border: 1px solid #cad8ee;
  border-radius: 6px;
  background: #f6f9fe;
}

.employment-type-grid svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.65;
}

.employment-type-grid h4 {
  margin: 0 0 13px;
  color: #172033;
  font-size: 22px;
  font-weight: 750;
}

.employment-type-grid p {
  margin: 0;
  color: #596576;
  font-size: 15px;
  line-height: 1.72;
  word-break: keep-all;
}

.employment-tests-band {
  padding-top: clamp(76px, 7vw, 108px);
}

.employment-guide-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 2px solid #172033;
}

.employment-guide-list article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 19px;
  min-height: 145px;
  padding: 29px 24px;
  border-right: 1px solid #e2e7ee;
  border-bottom: 1px solid #dfe5ee;
}

.employment-guide-list article:nth-child(2n) {
  border-right: 0;
}

.employment-guide-list article > svg {
  width: 27px;
  height: 27px;
  margin-top: 2px;
  color: #5f84d6;
  stroke-width: 1.6;
}

.employment-guide-list strong {
  display: block;
  margin-bottom: 9px;
  color: #172033;
  font-size: 19px;
  font-weight: 750;
}

.employment-guide-list p {
  margin: 0;
  color: #596576;
  font-size: 14px;
  line-height: 1.68;
  word-break: keep-all;
}

@media (max-width: 1180px) {
  .corporate-overview,
  .corporate-program-inner {
    grid-template-columns: 1fr;
  }

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

  .corporate-service-grid article:nth-child(2n) {
    border-right: 0;
  }

  .corporate-process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .corporate-process-list li:nth-child(3n) {
    border-right: 1px solid #e2e7ee;
  }

  .corporate-process-list li:nth-child(2n) {
    border-right: 0;
  }

  .employment-type-grid {
    grid-template-columns: 1fr;
  }

  .employment-type-grid article {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .corporate-checkup-page {
    margin-top: 42px;
  }

  .corporate-overview,
  .corporate-section,
  .corporate-program-band {
    margin-bottom: 68px;
  }

  .corporate-overview-copy {
    padding: 34px 26px 38px;
  }

  .corporate-overview-copy h3,
  .corporate-section-heading h3,
  .corporate-consult h3 {
    font-size: 29px;
  }

  .corporate-overview-copy p,
  .corporate-section-heading p,
  .corporate-consult p {
    margin-top: 16px;
    font-size: 15px;
  }

  .corporate-summary-list {
    padding: 8px 26px 20px;
  }

  .corporate-summary-list > div {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 21px 0;
  }

  .corporate-summary-list dt,
  .corporate-summary-list dd {
    font-size: 14px;
  }

  .corporate-section-heading {
    margin-bottom: 26px;
  }

  .corporate-service-grid,
  .corporate-process-list {
    grid-template-columns: 1fr;
  }

  .corporate-service-grid article,
  .corporate-process-list li,
  .corporate-process-list li:nth-child(3n) {
    min-height: 0;
    border-right: 0;
  }

  .corporate-service-grid article {
    padding: 27px 20px;
  }

  .corporate-service-grid article > span {
    margin-bottom: 24px;
  }

  .corporate-program-band {
    padding: 58px 0;
  }

  .corporate-program-inner {
    gap: 18px;
  }

  .corporate-program-list article {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    padding: 23px 0;
  }

  .corporate-process-list li {
    padding: 26px 20px;
  }

  .corporate-consult {
    align-items: stretch;
    flex-direction: column;
    padding: 32px 24px;
  }

  .corporate-consult-actions a {
    width: 100%;
    min-width: 0;
  }

  .employment-guide-list {
    grid-template-columns: 1fr;
  }

  .employment-guide-list article,
  .employment-guide-list article:nth-child(2n) {
    min-height: 0;
    padding: 23px 8px;
    border-right: 0;
  }
}

.medipium-sub-search {
  flex: 0 0 min(330px, 25vw);
  align-self: flex-start;
  margin-left: auto;
  margin-top: -56px;
  transform: translateY(-4px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  position: relative;
  z-index: 20;
}

.medipium-sub-search-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.medipium-sub-search-head > span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: #fff;
  border-radius: 50%;
  background: #5f84d6;
}

.medipium-sub-search-head svg {
  width: 19px;
  height: 19px;
  stroke-width: 2;
}

.medipium-sub-search-head strong,
.medipium-sub-search-head em {
  display: block;
  font-style: normal;
}

.medipium-sub-search-head strong {
  color: #151d2a;
  font-size: 19px;
  font-weight: 850;
  line-height: 1.15;
}

.medipium-sub-search-head em {
  margin-top: 4px;
  color: #7a8493;
  font-size: 13px;
  font-weight: 400;
}

.medipium-sub-search label {
  display: flex;
  align-items: center;
  height: 55px;
  padding: 0 6px 0 20px;
  border: 1px solid #d8dde6;
  border-radius: 999px;
  background: #fff;
  box-shadow: none;
}

.medipium-sub-search input {
  flex: 1;
  min-width: 0;
  height: 100%;
  color: #172033;
  font-size: 14px;
  border: 0;
  outline: 0;
  background: transparent;
}

.medipium-sub-search input::placeholder {
  color: #9aa5b5;
}

.medipium-sub-search button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  border: 0;
  border-radius: 50%;
  background: #21365f;
  cursor: pointer;
  transition: background .18s ease, transform .18s ease;
}

.medipium-sub-search button:hover {
  background: #5f84d6;
  transform: translateX(2px);
}

.medipium-sub-search button svg {
  width: 18px;
  height: 18px;
}

/* Keep local navigation and integrated search in one collision-free layout. */
.park-local-tabs:has(.medipium-sub-search) > a {
  box-sizing: border-box;
  flex: 0 1 136px;
  min-width: 126px;
  max-width: 136px;
  padding-right: 12px;
  padding-left: 12px;
  font-size: 17px;
  white-space: nowrap;
}

.park-local-tabs:not(.is-clinic-tabs):has(.medipium-sub-search) > a {
  flex: 0 0 auto;
  min-width: 148px;
  max-width: none;
  padding-right: 39px;
  padding-left: 39px;
}

.park-local-tabs:has(.medipium-sub-search) .medipium-sub-search {
  flex: 0 0 300px;
  min-width: 0;
}

@media (min-width: 1280px) {
  .park-local-tabs:has(.medipium-sub-search) {
    margin-top: -56px;
    padding-top: 56px;
  }

  .park-local-tabs:has(.medipium-sub-search) .medipium-sub-search {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    margin: 0;
  }
}

@media (min-width: 1181px) and (max-width: 1279px) {
  .park-local-tabs:has(.medipium-sub-search) .medipium-sub-search {
    flex: 0 0 300px;
    width: min(300px, 100%);
    margin-top: 16px;
  }
}

@media (max-width: 1180px) {
  .park-local-tabs:has(.medipium-sub-search) > a {
    flex: 0 1 auto;
    min-width: 0;
    max-width: none;
    padding-right: 20px;
    padding-left: 20px;
  }

  .park-local-tabs:not(.is-clinic-tabs):has(.medipium-sub-search) > a {
    min-width: 0;
    padding-right: 33px;
    padding-left: 33px;
  }
}

/* Tablet and compact desktop: keep search on its own row instead of crossing tabs. */
@media (min-width: 721px) and (max-width: 1180px) {
  .park-local-tabs:has(.medipium-sub-search) .medipium-sub-search {
    position: static;
    flex: 0 0 100%;
    align-self: stretch;
    width: 100%;
    margin: 16px 0 0;
  }

  .park-local-tabs:has(.medipium-sub-search) .medipium-sub-search-head,
  .park-local-tabs:has(.medipium-sub-search) .medipium-sub-search label {
    width: min(300px, 100%);
    margin-left: auto;
  }
}

.medipium-search-page {
  background: #fff;
}

.medipium-search-inner {
  width: min(1320px, calc(100% - 96px));
  margin: 0 auto;
}

.medipium-search-hero {
  padding: 96px 0 76px;
  color: #fff;
  background:
    linear-gradient(110deg, rgba(9, 18, 31, .92) 0%, rgba(20, 42, 77, .78) 54%, rgba(95, 132, 214, .55) 100%),
    var(--park-sub-bg, url('/theme/medipium/assets/images/sub/sub-about-building.jpg')) var(--park-sub-bg-pos, center 40%) / cover no-repeat;
}

.medipium-search-hero span {
  display: inline-flex;
  margin-bottom: 18px;
  color: #f3ab52;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .12em;
}

.medipium-search-hero h1 {
  margin: 0;
  font-size: clamp(44px, 4.8vw, 72px);
  font-weight: 800;
  line-height: 1;
}

.medipium-search-hero p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}

.medipium-search-form {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(760px, 100%);
  margin-top: 34px;
  padding: 10px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .22);
}

.medipium-search-form label {
  flex: 1;
  min-width: 0;
}

.medipium-search-form input {
  width: 100%;
  height: 54px;
  padding: 0 22px;
  color: #172033;
  font-size: 17px;
  border: 0;
  outline: 0;
  background: transparent;
}

.medipium-search-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 126px;
  height: 54px;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  border: 0;
  border-radius: 999px;
  background: #5f84d6;
  cursor: pointer;
}

.medipium-search-form button svg {
  width: 19px;
  height: 19px;
}

.medipium-search-results {
  padding: 72px 0 120px;
}

.medipium-search-guide {
  padding: 44px;
  border: 1px solid #e2e8f2;
  border-radius: 6px;
  background: #f8fafd;
}

.medipium-search-guide strong {
  display: block;
  margin-bottom: 18px;
  color: #111827;
  font-size: 24px;
}

.medipium-search-guide div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.medipium-search-guide a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 20px;
  color: #34507f;
  font-weight: 700;
  border: 1px solid #dbe5f4;
  border-radius: 999px;
  background: #fff;
}

.medipium-search-result-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.medipium-search-result-head h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(28px, 2.2vw, 40px);
  font-weight: 800;
}

.medipium-search-result-head p {
  margin: 0;
  color: #6b7280;
  font-size: 16px;
}

.medipium-search-result-head strong {
  color: #5f84d6;
}

.medipium-search-list {
  display: grid;
  gap: 14px;
}

.medipium-search-list article a {
  display: block;
  padding: 30px 34px;
  border: 1px solid #e2e8f2;
  border-radius: 5px;
  background: #fff;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.medipium-search-list article a:hover {
  border-color: rgba(95, 132, 214, .7);
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(28, 43, 70, .08);
}

.medipium-search-list span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  color: #5f84d6;
  font-size: 13px;
  font-weight: 800;
  border-radius: 999px;
  background: rgba(95, 132, 214, .1);
}

.medipium-search-list h3 {
  margin: 14px 0 10px;
  color: #111827;
  font-size: clamp(22px, 1.7vw, 30px);
  font-weight: 800;
}

.medipium-search-list p {
  margin: 0;
  color: #4b5563;
  font-size: 16px;
  line-height: 1.65;
}

.medipium-search-list em {
  display: block;
  margin-top: 16px;
  color: #8b95a3;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
}

.medipium-search-empty {
  display: grid;
  place-items: center;
  min-height: 320px;
  padding: 44px;
  text-align: center;
  border: 1px dashed #dbe3f1;
  border-radius: 8px;
  background: #f8fafd;
}

.medipium-search-empty svg {
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  color: #9aa8bc;
}

.medipium-search-empty strong {
  color: #172033;
  font-size: 24px;
}

.medipium-search-empty p {
  margin: 10px 0 0;
  color: #6b7280;
  font-size: 16px;
}

.doctor-directory {
  margin-top: 12px;
}

.doctor-directory-filter {
  display: grid;
  grid-template-columns: minmax(180px, 220px) minmax(260px, 420px) 128px;
  gap: 12px;
  align-items: stretch;
  margin: 0 0 38px;
}

.doctor-directory-filter select,
.doctor-directory-filter input {
  width: 100%;
  height: 58px;
  padding: 0 20px;
  color: #172033;
  font-size: 17px;
  font-weight: 500;
  border: 1px solid #d7dde7;
  border-radius: 3px;
  outline: 0;
  background: #fff;
}

.doctor-directory-filter select {
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, #667085 50%) calc(100% - 24px) 24px / 8px 8px no-repeat,
    linear-gradient(135deg, #667085 50%, transparent 50%) calc(100% - 18px) 24px / 8px 8px no-repeat,
    #fff;
}

.doctor-directory-filter input {
  background: #f5f6f8;
  border-color: transparent;
}

.doctor-directory-filter button {
  height: 58px;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  border: 0;
  border-radius: 3px;
  background: #5f84d6;
  cursor: pointer;
  transition: background .18s ease, transform .18s ease;
}

.doctor-directory-filter button:hover {
  background: #3f66ba;
  transform: translateY(-1px);
}

.doctor-directory-count {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: #6b7280;
  font-size: 15px;
}

.doctor-directory-count strong {
  color: #5f84d6;
  font-size: 22px;
  font-weight: 900;
}

.doctor-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 2px solid #262b33;
}

.doctor-card {
  display: grid;
  grid-template-columns: minmax(210px, 34%) 1fr;
  gap: clamp(26px, 3vw, 52px);
  align-items: start;
  min-height: 430px;
  padding: clamp(34px, 3.6vw, 56px) clamp(24px, 3vw, 48px);
  border-bottom: 1px solid #d9dde5;
  background: #fff;
}

.doctor-card:nth-child(odd) {
  border-right: 1px solid #e3e7ee;
}

.doctor-photo {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 360px;
  border-radius: 8px;
  background: linear-gradient(180deg, #fafbfc 0%, #f3f5f8 100%);
  overflow: hidden;
}

.doctor-photo.has-photo {
  min-height: 0;
  background: transparent;
}

.doctor-photo img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  object-position: center top;
}

.doctor-photo span {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 320px;
  color: #98a3b4;
  font-size: 16px;
  font-weight: 800;
}

.doctor-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.doctor-card-bottom {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  margin-top: 6px;
}

.doctor-name-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.doctor-name-row h3 {
  margin: 0 0 8px;
  color: #20242c;
  font-size: clamp(28px, 2vw, 36px);
  font-weight: 600;
  line-height: 1.18;
}

.doctor-name-row p {
  margin: 0;
  color: #f29a22;
  font-size: 20px;
  font-weight: 500;
}

.doctor-name-row > span {
  align-self: flex-start;
  padding: 7px 13px;
  color: #5172bd;
  font-size: 13px;
  font-weight: 900;
  border-radius: 999px;
  background: rgba(95, 132, 214, .1);
  white-space: nowrap;
}

.doctor-specialty {
  margin-bottom: 26px;
}

.doctor-specialty b {
  display: block;
  margin-bottom: 12px;
  color: #555d6c;
  font-size: 18px;
  font-weight: 600;
}

.doctor-specialty p,
.doctor-intro {
  margin: 0;
  color: #555b66;
  font-size: clamp(17px, 1.18vw, 22px);
  font-weight: 400;
  line-height: 1.7;
}

.doctor-intro {
  margin: -10px 0 22px;
  color: #707988;
  font-size: 16px;
}

.doctor-schedule {
  width: 100%;
  margin-top: 0;
  border-top: 2px solid #343942;
}

.doctor-schedule table {
  width: 100%;
  border-collapse: collapse;
}

.doctor-schedule th,
.doctor-schedule td {
  height: 44px;
  text-align: center;
  border-bottom: 1px solid #d9dde3;
}

.doctor-schedule th {
  color: #596273;
  font-size: 17px;
  font-weight: 500;
}

.doctor-schedule thead th {
  color: #3f4652;
  background: #fafafa;
}

.doctor-schedule i {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #f7941e;
  box-shadow: 0 0 0 4px rgba(247, 148, 30, .12);
}

.doctor-schedule-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 10px;
  align-items: start;
  margin: 14px 0 0;
  padding: 13px 16px;
  color: #5e6674;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
  border: 1px solid rgba(95, 132, 214, .2);
  border-radius: 4px;
  background: rgba(95, 132, 214, .06);
}

.doctor-schedule-note::before {
  content: "비고";
  display: inline-flex;
  align-items: center;
  height: 22px;
  margin-right: 0;
  transform: translateY(1px);
  padding: 0 8px;
  color: #5f84d6;
  font-size: 12px;
  font-weight: 800;
  border-radius: 999px;
  background: #fff;
}

.doctor-buttons {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 14px;
}

.doctor-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 142px;
  height: 58px;
  padding: 0 24px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 3px;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.doctor-btn.is-ghost {
  color: #6d7480;
  border: 1px solid #cfd4dc;
  background: #fff;
}

.doctor-btn.is-primary {
  color: #fff;
  border: 1px solid #f3ab52;
  background: #f3ab52;
}

.doctor-btn.is-disabled {
  color: #98a2b3;
  border: 1px solid #e0e5ee;
  background: #f4f6f9;
  cursor: not-allowed;
}

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

.doctor-btn.is-ghost:hover {
  color: #5f84d6;
  border-color: #5f84d6;
}

.doctor-btn.is-primary:hover {
  border-color: #5f84d6;
  background: #5f84d6;
}

.doctor-modal {
  position: fixed;
  inset: 0;
  z-index: 20050;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 42px;
}

.doctor-modal.is-open {
  display: flex;
}

.doctor-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(9, 17, 28, .66);
  backdrop-filter: blur(6px);
}

.doctor-modal-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 54px);
  width: min(980px, 100%);
  max-height: min(760px, calc(100vh - 84px));
  padding: clamp(30px, 4vw, 54px);
  overflow: auto;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 34px 90px rgba(9, 17, 28, .28);
}

.doctor-modal-side {
  display: grid;
  align-content: start;
  gap: 16px;
}

.doctor-modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 42px;
  height: 42px;
  overflow: hidden;
  color: transparent;
  border: 0;
  border-radius: 50%;
  background: #eef3fb;
  cursor: pointer;
}

.doctor-modal-close::before,
.doctor-modal-close::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 20px;
  width: 18px;
  height: 2px;
  background: #253044;
}

.doctor-modal-close::before {
  transform: rotate(45deg);
}

.doctor-modal-close::after {
  transform: rotate(-45deg);
}

.doctor-modal-photo {
  display: grid;
  place-items: start center;
  min-height: 430px;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(180deg, #fbfcfe 0%, #f1f4f8 100%);
}

.doctor-modal-photo.has-photo {
  min-height: 0;
  background: transparent;
}

.doctor-modal-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
}

.doctor-modal-photo span {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 430px;
  color: #98a3b4;
  font-weight: 800;
}

.doctor-modal-content > span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  color: #5f84d6;
  font-size: 13px;
  font-weight: 900;
  border-radius: 999px;
  background: rgba(95, 132, 214, .1);
}

.doctor-modal-content h3 {
  margin: 18px 0 6px;
  color: #172033;
  font-size: clamp(34px, 3vw, 48px);
  font-weight: 700;
  line-height: 1.12;
}

.doctor-modal-position {
  margin: 0 0 28px;
  color: #f29a22;
  font-size: 20px;
  font-weight: 600;
}

.doctor-modal-content dl {
  margin: 0;
  padding: 24px 0;
  border-top: 1px solid #e3e8f1;
}

.doctor-modal-content dt {
  margin-bottom: 10px;
  color: #4b5565;
  font-size: 15px;
  font-weight: 900;
}

.doctor-modal-content dd {
  margin: 0;
  color: #303846;
  font-size: 17px;
  line-height: 1.75;
}

.doctor-modal-actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 0;
}

.doctor-modal-actions .doctor-btn {
  width: 100%;
}

.doctor-empty {
  display: grid;
  place-items: center;
  min-height: 360px;
  padding: 54px 24px;
  text-align: center;
  border-top: 2px solid #262b33;
  border-bottom: 1px solid #d9dde5;
  background: #fbfcfe;
}

.doctor-empty span {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin-bottom: 18px;
  color: #5f84d6;
  border-radius: 50%;
  background: rgba(95, 132, 214, .1);
}

.doctor-empty svg {
  width: 34px;
  height: 34px;
  stroke-width: 1.8;
}

.doctor-empty strong {
  color: #222936;
  font-size: 24px;
  font-weight: 800;
}

.doctor-empty p {
  margin: 10px 0 0;
  color: #7b8797;
  font-size: 16px;
}

.department-page {
  margin-top: 18px;
  color: #172033;
}

.department-page .department-doctors {
  margin-bottom: clamp(70px, 7vw, 112px);
}

.department-section-title {
  margin-bottom: 28px;
}

.department-section-title > span,
.department-intro-copy > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #5f84d6;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
}

.department-section-title > span::before,
.department-intro-copy > span::before {
  content: "";
  width: 30px;
  height: 2px;
  background: #5f84d6;
}

.department-section-title h3,
.department-intro-copy h3 {
  margin: 0;
  color: #121a28;
  font-size: clamp(34px, 3.1vw, 54px);
  font-weight: 700;
  line-height: 1.17;
  letter-spacing: 0;
}

.department-section-title p {
  margin: 12px 0 0;
  color: #667085;
  font-size: 17px;
  line-height: 1.65;
}

.department-doctor-grid.is-single {
  grid-template-columns: minmax(0, 1fr);
}

.department-doctor-grid.is-single .doctor-card {
  max-width: 980px;
}

.department-empty {
  border-radius: 8px;
}

.department-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
  gap: clamp(42px, 5.5vw, 92px);
  align-items: stretch;
  margin-bottom: clamp(70px, 7vw, 108px);
  padding: clamp(44px, 5.6vw, 84px);
  border-radius: 8px;
  background: linear-gradient(135deg, #f7f9fd 0%, #fff 56%, #eef4ff 100%);
}

.department-intro-copy p {
  margin: 24px 0 0;
  color: #3e4654;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.9;
  word-break: keep-all;
}

.department-visual-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid #dbe3ef;
  background:
    linear-gradient(135deg, rgba(95, 132, 214, .12), rgba(243, 171, 82, .1)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .6) 0 12px, rgba(255, 255, 255, .1) 12px 24px);
}

.department-visual-placeholder::after {
  content: "";
  position: absolute;
  right: -56px;
  bottom: -56px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(95, 132, 214, .16);
}

.department-visual-placeholder > .medipium-inline-image-placeholder {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  height: 46px;
  padding: 0 22px;
  color: #667085;
  font-size: 15px;
  font-weight: 800;
  border-radius: 999px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 14px 36px rgba(31, 46, 74, .08);
}

.department-section {
  margin-bottom: clamp(70px, 7vw, 108px);
}

.department-test-icon-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 2px solid #172033;
  border-bottom: 1px solid #dfe5ee;
  list-style: none;
}

.department-test-icon-grid li {
  min-height: 240px;
  padding: 34px 26px 30px;
  border-right: 1px solid #e2e7ee;
  transition: background .22s ease;
}

.department-test-icon-grid li:last-child {
  border-right: 0;
}

.department-test-icon-grid li:hover {
  background: #f7f9fc;
}

.department-test-icon-grid li > span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 28px;
  color: #5f84d6;
  border: 1px solid #cbd9f0;
  border-radius: 6px;
  background: #f7faff;
  transition: color .22s ease, border-color .22s ease, background .22s ease;
}

.department-test-icon-grid li:hover > span {
  color: #fff;
  border-color: #5f84d6;
  background: #5f84d6;
}

.department-test-icon-grid svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.7;
}

.department-test-icon-grid b {
  display: block;
  min-height: 52px;
  margin-bottom: 12px;
  color: #172033;
  font-size: 20px;
  font-weight: 750;
  line-height: 1.35;
  word-break: keep-all;
}

.department-test-icon-grid p {
  margin: 0;
  color: #667085;
  font-size: 15px;
  line-height: 1.7;
  word-break: keep-all;
}

.department-test-icon-grid.is-six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.department-test-icon-grid.is-six li:nth-child(-n + 3) {
  border-bottom: 1px solid #e2e7ee;
}

.department-test-icon-grid.is-six li:nth-child(3n) {
  border-right: 0;
}

.outpatient-space-section {
  position: relative;
  z-index: 0;
  margin-bottom: 0;
  padding: clamp(76px, 7vw, 108px) 0 clamp(84px, 8vw, 124px);
}

.outpatient-space-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: #f3f6f9;
}

.outpatient-space-section .department-section-title {
  max-width: 760px;
}

.inpatient-room-section .department-section-title p {
  max-width: 720px;
  margin: 18px 0 0;
  color: #647184;
  font-size: 17px;
  line-height: 1.75;
  word-break: keep-all;
}

.outpatient-space-section .department-test-stage {
  background: #e5ebf2;
}

.department-test-slider.outpatient-space-slider {
  display: block;
}

.outpatient-space-slider .department-test-stage {
  min-height: clamp(440px, 34vw, 590px);
}

.department-test-nav.outpatient-space-index {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  border-top: 0;
  border-bottom: 1px solid #dce3eb;
  scrollbar-width: thin;
  scrollbar-color: #aebbd0 transparent;
  scroll-snap-type: x proximity;
}

.department-test-nav.outpatient-space-index button {
  flex: 0 0 auto;
  grid-template-columns: 34px auto;
  gap: 8px;
  width: auto;
  min-width: 190px;
  min-height: 72px;
  padding: 14px 20px;
  border-right: 1px solid #dce3eb;
  border-bottom: 0;
  scroll-snap-align: start;
}

.department-test-nav.outpatient-space-index button::before {
  top: auto;
  right: 0;
  bottom: 0;
  width: auto;
  height: 3px;
  transform: scaleX(0);
}

.department-test-nav.outpatient-space-index button.is-active {
  padding-left: 20px;
  background: rgba(255, 255, 255, .76);
}

.department-test-nav.outpatient-space-index button.is-active::before {
  transform: scaleX(1);
}

.department-test-nav.outpatient-space-index button b {
  display: -webkit-box;
  overflow: hidden;
  font-size: 16px;
  line-height: 1.35;
  white-space: normal;
  word-break: keep-all;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.department-goal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid #dce4f0;
  border-radius: 8px;
  background: #dce4f0;
}

.department-goal-grid.is-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.department-goal-grid.is-four > div {
  padding: clamp(26px, 2.2vw, 38px);
}

.department-goal-grid.is-four > div > strong {
  font-size: clamp(19px, 1.25vw, 22px);
}

.department-goal-grid.is-four p {
  font-size: clamp(16px, 1.05vw, 18px);
}

.department-goal-grid > div {
  min-height: 250px;
  padding: clamp(28px, 3vw, 44px);
  background: #fff;
  transition: background .2s ease, transform .2s ease;
}

.department-goal-grid > div:hover {
  background: #f7faff;
  transform: translateY(-2px);
}

.department-goal-mark {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
}

.department-goal-mark b {
  color: #f3ab52;
  font-size: 18px;
  font-weight: 900;
}

.department-goal-mark span {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  color: #5f84d6;
  border: 1px solid #cddaf2;
  border-radius: 6px;
  background: #f7faff;
  transition: color .22s ease, border-color .22s ease, background .22s ease;
}

.department-goal-mark svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.7;
}

.department-goal-grid > div:hover .department-goal-mark span {
  color: #fff;
  border-color: #5f84d6;
  background: #5f84d6;
}

.department-goal-grid > div > strong {
  display: block;
  margin-bottom: 12px;
  color: #172033;
  font-size: clamp(20px, 1.45vw, 24px);
  font-weight: 750;
  letter-spacing: 0;
}

.department-goal-grid p {
  margin: 0;
  color: #252d3a;
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 500;
  line-height: 1.65;
  word-break: keep-all;
}

.department-clinic-section {
  padding: clamp(54px, 6vw, 90px) 0;
  border-top: 1px solid #e3e8f1;
  border-bottom: 1px solid #e3e8f1;
}

.department-clinic-list {
  display: grid;
  gap: 0;
  border-top: 2px solid #172033;
}

.department-clinic-list article {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 64px);
  padding: clamp(26px, 3vw, 38px) 0;
  border-bottom: 1px solid #e3e8f1;
}

.department-clinic-list strong {
  color: #172033;
  font-size: clamp(22px, 1.8vw, 30px);
  font-weight: 700;
}

.department-clinic-list p {
  margin: 0;
  color: #4b5565;
  font-size: 18px;
  line-height: 1.8;
  word-break: keep-all;
}

.department-clinic-list.is-disease-list article > div {
  min-width: 0;
}

.department-clinic-list.is-disease-list em {
  display: block;
  position: relative;
  margin-top: 15px;
  padding-left: 18px;
  color: #52647f;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.75;
  word-break: keep-all;
}

.department-clinic-list.is-disease-list em::before {
  content: "";
  position: absolute;
  top: .72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f3ab52;
}

.department-clinic-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid #dce4f0;
  border-radius: 8px;
  background: #dce4f0;
}

.department-clinic-card-grid article {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 24px;
  min-height: 260px;
  padding: clamp(30px, 3.2vw, 48px);
  background: #fff;
  transition: background .22s ease;
}

.department-clinic-card-grid article:hover {
  background: #f7faff;
}

.department-clinic-card-grid article > span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: #5f84d6;
  border: 1px solid #cad8ee;
  border-radius: 6px;
  background: #f6f9fe;
  transition: color .22s ease, border-color .22s ease, background .22s ease;
}

.department-clinic-card-grid article:hover > span {
  color: #fff;
  border-color: #5f84d6;
  background: #5f84d6;
}

.department-clinic-card-grid svg {
  width: 27px;
  height: 27px;
  stroke-width: 1.7;
}

.department-clinic-card-grid strong {
  display: block;
  margin-bottom: 14px;
  color: #172033;
  font-size: clamp(21px, 1.55vw, 27px);
  font-weight: 750;
  word-break: keep-all;
}

.department-clinic-card-grid p {
  margin: 0;
  color: #4b5565;
  font-size: 17px;
  line-height: 1.75;
  word-break: keep-all;
}

.department-clinic-card-grid em {
  display: block;
  position: relative;
  margin-top: 16px;
  padding-left: 16px;
  color: #52647f;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.7;
  word-break: keep-all;
}

.department-clinic-card-grid em::before {
  content: "";
  position: absolute;
  top: .68em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f3ab52;
}

.department-equipment-section {
  margin-bottom: 0;
}

.department-equipment {
  padding: clamp(68px, 7vw, 108px) 0;
  border-top: 1px solid #dfe5ee;
}

.department-equipment:first-child {
  padding-top: 0;
  border-top: 0;
}

.department-equipment-lead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .92fr);
  gap: clamp(54px, 7vw, 112px);
  align-items: center;
  margin-bottom: clamp(48px, 5vw, 72px);
}

.department-equipment.is-reverse .department-equipment-copy {
  order: 2;
}

.department-equipment.is-reverse .department-equipment-placeholder {
  order: 1;
}

.department-equipment-copy > span {
  display: block;
  margin-bottom: 17px;
  color: #5f84d6;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: .08em;
}

.department-equipment-copy h3 {
  margin: 0 0 24px;
  color: #172033;
  font-size: clamp(34px, 3.2vw, 52px);
  font-weight: 750;
  letter-spacing: 0;
}

.department-equipment-copy p {
  margin: 0;
  color: #3f4b5c;
  font-size: clamp(17px, 1.28vw, 20px);
  line-height: 1.85;
  word-break: keep-all;
}

.department-equipment-placeholder {
  display: grid;
  place-items: center;
  min-height: 360px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(95, 132, 214, .12), rgba(255, 255, 255, .74)),
    repeating-linear-gradient(135deg, #f1f4f8 0 14px, #e8edf3 14px 28px);
}

.department-equipment-placeholder > .medipium-inline-image-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 142px;
  height: 44px;
  padding: 0 20px;
  color: #667085;
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  font-size: 14px;
  font-weight: 750;
}

.department-equipment-detail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(52px, 7vw, 104px);
  padding-top: clamp(34px, 4vw, 54px);
  border-top: 2px solid #172033;
}

.department-equipment-detail h4 {
  margin: 0 0 26px;
  color: #172033;
  font-size: clamp(23px, 1.8vw, 30px);
  font-weight: 750;
}

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

.department-check-list li {
  position: relative;
  padding-left: 29px;
  color: #465264;
  font-size: 16px;
  line-height: 1.7;
  word-break: keep-all;
}

.department-check-list li::before {
  content: "";
  position: absolute;
  top: .58em;
  left: 0;
  width: 16px;
  height: 8px;
  border-bottom: 2px solid #5f84d6;
  border-left: 2px solid #5f84d6;
  transform: rotate(-45deg);
}

.department-disease-list {
  margin: 0;
}

.department-disease-list > div {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid #e3e8f1;
}

.department-disease-list > div:first-child {
  padding-top: 0;
}

.department-disease-list dt {
  color: #526f9e;
  font-size: 15px;
  font-weight: 800;
}

.department-disease-list dd {
  margin: 0;
  color: #465264;
  font-size: 15px;
  line-height: 1.65;
  word-break: keep-all;
}

.department-test-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.department-test-admin-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  margin-bottom: 34px;
  padding: 0 16px;
  color: #536276;
  border: 1px solid #d7e0ec;
  border-radius: 5px;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
}

.department-test-admin-link svg {
  width: 17px;
  height: 17px;
}

.department-test-slider {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(30px, 4vw, 64px);
  align-items: center;
}

.department-test-stage {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  border-radius: 8px;
  background: #e9eef5;
}

.department-test-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.025);
  transition: opacity .55s ease, visibility .55s ease, transform 5.5s ease;
}

.department-test-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 1;
}

.department-test-slide > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.department-test-slide::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(to bottom, transparent, rgba(12, 24, 42, .76));
}

.department-test-slide figcaption {
  position: absolute;
  left: clamp(24px, 4vw, 48px);
  right: clamp(24px, 4vw, 48px);
  bottom: 42px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
}

.department-test-slide figcaption em {
  color: #f3ab52;
  font-size: 15px;
  font-style: normal;
  font-weight: 900;
}

.department-test-slide figcaption strong {
  font-size: clamp(25px, 2.2vw, 36px);
  font-weight: 700;
}

.inpatient-room-section .department-test-slide figcaption {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  column-gap: 16px;
  row-gap: 7px;
}

.inpatient-room-section .department-test-slide figcaption p {
  grid-column: 2;
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, .84);
  font-size: 15px;
  line-height: 1.6;
  word-break: keep-all;
}

.department-test-empty {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: inherit;
  color: #657286;
  background: linear-gradient(135deg, #edf2f8, #dfe7f1);
  text-align: center;
}

.department-test-empty span {
  font-size: 22px;
  font-weight: 750;
}

.department-test-empty small {
  display: block;
  margin-top: 8px;
  color: #8792a3;
  font-size: 14px;
  font-weight: 600;
}

.department-test-controls {
  position: absolute;
  right: 22px;
  bottom: 24px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.department-test-controls button {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 50%;
  background: rgba(15, 31, 54, .32);
  cursor: pointer;
}

.department-test-controls button:hover {
  color: #172033;
  border-color: #fff;
  background: #fff;
}

.department-test-controls svg {
  width: 17px;
  height: 17px;
}

.department-test-controls span {
  min-width: 58px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

.department-test-controls b {
  color: #f3ab52;
  font-size: 16px;
}

.department-test-nav {
  border-top: 2px solid #172033;
}

.department-test-nav button {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(145px, 190px) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  width: 100%;
  min-height: 88px;
  padding: 16px 12px;
  color: #596578;
  border: 0;
  border-bottom: 1px solid #dfe5ee;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: color .22s ease, padding-left .22s ease, background .22s ease;
}

.department-test-nav button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #5f84d6;
  transform: scaleY(0);
  transition: transform .22s ease;
}

.department-test-nav button.is-active {
  padding-left: 20px;
  color: #172033;
  background: #f6f9fd;
}

.department-test-nav button.is-active::before {
  transform: scaleY(1);
}

.department-test-nav button > span {
  color: #9aa5b4;
  font-size: 13px;
  font-weight: 800;
}

.department-test-nav button.is-active > span {
  color: #5f84d6;
}

.department-test-nav button b {
  color: inherit;
  font-size: 18px;
  font-weight: 750;
}

.department-test-nav button small {
  color: #6a7585;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  word-break: keep-all;
}

.department-test-manager {
  position: fixed;
  inset: 0;
  z-index: 20100;
  display: grid;
  place-items: center;
  padding: 28px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .24s ease, visibility .24s ease;
}

.department-test-manager.is-open {
  opacity: 1;
  visibility: visible;
}

.department-test-manager-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: rgba(17, 28, 45, .68);
  backdrop-filter: blur(5px);
  cursor: default;
}

.department-test-manager-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: min(1180px, calc(100vw - 56px));
  height: min(860px, calc(100vh - 56px));
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(8, 19, 37, .22);
}

.department-test-manager-panel > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 92px;
  padding: 18px 26px;
  border-bottom: 1px solid #e1e7f0;
  background: #fff;
}

.department-test-manager-panel > header span {
  display: block;
  margin-bottom: 5px;
  color: #5f84d6;
  font-size: 11px;
  font-weight: 900;
}

.department-test-manager-panel > header h3 {
  margin: 0;
  color: #172033;
  font-size: 24px;
  font-weight: 750;
}

.department-test-manager-panel > header > button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: #344155;
  border: 1px solid #dce4ef;
  border-radius: 50%;
  background: #f7f9fc;
  cursor: pointer;
}

.department-test-manager-panel > header svg {
  width: 20px;
  height: 20px;
}

.department-test-manager-panel iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #f6f8fb;
}

.dept-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .62s ease, transform .62s ease;
}

.dept-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.nonpay-page {
  position: relative;
  z-index: 1;
  isolation: isolate;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 8px;
  clear: both;
  overflow: visible;
  contain: none;
}

.nonpay-page.is-admin-mode {
  padding-bottom: 28px;
}

.nonpay-category-bar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.nonpay-admin-tools {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.nonpay-admin-tools a,
.nonpay-admin-tools button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 16px;
  color: #fff;
  border: 0;
  font-weight: 800;
  border-radius: 999px;
  background: #5f84d6;
  cursor: pointer;
}

.nonpay-category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 0;
}

.nonpay-category-tabs a {
  display: inline-flex;
  align-items: center;
  height: 42px;
  padding: 0 18px;
  color: #6c7481;
  font-weight: 700;
  border: 1px solid #dce3ee;
  border-radius: 999px;
  background: #fff;
}

.nonpay-category-tabs a.is-active,
.nonpay-category-tabs a:hover {
  color: #fff;
  border-color: #5f84d6;
  background: #5f84d6;
}

.nonpay-page .is-hidden {
  display: none !important;
}

.nonpay-category-section {
  margin-top: 30px;
}

.nonpay-category-section h4 {
  margin: 0 0 14px;
  color: #172033;
  font-size: 24px;
  font-weight: 800;
}

.nonpay-table-scroll,
.nonpay-admin-table-scroll,
.nonpay-log-scroll {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  border-top: 2px solid #21365f;
  -webkit-overflow-scrolling: touch;
}

.nonpay-table {
  width: 100%;
  min-width: 1280px;
  border-collapse: collapse;
  background: #fff;
}

.nonpay-table th,
.nonpay-table td {
  padding: 14px 12px;
  text-align: center;
  vertical-align: middle;
  border-left: 1px solid #e2e7ef;
  border-bottom: 1px solid #e2e7ef;
}

.nonpay-table th:first-child,
.nonpay-table td:first-child {
  border-left: 0;
}

.nonpay-table th {
  color: #253044;
  font-size: 13px;
  font-weight: 800;
  background: #f6f8fb;
}

.nonpay-table td {
  color: #4f5969;
  font-size: 14px;
  line-height: 1.55;
}

.nonpay-table .nonpay-name {
  color: #172033;
  font-weight: 800;
  text-align: left;
}

.nonpay-empty {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 34px 24px;
  text-align: center;
  border: 1px dashed #dbe3ef;
  border-radius: 8px;
  background: #fafcff;
}

.nonpay-empty span {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin-bottom: 16px;
  color: #5f84d6;
  border-radius: 50%;
  background: rgba(95, 132, 214, .1);
}

.nonpay-empty svg {
  width: 34px;
  height: 34px;
  stroke-width: 1.8;
}

.nonpay-empty strong {
  color: #172033;
  font-size: 23px;
  font-weight: 800;
}

.nonpay-empty p {
  margin: 10px 0 0;
  color: #768295;
  font-size: 15px;
}

.nonpay-admin-message {
  margin: 0 0 22px;
  padding: 16px 18px;
  color: #315b33;
  font-weight: 800;
  border: 1px solid #cde6d1;
  border-radius: 8px;
  background: #f2fbf3;
}

.nonpay-inline-form {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-top: 18px;
  clear: both;
}

.nonpay-inline-form *,
.nonpay-inline-form *::before,
.nonpay-inline-form *::after {
  box-sizing: border-box;
}

.nonpay-inline-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding: 22px 24px;
  border: 1px solid #dfe7f2;
  border-radius: 10px;
  background: #f8fbff;
}

.nonpay-inline-head h3 {
  margin: 0;
  color: #172033;
  font-size: 24px;
  font-weight: 900;
}

.nonpay-inline-head p {
  margin: 8px 0 0;
  color: #657186;
  font-size: 15px;
}

.nonpay-inline-head button,
.nonpay-inline-actions button {
  flex: 0 0 auto;
  min-width: 132px;
  height: 46px;
  padding: 0 20px;
  color: #fff;
  border: 0;
  border-radius: 6px;
  background: #5f84d6;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
}

.nonpay-category-modal[hidden] {
  display: none;
}

.nonpay-category-modal {
  position: fixed;
  inset: 0;
  z-index: 10020;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(12, 18, 30, .42);
}

.nonpay-category-dialog {
  width: min(920px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow-y: auto;
  padding: 24px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(13, 24, 41, .24);
}

.nonpay-category-dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.nonpay-category-dialog-head strong {
  color: #172033;
  font-size: 22px;
  font-weight: 900;
}

.nonpay-category-dialog-head button,
.nonpay-category-dialog-actions button {
  height: 40px;
  padding: 0 16px;
  color: #fff;
  border: 0;
  border-radius: 6px;
  background: #21365f;
  font-weight: 900;
  cursor: pointer;
}

.nonpay-category-chips {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.nonpay-category-chips label {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) 90px auto auto;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid #e6ecf5;
  border-radius: 8px;
  background: #fafcff;
}

.nonpay-category-chips span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #5c6878;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.nonpay-category-dialog-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
}

.nonpay-inline-form input,
.nonpay-inline-form select,
.nonpay-inline-form textarea {
  width: 100%;
  min-width: 0;
  min-height: 38px;
  padding: 0 9px;
  color: #1d2838;
  border: 1px solid #cfd8e5;
  border-radius: 6px;
  background: #fff;
  font-size: 13px;
}

.nonpay-inline-form textarea {
  min-height: 54px;
  padding: 9px;
  resize: vertical;
}

.nonpay-inline-form input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  padding: 0;
}

.nonpay-edit-table {
  overflow: hidden;
  border: 1px solid #dfe7f2;
  border-radius: 10px;
  background: #fff;
}

.nonpay-edit-row {
  display: grid;
  grid-template-columns: 1.06fr .95fr .95fr .8fr 1.35fr .82fr .82fr .82fr .82fr .82fr 1.2fr .92fr 58px 58px;
  gap: 0;
  align-items: stretch;
  border-top: 1px solid #e8eef6;
}

.nonpay-edit-row:first-child {
  border-top: 0;
}

.nonpay-edit-row.nonpay-edit-head {
  position: sticky;
  top: 0;
  z-index: 5;
  color: #536174;
  background: #f4f7fb;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.nonpay-edit-head-grid {
  position: sticky;
  top: 0;
  z-index: 5;
  display: grid;
  grid-template-columns: 1.06fr .95fr .95fr .8fr 1.35fr .82fr .82fr .82fr .82fr .82fr 1.2fr .92fr 58px 58px;
  grid-template-rows: 50px 50px;
  color: #536174;
  background: #f4f7fb;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.nonpay-edit-head-grid span {
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 50px;
  padding: 0 7px;
  border-left: 1px solid #e8eef6;
  border-top: 1px solid #e8eef6;
}

.nonpay-edit-head-grid span:first-child {
  border-left: 0;
}

.nonpay-edit-head-grid .h-cat,
.nonpay-edit-head-grid .h-mid,
.nonpay-edit-head-grid .h-small,
.nonpay-edit-head-grid .h-note,
.nonpay-edit-head-grid .h-date,
.nonpay-edit-head-grid .h-active,
.nonpay-edit-head-grid .h-delete {
  grid-row: 1 / 3;
}

.nonpay-edit-head-grid .h-cat { grid-column: 1; }
.nonpay-edit-head-grid .h-mid { grid-column: 2; }
.nonpay-edit-head-grid .h-small { grid-column: 3; }
.nonpay-edit-head-grid .h-item { grid-column: 4 / 6; grid-row: 1; }
.nonpay-edit-head-grid .h-price { grid-column: 6 / 11; grid-row: 1; }
.nonpay-edit-head-grid .h-note { grid-column: 11; }
.nonpay-edit-head-grid .h-date { grid-column: 12; }
.nonpay-edit-head-grid .h-active { grid-column: 13; }
.nonpay-edit-head-grid .h-delete { grid-column: 14; }
.nonpay-edit-head-grid .h-code { grid-column: 4; grid-row: 2; }
.nonpay-edit-head-grid .h-name { grid-column: 5; grid-row: 2; }
.nonpay-edit-head-grid .h-cost { grid-column: 6; grid-row: 2; }
.nonpay-edit-head-grid .h-min { grid-column: 7; grid-row: 2; }
.nonpay-edit-head-grid .h-max { grid-column: 8; grid-row: 2; }
.nonpay-edit-head-grid .h-material { grid-column: 9; grid-row: 2; }
.nonpay-edit-head-grid .h-drug { grid-column: 10; grid-row: 2; }

.nonpay-edit-row.nonpay-edit-head-sub {
  top: 50px;
  z-index: 4;
}

.nonpay-edit-head-group .is-item {
  grid-column: span 2;
}

.nonpay-edit-head-group .is-price {
  grid-column: span 5;
}

.nonpay-edit-row.nonpay-edit-head span,
.nonpay-edit-row label,
.nonpay-edit-row > .nonpay-edit-check,
.nonpay-edit-row > .nonpay-row-remove {
  min-width: 0;
  min-height: 50px;
  margin: 0;
  border-left: 1px solid #e8eef6;
}

.nonpay-edit-row.nonpay-edit-head span:first-child,
.nonpay-edit-row label:first-of-type {
  border-left: 0;
}

.nonpay-edit-row.nonpay-edit-head span {
  display: grid;
  place-items: center;
  padding: 0 7px;
}

.nonpay-edit-row label {
  display: grid;
  align-items: stretch;
  background: #fff;
}

.nonpay-edit-row.is-new {
  background: #f8fbff;
}

.nonpay-edit-new-list {
  display: grid;
}

.nonpay-edit-new-list .nonpay-edit-row {
  border-top: 1px solid #dce7f5;
}

.nonpay-edit-row.is-new label {
  background: #f8fbff;
}

.nonpay-edit-empty {
  margin: 0;
  padding: 18px 20px;
  color: #718096;
  text-align: center;
  border-top: 1px dashed #d8e1ef;
  background: #fafcff;
}

.nonpay-edit-row input,
.nonpay-edit-row select,
.nonpay-edit-row textarea {
  height: 100%;
  min-height: 50px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.nonpay-edit-row input:focus,
.nonpay-edit-row select:focus,
.nonpay-edit-row textarea:focus {
  outline: 2px solid rgba(95, 132, 214, .34);
  outline-offset: -2px;
  background: #fff;
}

.nonpay-edit-note {
  grid-column: 1 / -1;
  border-top: 1px solid #eef2f7;
}

.nonpay-edit-note textarea {
  min-height: 54px;
  padding: 12px 14px;
}

.nonpay-edit-check {
  display: grid;
  place-items: center;
  color: #365f9f;
  background: #f3f7ff;
  font-size: 13px;
  font-weight: 900;
}

.nonpay-edit-check.is-danger {
  color: #b83c3c;
  background: #fff5f5;
}

.nonpay-edit-check.is-muted {
  color: #9aa6b8;
  background: #f8fbff;
}

.nonpay-row-remove {
  display: grid;
  place-items: center;
  color: #b83c3c;
  border: 0;
  background: #fff5f5;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.nonpay-row-tools {
  display: flex;
  justify-content: center;
  padding: 16px;
  border-top: 1px solid #e8eef6;
  background: #fbfdff;
}

.nonpay-row-tools button {
  height: 42px;
  padding: 0 24px;
  color: #fff;
  border: 0;
  border-radius: 999px;
  background: #5f84d6;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.nonpay-inline-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
}

.nonpay-admin-panel,
.nonpay-log-panel {
  position: relative;
  z-index: 2;
  display: block;
  clear: both;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin-top: 42px;
  padding: 28px;
  border: 1px solid #dce5f0;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(23, 32, 51, .07);
}

.nonpay-admin-panel *,
.nonpay-log-panel * {
  box-sizing: border-box;
}

.nonpay-admin-head {
  margin-bottom: 22px;
}

.nonpay-admin-head h3,
.nonpay-log-panel h3 {
  margin: 0;
  color: #172033;
  font-size: 24px;
  font-weight: 900;
}

.nonpay-admin-head p {
  margin: 8px 0 0;
  color: #697586;
}

.nonpay-admin-section {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #edf1f6;
}

.nonpay-admin-section h4 {
  margin: 0 0 14px;
  color: #263448;
  font-size: 18px;
  font-weight: 900;
}

.nonpay-admin-help {
  margin: -6px 0 16px;
  color: #768397;
  font-size: 14px;
  line-height: 1.6;
}

.nonpay-admin-grid.is-category {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 100px 90px 90px;
  gap: 8px;
  align-items: center;
}

.nonpay-admin-grid b {
  color: #5b6879;
  font-size: 13px;
}

.nonpay-check,
.nonpay-delete-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 40px;
  padding: 0 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.nonpay-check {
  color: #365f9f;
  background: #eef4ff;
}

.nonpay-delete-check {
  color: #b83c3c;
  background: #fff1f1;
}

.nonpay-check input,
.nonpay-delete-check input {
  width: auto;
  min-height: auto;
}

.nonpay-category-add {
  margin-top: 14px;
  padding: 16px;
  border: 1px solid #dfe7f2;
  border-radius: 10px;
  background: #f8fbff;
}

.nonpay-category-add-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.nonpay-category-add-head strong {
  color: #25344a;
  font-size: 15px;
  font-weight: 900;
}

.nonpay-category-add-head button,
.nonpay-category-remove {
  height: 36px;
  padding: 0 14px;
  border: 0;
  border-radius: 6px;
  font-weight: 900;
  cursor: pointer;
}

.nonpay-category-add-head button {
  color: #fff;
  background: #5f84d6;
}

.nonpay-category-add-list {
  display: grid;
  gap: 8px;
}

.nonpay-category-add-row {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 100px 140px 80px;
  gap: 8px;
  align-items: center;
}

.nonpay-category-add-row span {
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
}

.nonpay-category-remove {
  color: #526173;
  background: #e9eef6;
}

.nonpay-admin-panel input,
.nonpay-admin-panel select,
.nonpay-admin-panel textarea {
  width: 100%;
  min-height: 40px;
  padding: 0 10px;
  color: #1d2838;
  border: 1px solid #cfd8e5;
  border-radius: 6px;
  background: #fff;
}

.nonpay-admin-panel textarea {
  min-height: 74px;
  padding: 10px;
  resize: vertical;
}

.nonpay-admin-panel .nonpay-check input,
.nonpay-admin-panel .nonpay-delete-check input,
.nonpay-admin-table input[type="checkbox"] {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  padding: 0;
  margin: 0;
  border-radius: 4px;
}

.nonpay-add-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.nonpay-add-grid textarea {
  grid-column: span 2;
}

.nonpay-admin-table,
.nonpay-log-panel table {
  width: 100%;
  min-width: 1500px;
  border-collapse: collapse;
  background: #fff;
  table-layout: fixed;
}

.nonpay-admin-table th,
.nonpay-admin-table td,
.nonpay-log-panel th,
.nonpay-log-panel td {
  padding: 9px;
  border-bottom: 1px solid #e4e9f1;
  text-align: left;
  vertical-align: top;
}

.nonpay-admin-table th,
.nonpay-log-panel th {
  color: #536174;
  font-size: 13px;
  background: #f7f9fc;
}

.nonpay-admin-table input,
.nonpay-admin-table select {
  min-width: 0;
}

.nonpay-admin-table textarea {
  min-width: 0;
  min-height: 48px;
}

.nonpay-admin-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.nonpay-admin-actions button {
  min-width: 140px;
  height: 48px;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  border: 0;
  border-radius: 6px;
  background: #5f84d6;
  cursor: pointer;
}

.nonpay-log-panel td {
  color: #596576;
  font-size: 13px;
}

@media (max-width: 1180px) {
  .nonpay-category-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .nonpay-inline-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .nonpay-edit-row {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .nonpay-edit-row.nonpay-edit-head {
    display: none;
  }

.nonpay-edit-row label,
.nonpay-edit-row > .nonpay-edit-check,
.nonpay-edit-row > .nonpay-row-remove {
  border-top: 1px solid #eef2f7;
}

.nonpay-edit-row label::before {
    content: attr(data-label);
    display: block;
    padding: 8px 9px 0;
    color: #7a8798;
    font-size: 11px;
    font-weight: 900;
  }

  .nonpay-edit-row > .nonpay-row-remove::before {
    content: attr(data-label);
    display: block;
    padding: 8px 9px 0;
    color: #b83c3c;
    font-size: 11px;
    font-weight: 900;
  }
}

@media (max-width: 720px) {
  .nonpay-page {
    margin-top: 20px;
  }

  .nonpay-category-tabs {
    gap: 6px;
  }

  .nonpay-category-tabs a {
    height: 38px;
    padding: 0 14px;
    font-size: 14px;
  }

  .nonpay-category-section h4 {
    font-size: 20px;
  }

.nonpay-table {
    min-width: 1120px;
  }

  .nonpay-table th,
  .nonpay-table td {
    padding: 12px 10px;
    font-size: 13px;
  }

  .nonpay-admin-panel,
  .nonpay-log-panel {
    padding: 22px 16px;
  }

  .nonpay-category-add-row {
    grid-template-columns: 1fr;
  }

  .nonpay-inline-head {
    padding: 20px 16px;
  }

  .nonpay-category-chips label {
    grid-template-columns: 1fr;
  }

  .nonpay-category-modal {
    padding: 12px;
  }

  .nonpay-category-dialog {
    padding: 18px;
  }

  .nonpay-edit-row {
    grid-template-columns: 1fr;
  }

  .nonpay-edit-note {
    grid-column: auto;
  }

.nonpay-edit-row label,
.nonpay-edit-row > .nonpay-edit-check,
.nonpay-edit-row > .nonpay-row-remove {
    border-left: 0;
  }
}

@media (max-width: 1500px) {
  .doctor-directory-filter {
    grid-template-columns: minmax(150px, 180px) minmax(220px, 360px) 112px;
  }

  .doctor-card {
    grid-template-columns: minmax(170px, 32%) 1fr;
    gap: 28px;
    padding: 38px 28px;
  }

  .doctor-photo,
  .doctor-photo span {
    min-height: 280px;
  }

  .doctor-specialty p,
  .doctor-intro {
    font-size: 16px;
  }

  .doctor-btn {
    min-width: 122px;
    height: 52px;
    font-size: 16px;
  }

  .department-intro {
    padding: 54px;
  }

  .department-intro-copy p,
  .department-clinic-list p {
    font-size: 17px;
  }
}

@media (max-width: 1180px) {
  .doctor-card-grid {
    grid-template-columns: 1fr;
  }

  .doctor-card:nth-child(odd) {
    border-right: 0;
  }

  .doctor-modal-panel {
    grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  }

  .department-intro,
  .department-test-slider {
    grid-template-columns: 1fr;
  }

  .department-visual-placeholder {
    min-height: 280px;
  }

  .department-test-stage {
    min-height: 420px;
  }

  .department-goal-grid {
    grid-template-columns: 1fr;
  }

  .department-goal-grid.is-four {
    grid-template-columns: 1fr;
  }

  .department-goal-grid > div {
    min-height: 0;
  }

  .department-clinic-list article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .department-equipment-lead,
  .department-equipment-detail {
    grid-template-columns: 1fr;
  }

  .department-equipment.is-reverse .department-equipment-copy,
  .department-equipment.is-reverse .department-equipment-placeholder {
    order: initial;
  }

  .department-equipment-placeholder {
    min-height: 320px;
  }
}

@media (max-width: 720px) {
  .doctor-directory {
    margin-top: 2px;
  }

  .doctor-directory-filter {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 26px;
  }

  .doctor-directory-filter select,
  .doctor-directory-filter input,
  .doctor-directory-filter button {
    height: 50px;
    font-size: 15px;
  }

  .doctor-card {
    grid-template-columns: 1fr;
    gap: 22px;
    min-height: 0;
    padding: 28px 0 34px;
  }

  .doctor-photo {
    width: min(260px, 76vw);
    min-height: 300px;
    margin: 0 auto;
  }

  .doctor-photo span {
    min-height: 300px;
  }

  .doctor-info {
    padding: 0 4px;
  }

  .doctor-name-row {
    display: block;
    margin-bottom: 22px;
  }

  .doctor-name-row h3 {
    font-size: 29px;
  }

  .doctor-name-row p {
    font-size: 17px;
  }

  .doctor-name-row > span {
    display: inline-flex;
    margin-top: 12px;
  }

  .doctor-specialty b {
    font-size: 16px;
  }

  .doctor-schedule th,
  .doctor-schedule td {
    height: 40px;
    font-size: 14px;
  }

  .doctor-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: stretch;
  }

  .doctor-btn {
    min-width: 0;
    height: 50px;
    padding: 0 10px;
    font-size: 15px;
  }

  .doctor-modal {
    align-items: flex-end;
    padding: 16px;
  }

  .doctor-modal-panel {
    grid-template-columns: 1fr;
    gap: 22px;
    max-height: calc(100vh - 32px);
    padding: 54px 22px 28px;
    border-radius: 14px;
  }

  .doctor-modal-photo {
    width: min(240px, 72vw);
    min-height: 300px;
    margin: 0 auto;
  }

  .doctor-modal-photo span {
    min-height: 300px;
  }

  .doctor-modal-content h3 {
    font-size: 31px;
  }

  .doctor-modal-content dd {
    font-size: 15px;
  }

  .department-page {
    margin-top: 8px;
  }

  .department-page .department-doctors,
  .department-intro,
  .department-section {
    margin-bottom: 54px;
  }

  .department-section-title {
    margin-bottom: 20px;
  }

  .department-section-title h3,
  .department-intro-copy h3 {
    font-size: 29px;
  }

  .department-section-title p,
  .department-intro-copy p,
  .department-clinic-list p {
    font-size: 15px;
  }

  .department-intro {
    padding: 30px 20px;
  }

  .department-visual-placeholder {
    min-height: 220px;
  }

  .department-goal-grid p,
  .department-clinic-list strong {
    font-size: 19px;
  }

  .department-test-heading {
    align-items: flex-start;
  }

  .department-test-admin-link {
    margin-bottom: 20px;
    padding: 0 12px;
    font-size: 13px;
  }

  .department-test-stage {
    min-height: 330px;
  }

  .department-test-slide figcaption {
    left: 20px;
    right: 20px;
    bottom: 24px;
  }

  .department-test-slide figcaption strong {
    font-size: 24px;
  }

  .department-test-controls {
    right: 14px;
    bottom: 14px;
  }

  .department-test-controls span {
    display: none;
  }

  .department-test-nav button {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 10px;
    min-height: 68px;
    padding: 13px 10px;
  }

  .department-test-nav button.is-active {
    padding-left: 16px;
  }

  .department-test-nav button small {
    display: none;
  }

  .department-test-nav button b {
    font-size: 16px;
  }

  .department-goal-mark {
    margin-bottom: 22px;
  }

  .department-goal-mark span {
    width: 44px;
    height: 44px;
  }

  .department-test-icon-grid {
    display: block;
  }

  .department-test-icon-grid.is-six li {
    border-right: 0;
    border-bottom: 1px solid #e2e7ee;
  }

  .department-test-icon-grid.is-six li:last-child {
    border-bottom: 0;
  }

  .department-test-icon-grid li {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 4px 16px;
    min-height: 0;
    padding: 20px 8px;
    border-right: 0;
    border-bottom: 1px solid #e2e7ee;
  }

  .department-test-icon-grid li:last-child {
    border-bottom: 0;
  }

  .department-test-icon-grid li > span {
    grid-row: 1 / 3;
    width: 46px;
    height: 46px;
    margin: 0;
  }

  .department-test-icon-grid svg {
    width: 22px;
    height: 22px;
  }

  .department-test-icon-grid b {
    min-height: 0;
    margin: 0;
    font-size: 17px;
  }

  .department-test-icon-grid p {
    font-size: 14px;
    line-height: 1.55;
  }

  .department-clinic-list.is-disease-list em {
    margin-top: 10px;
    padding-left: 15px;
    font-size: 14px;
    line-height: 1.65;
  }

  .department-clinic-card-grid {
    grid-template-columns: 1fr;
  }

  .department-clinic-card-grid article {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 16px;
    min-height: 0;
    padding: 24px 20px;
  }

  .department-clinic-card-grid article > span {
    width: 46px;
    height: 46px;
  }

  .department-clinic-card-grid svg {
    width: 22px;
    height: 22px;
  }

  .department-clinic-card-grid strong {
    margin-bottom: 9px;
    font-size: 19px;
  }

  .department-clinic-card-grid p,
  .department-clinic-card-grid em {
    font-size: 14px;
  }

  .department-equipment {
    padding: 56px 0;
  }

  .department-equipment-lead {
    gap: 28px;
    margin-bottom: 36px;
  }

  .department-equipment-copy h3 {
    margin-bottom: 16px;
    font-size: 30px;
  }

  .department-equipment-copy p {
    font-size: 15px;
    line-height: 1.75;
  }

  .department-equipment-placeholder {
    min-height: 230px;
  }

  .department-equipment-detail {
    gap: 36px;
    padding-top: 28px;
  }

  .department-equipment-detail h4 {
    margin-bottom: 18px;
    font-size: 22px;
  }

  .department-check-list li,
  .department-disease-list dt,
  .department-disease-list dd {
    font-size: 14px;
  }

  .department-disease-list > div {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
  }

  .outpatient-space-section {
    padding: 58px 0 76px;
  }

  .outpatient-space-slider .department-test-stage {
    min-height: 300px;
  }

  .department-test-nav.outpatient-space-index button {
    grid-template-columns: 28px auto;
    min-width: 164px;
    min-height: 62px;
    padding: 11px 14px;
  }

  .department-test-nav.outpatient-space-index button.is-active {
    padding-left: 14px;
  }

  .department-test-nav.outpatient-space-index button b {
    font-size: 14px;
  }

  .department-test-manager {
    align-items: end;
    padding: 10px;
  }

  .department-test-manager-panel {
    width: 100%;
    height: calc(100vh - 20px);
    border-radius: 10px;
  }

  .department-test-manager-panel > header {
    min-height: 76px;
    padding: 14px 16px;
  }

  .department-test-manager-panel > header h3 {
    font-size: 20px;
  }
}

.location-page {
  display: grid;
  gap: 42px;
  margin-top: 58px;
}

.location-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, .65fr);
  gap: 22px;
  align-items: stretch;
}

.location-map {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid #dde5ef;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(95, 132, 214, .12) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(rgba(95, 132, 214, .12) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(135deg, #f7faff 0%, #edf3fb 48%, #f9fbfe 100%);
}

.location-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 36%, rgba(243, 171, 82, .22), transparent 0 10px, rgba(243, 171, 82, .12) 11px, transparent 12px),
    linear-gradient(140deg, transparent 18%, rgba(137, 164, 213, .24) 18.2%, transparent 18.6%, transparent 48%, rgba(137, 164, 213, .24) 48.2%, transparent 48.6%);
  opacity: .85;
}

.location-map::after {
  content: "";
  position: absolute;
  left: 30%;
  top: 36%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #f3ab52;
  box-shadow: 0 0 0 12px rgba(243, 171, 82, .18), 0 18px 38px rgba(34, 48, 70, .15);
  transform: translate(-50%, -50%);
}

.location-map.has-embed::before,
.location-map.has-embed::after,
.location-map.is-active::before,
.location-map.is-active::after {
  display: none;
}

.location-map-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(.92) contrast(.96);
}

.location-map-placeholder {
  position: absolute;
  left: 44px;
  bottom: 40px;
  z-index: 1;
  width: min(430px, calc(100% - 88px));
  padding: 28px 30px;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 8px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 20px 44px rgba(32, 48, 76, .12);
  backdrop-filter: blur(12px);
}

.location-map-placeholder.is-compact {
  left: 26px;
  bottom: 24px;
  width: min(360px, calc(100% - 52px));
  padding: 20px 22px;
}

.location-map-placeholder.is-compact strong {
  font-size: clamp(20px, 1.45vw, 27px);
}

.location-map-placeholder.is-compact p {
  font-size: 13px;
}

.location-map.is-active .location-map-placeholder {
  display: none;
}

.kakao-map-info {
  padding: 8px 12px;
  color: #111b2a;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.location-map-placeholder span,
.location-kicker {
  display: inline-flex;
  align-items: center;
  color: #5f84d6;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.location-map-placeholder strong {
  display: block;
  margin-top: 10px;
  color: #111b2a;
  font-size: clamp(24px, 1.8vw, 34px);
  font-weight: 760;
  line-height: 1.2;
}

.location-map-placeholder p {
  margin: 10px 0 0;
  color: #697789;
  font-size: 15px;
  line-height: 1.55;
}

.location-summary {
  display: grid;
  align-content: space-between;
  gap: 28px;
  padding: 42px 38px;
  border-radius: 8px;
  background: #f6f8fb;
}

.location-summary h3,
.location-sns h3 {
  margin: 12px 0 0;
  color: #111b2a;
  font-size: clamp(30px, 2.2vw, 42px);
  font-weight: 740;
  line-height: 1.22;
  letter-spacing: 0;
}

.location-summary dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

.location-summary dl div {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(137, 148, 164, .22);
}

.location-summary dt {
  margin-bottom: 7px;
  color: #5f84d6;
  font-size: 14px;
  font-weight: 850;
}

.location-summary dd {
  margin: 0;
  color: #263241;
  font-size: 18px;
  font-weight: 520;
  line-height: 1.45;
}

.location-map-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.location-map-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  color: #fff;
  border-radius: 6px;
  background: #5f84d6;
  font-size: 16px;
  font-weight: 800;
}

.location-map-actions a + a {
  color: #263241;
  background: #fff;
  border: 1px solid #dfe6ef;
}

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

.location-guide-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 34px;
  border: 1px solid #e2e8f1;
  border-radius: 8px;
  background: #fff;
}

.location-guide-card > span,
.location-sns-grid a > span {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  color: #5f84d6;
  border-radius: 50%;
  background: rgba(95, 132, 214, .1);
}

.location-guide-card svg,
.location-sns-grid svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.7;
}

.location-guide-card strong {
  display: block;
  color: #111b2a;
  font-size: 24px;
  font-weight: 720;
}

.location-guide-card p {
  margin: 12px 0 0;
  color: #586577;
  font-size: 16px;
  line-height: 1.75;
}

.location-guide-card b {
  color: #25354c;
  font-weight: 780;
}

.location-sns {
  display: grid;
  grid-template-columns: minmax(260px, .45fr) minmax(0, 1fr);
  gap: 42px;
  align-items: end;
  padding: 48px;
  border-radius: 8px;
  background: linear-gradient(135deg, #f7f9fc 0%, #eef4fb 100%);
}

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

.location-sns-grid a {
  display: grid;
  gap: 12px;
  min-height: 190px;
  padding: 26px;
  color: #111b2a;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.location-sns-grid a:hover {
  transform: translateY(-5px);
  border-color: rgba(95, 132, 214, .34);
  box-shadow: 0 18px 38px rgba(32, 48, 76, .1);
}

.location-sns-grid a b {
  font-size: 21px;
  font-weight: 760;
}

.location-sns-grid a em {
  color: #6a7585;
  font-size: 15px;
  font-style: normal;
  line-height: 1.45;
}

.location-sns-grid .is-kakao > span {
  color: #3a2c08;
  background: rgba(250, 225, 84, .42);
}

.location-sns-grid .is-blog > span {
  color: #03a554;
  background: rgba(3, 165, 84, .12);
}

.location-sns-grid .is-youtube > span {
  color: #e64a4a;
  background: rgba(230, 74, 74, .11);
}

.floor-guide {
  position: relative;
  left: 50%;
  width: 100vw;
  margin: 58px 0 -130px;
  padding: 56px max(48px, calc((100vw - 1640px) / 2 + 48px)) 88px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #eef5fb 0%, #f7fafc 100%);
}

.floor-guide-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
  padding-top: 8px;
  border-top: 1px solid rgba(95, 132, 214, .22);
}

.floor-guide-head span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #2e79c4;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: .16em;
}

.floor-guide-head span::before {
  content: "";
  width: 38px;
  height: 2px;
  background: #2e79c4;
}

.floor-guide-head h3 {
  margin: 18px 0 0;
  color: #10243f;
  font-size: clamp(25px, 1.72vw, 34px);
  font-weight: 650;
  line-height: 1.28;
  letter-spacing: 0;
}

.floor-building-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 104px minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
}

.floor-building {
  overflow: hidden;
  border: 1px solid rgba(137, 164, 213, .28);
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 20px 48px rgba(39, 62, 92, .08);
}

.floor-building-head {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px 28px;
  color: #fff;
  background: linear-gradient(135deg, #164f7e 0%, #287db6 100%);
}

.floor-building.is-b .floor-building-head {
  background: linear-gradient(135deg, #526da6 0%, #89a4d5 100%);
}

.floor-building-head > span {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  font-size: 32px;
  font-weight: 850;
}

.floor-building-head strong {
  display: block;
  font-size: 30px;
  font-weight: 780;
  line-height: 1;
}

.floor-building-head em {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,.82);
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
}

.floor-bridge-axis {
  display: grid;
  grid-template-rows: 114px 1fr;
  min-width: 0;
}

.floor-bridge-head {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  min-height: 114px;
  color: #5f84d6;
  text-align: center;
  border: 1px solid rgba(137, 164, 213, .32);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
}

.floor-bridge-head svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.8;
}

.floor-bridge-head span {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.floor-bridge-list {
  position: relative;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 24px 0;
  list-style: none;
}

.floor-bridge-list::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 92px;
  bottom: 222px;
  width: 2px;
  background: linear-gradient(180deg, rgba(95,132,214,.12), rgba(95,132,214,.72), rgba(95,132,214,.12));
  transform: translateX(-50%);
}

.floor-bridge-list li {
  position: relative;
  min-height: 58px;
}

.floor-bridge-list li span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 48px;
  height: 30px;
  margin: 14px auto 0;
  color: #fff;
  border-radius: 999px;
  background: #89a4d5;
  font-size: 12px;
  font-weight: 850;
  box-shadow: 0 8px 18px rgba(95, 132, 214, .22);
}

.floor-bridge-list li span::before,
.floor-bridge-list li span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 28px;
  height: 2px;
  background: rgba(137, 164, 213, .72);
  transform: translateY(-50%);
}

.floor-bridge-list li span::before {
  right: 100%;
}

.floor-bridge-list li span::after {
  left: 100%;
}

.floor-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 24px;
  list-style: none;
}

.floor-list li {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 58px;
  padding: 0 22px;
  color: #253348;
  border: 1px solid #e1e8f1;
  border-radius: 8px;
  background: #fff;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.floor-list li:hover {
  transform: translateY(-2px);
  color: #fff;
  border-color: transparent;
  background: #89a4d5;
  box-shadow: 0 14px 28px rgba(39, 62, 92, .1);
}

.floor-list li b {
  color: #2e79c4;
  font-size: 27px;
  font-weight: 820;
  line-height: 1;
}

.floor-list li span {
  color: #263447;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.45;
}

.floor-list li.is-main {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #164f7e 0%, #2d83bb 100%);
}

.floor-list li.is-main b,
.floor-list li.is-main span,
.floor-building .floor-list li:hover b,
.floor-building .floor-list li:hover span {
  color: #fff;
}

.floor-list li.is-test b {
  color: #7b8f31;
}

.floor-list li.is-care b {
  color: #5f84d6;
}

.floor-list li.is-support b {
  color: #8a6d3b;
}

.floor-list li.is-garden b {
  color: #4c9871;
}

.floor-list li.is-parking b {
  color: #6f7b8c;
}

.floor-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
}

.floor-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 14px;
  color: #556274;
  border: 1px solid rgba(137, 164, 213, .25);
  border-radius: 999px;
  background: rgba(255,255,255,.74);
  font-size: 14px;
  font-weight: 700;
}

.floor-legend i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2e79c4;
}

.floor-legend i.is-test {
  background: #7b8f31;
}

.floor-legend i.is-care {
  background: #5f84d6;
}

.floor-legend i.is-parking {
  background: #6f7b8c;
}

.mission-vision {
  display: grid;
  gap: 72px;
  margin-top: 74px;
}

.mission-kicker {
  display: inline-flex;
  align-items: center;
  height: auto;
  padding: 0 0 10px;
  color: #5f84d6;
  font-size: clamp(21px, 1.5vw, 28px);
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
  border: 0;
  border-bottom: 3px solid #89a4d5;
  border-radius: 0;
  background: transparent;
}

.mission-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, .86fr) minmax(0, 1fr);
  gap: clamp(42px, 5vw, 82px);
  padding: clamp(42px, 4.8vw, 72px);
  border: 0;
  border-radius: 22px;
  background:
    radial-gradient(circle at 96% 12%, rgba(137, 164, 213, .18), transparent 28%),
    linear-gradient(180deg, #f7f9fc 0%, #f3f6fa 100%);
}

.mission-panel::after {
  content: "MISSION";
  position: absolute;
  right: -12px;
  bottom: -10px;
  color: rgba(137, 164, 213, .07);
  font-size: clamp(62px, 7vw, 118px);
  font-weight: 900;
  line-height: .8;
  pointer-events: none;
}

.mission-panel-text,
.mission-panel-copy {
  position: relative;
  z-index: 1;
}

.mission-panel-text {
  display: grid;
  align-content: start;
  gap: 24px;
}

.mission-panel-text h3 {
  margin: 0;
  color: #111b2a;
  font-size: clamp(32px, 3vw, 52px);
  font-weight: 760;
  line-height: 1.22;
}

.mission-panel-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding-left: 34px;
  border-left: 1px solid rgba(137, 164, 213, .38);
}

.mission-panel-copy p {
  margin: 0;
  color: #334052;
  font-size: clamp(17px, 1vw, 19px);
  font-weight: 400;
  line-height: 1.78;
}

.mission-flow {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  display: grid;
  grid-template-columns: max(36px, calc((100vw - 1280px) / 2)) minmax(210px, 300px) minmax(0, 1fr) max(36px, calc((100vw - 1280px) / 2));
  column-gap: clamp(42px, 5vw, 82px);
  align-items: center;
  padding: clamp(54px, 5vw, 78px) 0;
  color: #111b2a;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .94), rgba(255, 255, 255, .72)),
    linear-gradient(180deg, #f8fafc 0%, #f2f6fb 100%);
}

.mission-flow .mission-kicker {
  grid-column: 2;
  color: #5f84d6;
  border-color: #89a4d5;
  background: transparent;
}

.mission-flow-copy {
  grid-column: 3;
  display: grid;
  gap: 18px;
}

.mission-flow h3 {
  margin: 0;
  color: #14233b;
  font-size: clamp(30px, 2.6vw, 46px);
  font-weight: 720;
  line-height: 1.12;
}

.mission-flow-copy p {
  max-width: 780px;
  margin: 0;
  color: #455365;
  font-size: clamp(17px, 1.08vw, 20px);
  font-weight: 400;
  line-height: 1.72;
}

.mission-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(34px, 4.6vw, 74px);
  padding: 6px 0 10px;
}

.mission-value-card {
  position: relative;
  min-height: 0;
  padding: 0 0 0 28px;
  border-left: 2px solid rgba(137, 164, 213, .42);
  background: transparent;
  transition: transform .22s ease, border-color .22s ease;
}

.mission-value-card:hover {
  transform: translateY(-4px);
  border-color: #5f84d6;
}

.mission-value-card::after {
  content: attr(data-index);
  position: absolute;
  right: 0;
  top: -16px;
  color: rgba(137, 164, 213, .12);
  font-size: 86px;
  font-weight: 900;
  line-height: 1;
}

.mission-value-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 26px;
  color: #5f84d6;
  border: 1px solid rgba(95, 132, 214, .22);
  border-radius: 18px;
  background: rgba(95, 132, 214, .08);
}

.mission-value-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.8;
}

.mission-value-card em {
  display: block;
  margin-bottom: 16px;
  color: #f3ab52;
  font-size: clamp(24px, 2vw, 36px);
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}

.mission-value-card h4 {
  margin: 0 0 18px;
  color: #121a26;
  font-size: clamp(24px, 1.7vw, 32px);
  font-weight: 760;
  line-height: 1.22;
}

.mission-value-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #4c5968;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.72;
}

.mission-closing {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(520px, 1fr);
  gap: clamp(54px, 5.4vw, 108px);
  align-items: center;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: clamp(76px, 6.8vw, 112px) max(48px, calc((100vw - 1360px) / 2)) clamp(54px, 4.6vw, 72px);
  color: #111b2a;
  background: #f7f8fa;
}

.mission-closing::after {
  content: "MEDIPIUM";
  position: absolute;
  right: -10px;
  bottom: -10px;
  color: rgba(255, 255, 255, .06);
  font-size: clamp(78px, 9vw, 150px);
  font-weight: 900;
  line-height: .8;
}

.mission-closing-copy {
  position: relative;
  z-index: 1;
  padding: 0;
  justify-self: stretch;
}

.mission-closing h3 {
  margin: 0;
  color: #111b2a;
  font-size: clamp(38px, 3.25vw, 60px);
  font-weight: 760;
  line-height: 1.18;
}

.mission-closing-copy > p {
  max-width: 760px;
  margin: 50px 0 0;
  color: #3d4958;
  font-size: clamp(17px, 1.08vw, 20px);
  font-weight: 400;
  line-height: 1.78;
}

.mission-closing-visual {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin-left: auto;
  justify-self: end;
  min-height: clamp(440px, 34vw, 570px);
}

.mission-closing-media {
  position: absolute;
  aspect-ratio: 1 / 1;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
}

.mission-closing-media-main {
  right: clamp(78px, 6.2vw, 110px);
  top: 0;
  width: clamp(350px, 27vw, 480px);
  box-shadow: 0 26px 58px rgba(48, 67, 92, .13);
}

.mission-closing-media-sub {
  right: 0;
  bottom: clamp(10px, 1.5vw, 24px);
  width: clamp(250px, 18vw, 330px);
  border: 8px solid #f7f8fa;
  background: #f3ab52;
  box-shadow: 0 18px 44px rgba(48, 67, 92, .12), 0 10px 28px rgba(243, 171, 82, .14);
}

.mission-closing-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 27, 42, .02), rgba(17, 27, 42, .18));
}

.mission-closing-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.mission-wordmark {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin-top: 54px;
  padding-top: 28px;
  border-top: 1px solid #dfe6ef;
}

.mission-wordmark strong {
  color: #111b2a;
  font-size: clamp(24px, 2vw, 36px);
  font-weight: 900;
  letter-spacing: .08em;
}

.mission-wordmark em {
  color: #89a4d5;
  font-style: normal;
  font-size: 18px;
  font-weight: 800;
}

.mission-wordmark p {
  margin: 0;
  color: #657386;
  font-size: 16px;
  line-height: 1.55;
}

.has-mission-motion .mission-panel,
.has-mission-motion .mission-flow,
.has-mission-motion .mission-value-card,
.has-mission-motion .mission-closing-copy,
.has-mission-motion .mission-closing-media {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .82s ease, transform .82s cubic-bezier(.2, .72, .18, 1);
  will-change: transform, opacity;
}

.has-mission-motion .mission-motion-visible {
  opacity: 1;
  transform: translateY(0);
}

.has-mission-motion .mission-values .mission-value-card:nth-child(2).mission-motion-visible {
  transition-delay: .08s;
}

.has-mission-motion .mission-values .mission-value-card:nth-child(3).mission-motion-visible {
  transition-delay: .16s;
}

.has-mission-motion .mission-closing-media.mission-motion-visible {
  transition-delay: .1s;
}

.history-timeline {
  position: relative;
  margin: 76px 0 0;
  padding: 8px 0 16px;
}

.history-timeline::before {
  content: "";
  position: absolute;
  left: 210px;
  top: 18px;
  bottom: 34px;
  width: 1px;
  background: linear-gradient(180deg, rgba(137, 164, 213, .14), rgba(137, 164, 213, .82), rgba(137, 164, 213, .12));
}

.history-row {
  position: relative;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 64px;
  padding: 0 0 56px;
}

.history-row::before {
  content: "";
  position: absolute;
  left: 203px;
  top: 22px;
  width: 15px;
  height: 15px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: #f3ab52;
  box-shadow: 0 0 0 1px rgba(243, 171, 82, .42), 0 8px 22px rgba(137, 164, 213, .22);
  z-index: 1;
}

.history-year {
  color: #14233b;
  font-family: inherit;
  font-size: clamp(42px, 3.6vw, 62px);
  font-weight: 800;
  line-height: .95;
  letter-spacing: 0;
}

.history-card {
  position: relative;
  min-height: 84px;
  overflow: hidden;
  padding: 30px 42px 32px 52px;
  border: 1px solid #e2e8f2;
  border-radius: 3px;
  background:
    linear-gradient(90deg, rgba(137, 164, 213, .1) 0%, rgba(255, 255, 255, .94) 46%, rgba(247, 250, 254, .98) 100%),
    #fff;
  box-shadow: 0 18px 38px rgba(28, 48, 82, .05);
}

.history-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  height: auto;
  background: #89a4d5;
}

.history-card::after {
  content: attr(data-year);
  position: absolute;
  right: 34px;
  bottom: -12px;
  color: rgba(137, 164, 213, .1);
  font-size: clamp(70px, 6vw, 112px);
  font-weight: 900;
  line-height: .8;
  letter-spacing: 0;
  pointer-events: none;
}

.history-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.history-card li {
  position: relative;
  padding-left: 16px;
  color: #273241;
  font-size: clamp(16px, .95vw, 18px);
  font-weight: 400;
  line-height: 1.62;
  letter-spacing: 0;
}

.history-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .78em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #89a4d5;
}

.has-history-motion .history-year,
.has-history-motion .history-card {
  opacity: 0;
  transition: opacity .78s ease, transform .78s cubic-bezier(.2, .72, .18, 1);
  will-change: transform, opacity;
}

.has-history-motion .history-year {
  transform: translateX(-42px);
}

.has-history-motion .history-card {
  transform: translateX(42px);
}

.has-history-motion .history-row.is-visible .history-year,
.has-history-motion .history-row.is-visible .history-card {
  opacity: 1;
  transform: translateX(0);
}

.has-history-motion .history-row.is-visible .history-card {
  transition-delay: .08s;
}

@media (max-width: 1180px) {
  .park-sub-inner,
  .park-content-inner {
    width: min(100% - 44px, 920px);
  }

  .park-page-headline {
    gap: 28px;
  }

  .medipium-sub-search {
    flex-basis: 360px;
    padding: 0;
  }

  .park-sub-curve {
    --park-sub-left: max(22px, calc((100vw - 920px) / 2));
    --park-sub-radius: 78px;
    --park-sub-shape-left: calc(var(--park-sub-left) + 83px - var(--park-sub-radius));
    --park-sub-fill-left: max(0px, var(--park-sub-shape-left));
    --park-sub-notch: calc(var(--park-sub-left) + 83px);
  }

  .park-depth summary {
    width: auto;
  }

  .park-sub-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    padding-left: 84px;
    scrollbar-width: none;
  }

  .park-sub-tabs::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 720px) {
  .park-sub-hero {
    min-height: 330px;
  }

  .park-sub-inner {
    width: min(100% - 32px, 560px);
    padding-top: 72px;
    transform: none;
  }

  .park-sub-inner h1 {
    margin-bottom: 20px;
    font-size: 29px;
  }

  .park-sub-menu {
    display: block;
  }

  .park-sub-tabs {
    padding-left: 0;
  }

  .park-depth summary,
  .park-sub-tabs a {
    min-height: 58px;
    font-size: 14px;
  }

  .park-home-icon {
    width: 26px;
    height: 26px;
    border-radius: 7px;
  }

  .park-sub-curve {
    --park-sub-left: max(16px, calc((100vw - 560px) / 2));
    --park-sub-radius: 52px;
    --park-sub-shape-left: calc(var(--park-sub-left) + 42px - var(--park-sub-radius));
    --park-sub-fill-left: max(0px, var(--park-sub-shape-left));
    --park-sub-notch: calc(var(--park-sub-left) + 42px);
    height: 120px;
    margin-top: -52px;
    background:
      radial-gradient(circle var(--park-sub-radius) at var(--park-sub-shape-left) var(--park-sub-radius), #fff 0 99%, transparent 100%),
      radial-gradient(circle var(--park-sub-radius) at calc(var(--park-sub-shape-left) + (var(--park-sub-radius) * 2)) var(--park-sub-radius), #fff 0 99%, transparent 100%),
      linear-gradient(#fff, #fff) 0 0 / var(--park-sub-fill-left) 100% no-repeat,
      linear-gradient(#fff, #fff) calc(var(--park-sub-shape-left) + (var(--park-sub-radius) * 2)) 0 / calc(100% - var(--park-sub-shape-left) - (var(--park-sub-radius) * 2)) 100% no-repeat,
      linear-gradient(#fff, #fff) 0 var(--park-sub-radius) / 100% calc(100% - var(--park-sub-radius)) no-repeat;
  }

  .park-sub-curve::before {
    display: none;
  }

  .park-sub-curve::after {
    left: calc(var(--park-sub-notch) - 20px);
    top: 58px;
    width: 40px;
    height: 36px;
  }

  .park-sub-curve span {
    display: none;
  }

  .park-content-shell {
    min-height: 260px;
    padding: 28px 0 90px;
  }

  .park-content-inner {
    width: min(100% - 32px, 560px);
  }

  .park-local-tabs {
    gap: 8px;
    margin: 0 0 34px;
  }

  .park-local-tabs a {
    min-width: 0;
    height: 46px;
    padding: 0 30px;
    font-size: 15px;
    font-weight: 600;
  }

  .park-local-tabs.is-clinic-tabs a {
    padding-right: 25px;
    padding-left: 25px;
  }

  .park-greeting-copy h2 {
    font-size: 31px;
  }

  .park-greeting-en {
    font-size: 20px;
  }

  .park-coming-soon {
    min-height: 360px;
    margin-top: 32px;
  }

  .park-page-headline {
    display: grid;
    gap: 26px;
    margin-bottom: 30px;
  }

  .medipium-sub-search {
    width: 100%;
    flex-basis: auto;
    margin-left: 0;
    margin-top: 16px;
    padding: 0;
  }

  .park-local-tabs.is-clinic-tabs .medipium-sub-search {
    width: 100%;
    flex-basis: auto;
  }

  .medipium-sub-search label {
    height: 50px;
  }

  .medipium-sub-search input {
    font-size: 14px;
  }

  .medipium-search-inner {
    width: min(100% - 32px, 560px);
  }

  .medipium-search-hero {
    padding: 66px 0 54px;
  }

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

  .medipium-search-hero p {
    font-size: 16px;
  }

  .medipium-search-form {
    align-items: stretch;
    flex-direction: column;
    border-radius: 18px;
  }

  .medipium-search-form input,
  .medipium-search-form button {
    height: 50px;
  }

  .medipium-search-form button {
    width: 100%;
  }

  .medipium-search-results {
    padding: 46px 0 82px;
  }

  .medipium-search-result-head {
    display: block;
  }

  .medipium-search-result-head p {
    margin-top: 10px;
  }

  .medipium-search-list article a,
  .medipium-search-guide {
    padding: 24px 20px;
  }

  .location-page {
    gap: 28px;
    margin-top: 38px;
  }

  .location-hero-card,
  .location-guide-grid,
  .location-sns {
    grid-template-columns: 1fr;
  }

  .location-map {
    min-height: 360px;
  }

  .location-map-placeholder {
    left: 18px;
    bottom: 18px;
    width: calc(100% - 36px);
    padding: 22px;
  }

  .location-summary {
    padding: 28px 24px;
  }

  .location-summary h3,
  .location-sns h3 {
    font-size: 27px;
  }

  .location-summary dd {
    font-size: 16px;
  }

  .location-guide-card {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 16px;
    padding: 24px;
  }

  .location-guide-card > span,
  .location-sns-grid a > span {
    width: 56px;
    height: 56px;
  }

  .location-guide-card svg,
  .location-sns-grid svg {
    width: 24px;
    height: 24px;
  }

  .location-guide-card strong {
    font-size: 20px;
  }

  .location-sns {
    gap: 24px;
    padding: 30px 22px;
  }

  .location-sns-grid {
    grid-template-columns: 1fr;
  }

  .location-sns-grid a {
    min-height: 0;
    grid-template-columns: 56px minmax(0, 1fr);
    align-items: center;
    padding: 20px;
  }

  .location-sns-grid a em {
    grid-column: 2;
  }

  .floor-guide {
    margin-top: 38px;
    margin-bottom: -90px;
    padding: 30px 16px 68px;
  }

  .floor-guide-head {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 24px;
  }

  .floor-guide-head h3 {
    font-size: 28px;
  }

  .floor-guide-head p {
    text-align: left;
    font-size: 15px;
  }

  .floor-building-grid {
    grid-template-columns: 1fr;
  }

  .floor-bridge-axis {
    grid-template-rows: auto;
  }

  .floor-bridge-head {
    min-height: 74px;
    display: flex;
    justify-content: center;
    padding: 0 18px;
  }

  .floor-bridge-head span {
    font-size: 14px;
  }

  .floor-bridge-list {
    display: none;
  }

  .floor-building-head {
    padding: 22px 20px;
  }

  .floor-building-head > span {
    width: 54px;
    height: 54px;
    font-size: 27px;
  }

  .floor-building-head strong {
    font-size: 25px;
  }

  .floor-list {
    gap: 8px;
    padding: 14px;
  }

  .floor-list li {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
    min-height: 54px;
    padding: 0 14px;
  }

  .floor-list li b {
    font-size: 22px;
  }

  .floor-list li span {
    font-size: 14px;
  }

  .floor-legend {
    justify-content: flex-start;
  }

  .mission-vision {
    gap: 38px;
    margin-top: 50px;
  }

  .mission-panel {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 24px;
  }

  .mission-panel-text,
  .mission-panel-copy {
    grid-column: auto;
  }

  .mission-panel-copy {
    padding-left: 0;
    padding-top: 24px;
    border-left: 0;
    border-top: 1px solid rgba(137, 164, 213, .32);
  }

  .mission-flow {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 46px 28px;
  }

  .mission-flow .mission-kicker,
  .mission-flow-copy {
    grid-column: auto;
  }

  .mission-values {
    grid-template-columns: 1fr;
  }

  .mission-value-card {
    min-height: 0;
    padding: 0 0 0 22px;
  }

  .mission-closing {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 46px 28px 42px;
  }

  .mission-closing-copy {
    padding: 0;
  }

  .mission-closing-visual {
    min-height: 360px;
  }

  .mission-closing-media-main {
    left: 0;
    right: auto;
    width: min(72vw, 300px);
  }

  .mission-closing-media-sub {
    right: 0;
    bottom: 0;
    width: min(52vw, 220px);
  }

  .mission-closing-media,
  .mission-closing-media img {
    min-height: 0;
  }

  .history-timeline {
    margin-top: 50px;
  }

  .history-timeline::before {
    left: 22px;
  }

  .history-row {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-left: 48px;
    padding-bottom: 44px;
  }

  .history-row::before {
    left: 15px;
    top: 8px;
  }

  .history-year {
    font-size: 38px;
  }

  .history-card {
    padding: 24px 24px 26px 28px;
  }

  .history-card::before {
    width: 3px;
  }

  .history-card::after {
    right: 18px;
    bottom: -6px;
    font-size: 58px;
  }

  .history-card li {
    font-size: 15px;
    line-height: 1.58;
  }
}

/* Main navigation interaction */
.stage-nav > ul > li > a {
  transition: color .18s ease;
}

.stage-nav > ul > li:hover > a,
.stage-nav > ul > li:focus-within > a,
.stage-nav > ul > li.is-active > a {
  color: var(--blue);
}

/* All menu v2 */
.menu-backdrop {
  background: rgba(12, 22, 38, .54);
  backdrop-filter: blur(5px);
}

.menu-overlay.is-open .all-menu {
  animation: allMenuOpen .22s ease both;
}

@keyframes allMenuOpen {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.all-menu {
  inset: 22px;
  color: var(--ink);
  background: #fff;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(7, 18, 36, .28);
}

.all-menu-head {
  min-height: 108px;
  padding: 24px clamp(28px, 4vw, 64px);
  color: var(--ink);
  background: rgba(255, 255, 255, .98);
  border-bottom: 1px solid #dfe6ef;
  backdrop-filter: blur(14px);
}

.all-menu-title span {
  margin-bottom: 5px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}

.all-menu-title strong {
  color: var(--ink);
  font-family: "SUIT", "Noto Sans KR", sans-serif;
  font-size: 30px;
  font-weight: 700;
}

.all-menu-title p {
  margin-top: 6px;
  color: #748092;
  font-size: 14px;
  font-weight: 500;
}

.all-menu-head > .all-menu-contact {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 252px;
  height: 48px;
  padding: 0 18px;
  color: #31558f;
  background: #edf3fc;
  border: 1px solid #d7e3f4;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
}

.all-menu-contact svg {
  width: 18px;
  height: 18px;
  color: var(--blue);
}

.all-menu-head > .all-menu-contact span {
  color: #31558f;
}

.all-menu-contact b {
  margin-left: auto;
  color: #244475;
  font-size: 17px;
}

.all-menu-head button {
  width: 48px;
  height: 48px;
  background: var(--deep);
  border: 0;
  border-radius: 4px;
}

.all-menu-body {
  display: block;
  width: min(100%, 1540px);
  margin: 0 auto;
  padding: 32px clamp(28px, 4vw, 64px) 54px;
}

.all-menu-quick {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 38px;
  border-top: 1px solid #dce5f0;
  border-bottom: 1px solid #dce5f0;
}

.all-menu-quick > a {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  min-height: 82px;
  padding: 14px 20px;
  color: var(--ink);
  border-right: 1px solid #e2e9f2;
  transition: color .18s ease, background .18s ease;
}

.all-menu-quick > a:last-child {
  border-right: 0;
}

.all-menu-quick > a:hover {
  color: #31558f;
  background: #f4f7fc;
}

.all-menu-quick svg {
  width: 22px;
  height: 22px;
  padding: 10px;
  box-sizing: content-box;
  color: #fff;
  background: var(--blue);
  border-radius: 4px;
  stroke-width: 1.8;
}

.all-menu-quick span {
  min-width: 0;
}

.all-menu-quick b,
.all-menu-quick small {
  display: block;
}

.all-menu-quick b {
  font-size: 16px;
  font-weight: 800;
}

.all-menu-quick small {
  margin-top: 3px;
  color: #8792a2;
  font-size: 12px;
  font-weight: 500;
}

.all-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 2px solid #294a7b;
}

.all-menu-grid article {
  min-height: 0;
  padding: 26px 24px 34px;
  overflow: visible;
  background: transparent;
  border: 0;
  border-right: 1px solid #e1e8f1;
  border-bottom: 1px solid #e1e8f1;
  border-radius: 0;
  box-shadow: none;
  transform: none;
}

.all-menu-grid article:nth-child(4n),
.all-menu-grid article:last-child {
  border-right: 0;
}

.all-menu-grid article::before,
.all-menu-grid article::after {
  display: none;
}

.all-menu-grid article:hover {
  border-color: #e1e8f1;
  box-shadow: none;
  transform: none;
}

.all-menu-mobile-toggle {
  display: none;
}

.all-menu-grid .all-menu-major {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 20px;
  gap: 10px;
  align-items: center;
  margin: 0 0 25px;
  padding: 0 0 16px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid #cfd9e6;
  border-radius: 0;
  transition: color .16s ease, border-color .16s ease;
}

.all-menu-grid .all-menu-major:hover,
.all-menu-grid .all-menu-major:focus-visible {
  color: var(--blue);
  background: transparent;
  border-color: var(--blue);
}

.all-menu-grid .all-menu-major:hover h3,
.all-menu-grid .all-menu-major:focus-visible h3 {
  color: var(--blue);
}

.all-menu-grid .all-menu-major::before {
  display: none;
}

.all-menu-major > span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.all-menu-grid .all-menu-major h3 {
  margin: 0;
  color: var(--ink);
  font-family: "SUIT", "Noto Sans KR", sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.all-menu-major svg {
  width: 18px;
  height: 18px;
  color: #8b98aa;
  transition: color .18s ease, transform .18s ease;
}

.all-menu-major:hover svg {
  color: var(--blue);
  transform: translate(2px, -2px);
}

.all-menu-sections {
  display: grid;
  gap: 24px;
}

.all-menu-sections section {
  min-width: 0;
}

.all-menu-sections h4 {
  margin: 0 0 10px;
}

.all-menu-sections h4 a {
  display: inline-flex;
  margin: 0;
  padding: 0;
  color: #31558f;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 15px;
  font-weight: 800;
}

.all-menu-sections h4 a::before {
  display: none;
}

.all-menu-sections ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.all-menu-sections li a {
  display: block;
  margin: 0;
  padding: 2px 0 2px 13px;
  color: #596576;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}

.all-menu-sections li a::before {
  left: 0;
  width: 4px;
  height: 4px;
  background: #b4c0cf;
}

.all-menu-sections li a:hover {
  color: var(--blue);
  background: transparent;
  border-color: transparent;
  font-weight: 700;
}

.all-menu-sections li a:hover::before {
  background: var(--blue);
}

@media (max-width: 1180px) {
  .all-menu {
    inset: 12px;
    max-height: calc(100svh - 24px);
  }

  .all-menu-head {
    padding: 20px 24px;
  }

  .all-menu-body {
    padding: 24px 24px 42px;
  }

  .all-menu-quick {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .all-menu-quick > a:nth-child(3) {
    border-right: 0;
  }

  .all-menu-quick > a:nth-child(n+4) {
    border-top: 1px solid #e2e9f2;
  }

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

  .all-menu-grid article:nth-child(odd) {
    border-right: 1px solid #e1e8f1;
  }

  .all-menu-grid article:nth-child(even) {
    border-right: 0;
  }
}

@media (max-width: 720px) {
  .all-menu {
    inset: 6px;
    max-height: calc(100svh - 12px);
    border-radius: 6px;
  }

  .all-menu-head {
    grid-template-columns: minmax(0, 1fr) 44px;
    min-height: 82px;
    padding: 14px 16px;
  }

  .all-menu-title span,
  .all-menu-title p,
  .all-menu-head > .all-menu-contact {
    display: none;
  }

  .all-menu-title strong {
    font-size: 24px;
  }

  .all-menu-head button {
    display: block;
    width: 44px;
    height: 44px;
  }

  .all-menu-head button::before,
  .all-menu-head button::after {
    left: 12px;
    top: 21px;
  }

  .all-menu-body {
    padding: 16px 14px 30px;
  }

  .all-menu-quick {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 24px;
  }

  .all-menu-quick > a {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 9px;
    min-height: 68px;
    padding: 10px 9px;
  }

  .all-menu-quick > a:nth-child(2n) {
    border-right: 0;
  }

  .all-menu-quick > a:nth-child(n+3) {
    border-top: 1px solid #e2e9f2;
  }

  .all-menu-quick > a:nth-child(5) {
    display: none;
  }

  .all-menu-quick svg {
    width: 18px;
    height: 18px;
    padding: 8px;
  }

  .all-menu-quick b {
    font-size: 14px;
  }

  .all-menu-quick small {
    display: none;
  }

  .all-menu-grid {
    grid-template-columns: 1fr;
  }

  .all-menu-grid article,
  .all-menu-grid article:nth-child(odd),
  .all-menu-grid article:nth-child(even) {
    padding: 0;
    border-right: 0;
  }

  .all-menu-grid .all-menu-major {
    display: none;
  }

  .all-menu-mobile-toggle {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr) 20px;
    gap: 8px;
    align-items: center;
    width: 100%;
    min-height: 62px;
    padding: 0 8px;
    color: var(--ink);
    background: #fff;
    border: 0;
    border-radius: 0;
    text-align: left;
  }

  .all-menu-mobile-toggle span {
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
  }

  .all-menu-mobile-toggle b {
    font-family: "SUIT", "Noto Sans KR", sans-serif;
    font-size: 18px;
    font-weight: 700;
  }

  .all-menu-mobile-toggle svg {
    width: 18px;
    height: 18px;
    color: #8b98aa;
    transition: transform .22s ease, color .22s ease;
  }

  .all-menu-sections {
    display: none;
    gap: 18px;
    padding: 4px 36px 25px;
    background: #f7f9fc;
  }

  .all-menu-grid article.is-open .all-menu-mobile-toggle {
    color: #31558f;
  }

  .all-menu-grid article.is-open .all-menu-mobile-toggle svg {
    color: var(--blue);
    transform: rotate(180deg);
  }

  .all-menu-grid article.is-open .all-menu-sections {
    display: grid;
    animation: allMenuMobileOpen .24s ease both;
  }

  .all-menu-sections h4 {
    margin-bottom: 8px;
  }

  .all-menu-sections h4 a {
    font-size: 14px;
  }

  .all-menu-sections li a {
    font-size: 13px;
  }
}

@keyframes allMenuMobileOpen {
  from {
    opacity: 0;
    transform: translateY(-7px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Subpage section navigation */
.park-sub-tabs {
  overflow: visible;
}

.park-sub-tabs > .park-section-tab {
  display: flex;
  align-items: center;
  min-height: 72px;
}

.park-section-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 32px;
  margin-left: 2px;
  padding: 0;
  color: rgba(255, 255, 255, .72);
  background: transparent;
  border: 0;
  border-radius: 0;
  transition: color .15s ease;
}

.park-section-toggle svg {
  width: 15px;
  height: 15px;
  stroke-width: 2;
  transition: transform .16s ease;
}

.park-section-tab:hover > .park-section-toggle,
.park-section-tab:focus-within > .park-section-toggle,
.park-sub-tabs.is-open .park-section-toggle {
  color: #f3a51a;
}

.park-section-tab:hover > .park-section-toggle svg,
.park-section-tab:focus-within > .park-section-toggle svg,
.park-sub-tabs.is-open .park-section-toggle svg {
  transform: rotate(180deg);
}

.park-section-mega-wrap {
  position: absolute;
  left: 58px;
  top: calc(100% - 4px);
  z-index: 120;
  width: min(820px, calc(100vw - 180px));
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--ink);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity .15s ease, transform .15s ease, visibility 0s linear .15s;
}

.park-section-tab:hover ~ .park-section-mega-wrap,
.park-section-tab:focus-within ~ .park-section-mega-wrap,
.park-section-mega-wrap:hover,
.park-sub-tabs:focus-within > .park-section-mega-wrap,
.park-sub-tabs.is-open > .park-section-mega-wrap {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}

.park-section-mega {
  display: grid;
  grid-template-columns: repeat(var(--park-section-count), minmax(0, 1fr));
  gap: 0;
  padding: 20px 22px;
  background: #fff;
  border: 1px solid #dde5ef;
  border-top: 3px solid #f3a51a;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 10px 24px rgba(9, 17, 28, .09);
}

.park-section-mega-group {
  min-width: 0;
  padding: 0 20px;
  border-left: 1px solid #e6ebf2;
}

.park-section-mega-group:first-child {
  padding-left: 0;
  border-left: 0;
}

.park-section-mega-group:last-child {
  padding-right: 0;
}

.park-sub-tabs .park-section-mega-title {
  display: flex;
  align-items: center;
  min-height: 32px;
  margin-bottom: 6px;
  padding: 0 8px;
  color: #172235;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  white-space: normal;
}

.park-sub-tabs .park-section-mega a::before {
  display: none;
}

.park-section-mega-group.is-current .park-section-mega-title {
  color: #31558f;
}

.park-section-mega-group > div {
  display: grid;
  gap: 1px;
}

.park-sub-tabs .park-section-mega-group > div a {
  display: flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 8px;
  color: #657082;
  background: transparent;
  border: 0;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  white-space: normal;
  transition: color .14s ease, background-color .14s ease;
}

.park-sub-tabs .park-section-mega-group > div a:hover,
.park-sub-tabs .park-section-mega-group > div a:focus-visible,
.park-sub-tabs .park-section-mega-group > div a.is-active {
  color: #31558f;
  background: #f2f6fb;
}

@media (max-width: 720px) {
  .park-sub-tabs > .park-section-tab {
    min-height: 58px;
  }

  .park-section-toggle {
    width: 26px;
    height: 34px;
  }

  .park-section-mega-wrap {
    left: 0;
    right: 0;
    top: 100%;
    width: 100%;
    transform: translateY(6px);
  }

  .park-section-tab:hover ~ .park-section-mega-wrap,
  .park-section-tab:focus-within ~ .park-section-mega-wrap,
  .park-section-mega-wrap:hover,
  .park-sub-tabs:focus-within > .park-section-mega-wrap,
  .park-sub-tabs.is-open > .park-section-mega-wrap {
    transform: translateY(0);
  }

  .park-section-mega {
    grid-template-columns: 1fr;
    max-height: min(62vh, 520px);
    padding: 14px 16px;
    overflow-y: auto;
  }

  .park-section-mega-group,
  .park-section-mega-group:first-child,
  .park-section-mega-group:last-child {
    padding: 10px 0;
    border-top: 1px solid #e6ebf2;
    border-left: 0;
  }

  .park-section-mega-group:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .park-sub-tabs .park-section-mega-title {
    margin-bottom: 2px;
  }
}

/* Rehabilitation center introduction */
.rehab-center-content {
  margin-top: clamp(68px, 7vw, 112px);
}

.rehab-center-lead {
  position: relative;
  height: clamp(540px, 45vw, 650px);
  margin-bottom: 0;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  background: #e8eef4;
}

.rehab-center-lead-copy {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: clamp(42px, 6vw, 86px);
  width: min(590px, 50%);
  transform: translateY(-50%);
}

.rehab-center-lead-copy > span,
.rehab-center-section-head > div > span {
  display: block;
  margin-bottom: 16px;
  color: #5f84d6;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .08em;
}

.rehab-center-lead-copy > span {
  color: #d9e7ff;
}

.rehab-center-lead-copy h3 {
  margin: 0 0 30px;
  color: #fff;
  font-size: clamp(42px, 3.7vw, 64px);
  font-weight: 750;
  line-height: 1.2;
  word-break: keep-all;
}

.rehab-center-lead-copy p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, .88);
  font-size: 17px;
  line-height: 1.85;
  word-break: keep-all;
}

.rehab-center-lead-visual {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  margin: 0;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  background: #edf1f5;
}

.rehab-center-lead-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 37, 65, .9) 0%, rgba(20, 48, 82, .7) 38%, rgba(20, 48, 82, .18) 70%, rgba(20, 48, 82, .04) 100%);
}

.rehab-center-lead-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center 46%;
  transition: transform .7s cubic-bezier(.22, 1, .36, 1);
}

.rehab-center-lead-visual:hover img {
  transform: scale(1.025);
}

/* 관리자 전용 본문 이미지 인라인 교체 */
.medipium-inline-image-host {
  position: relative;
}

/* 메인 화면의 관리형 이미지는 기존 섹션/카드 레이아웃을 그대로 유지한다. */
.section-bg.medipium-inline-image-host {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.section-bg.medipium-inline-image-host > .medipium-inline-picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.section-bg.medipium-inline-image-host > .medipium-inline-picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-tile > .medipium-inline-picture {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  overflow: hidden;
}

.program-tile > .medipium-inline-picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card > .medipium-inline-picture {
  display: block;
  flex: 0 0 150px;
  width: 100%;
  height: 150px;
  overflow: hidden;
}

.news-card > .medipium-inline-picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 1181px) and (max-height: 980px) {
  .news-card > .medipium-inline-picture {
    flex-basis: 128px;
    height: 128px;
  }
}

@media (max-width: 720px) {
  .news-card > .medipium-inline-picture {
    order: -1;
    flex-basis: 86px;
    height: 86px;
  }
}

.mission-closing-visual .mission-closing-media.medipium-inline-image-host {
  position: absolute;
}

.medipium-inline-image-host > img {
  display: block;
}

.medipium-inline-image-placeholder {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 142px;
  min-height: 44px;
  padding: 0 20px;
  color: #667085;
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  font-size: 14px;
  font-weight: 750;
}

.medipium-inline-image-edit {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 34px;
  padding: 0 11px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 4px;
  background: rgba(31, 61, 108, .9);
  box-shadow: 0 7px 20px rgba(18, 34, 61, .2);
  backdrop-filter: blur(5px);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0;
  cursor: pointer;
  transition: background .18s ease, transform .18s ease;
}

.medipium-inline-image-edit:hover {
  background: #5f84d6;
  transform: translateY(-1px);
}

.medipium-inline-image-edit svg {
  width: 15px;
  height: 15px;
  stroke-width: 2;
}

.medipium-inline-image-edit > span {
  display: inline !important;
  align-self: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  color: inherit !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  font: inherit !important;
  letter-spacing: 0 !important;
}

.medipium-inline-image-manager {
  position: fixed;
  inset: 0;
  z-index: 12050;
  visibility: hidden;
  opacity: 0;
  transition: opacity .2s ease, visibility .2s ease;
}

.medipium-inline-image-manager.is-open {
  visibility: visible;
  opacity: 1;
}

.medipium-inline-image-manager-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: rgba(13, 23, 38, .64);
  backdrop-filter: blur(4px);
  cursor: default;
}

.medipium-inline-image-manager-panel {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(760px, calc(100vw - 40px));
  height: min(760px, calc(100vh - 40px));
  overflow: hidden;
  border-radius: 8px;
  background: #f5f7fa;
  box-shadow: 0 30px 80px rgba(12, 24, 44, .28);
  transform: translate(-50%, -48%);
  transition: transform .25s cubic-bezier(.22, 1, .36, 1);
}

.medipium-inline-image-manager.is-open .medipium-inline-image-manager-panel {
  transform: translate(-50%, -50%);
}

.medipium-inline-image-manager-panel > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  padding: 0 24px;
  border-bottom: 1px solid #dce4ee;
  background: #fff;
}

.medipium-inline-image-manager-panel > header span {
  display: block;
  margin-bottom: 3px;
  color: #5f84d6;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
}

.medipium-inline-image-manager-panel > header h2 {
  margin: 0;
  color: #172033;
  font-size: 20px;
  letter-spacing: 0;
}

.medipium-inline-image-manager-panel > header button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  color: #26344a;
  border: 0;
  border-radius: 50%;
  background: #eef3f9;
  cursor: pointer;
}

.medipium-inline-image-manager-panel > header svg {
  width: 19px;
  height: 19px;
}

.medipium-inline-image-manager-panel iframe {
  display: block;
  width: 100%;
  height: calc(100% - 74px);
  border: 0;
  background: #f5f7fa;
}

@media (max-width: 720px) {
  .medipium-inline-image-edit {
    top: 8px;
    right: 8px;
    min-height: 32px;
    padding: 0 9px;
  }

  .medipium-inline-image-edit > span {
    display: none !important;
  }

  .medipium-inline-image-manager-panel {
    width: calc(100vw - 20px);
    height: calc(100vh - 20px);
  }
}

.rehab-center-lead-visual figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: grid;
  min-width: 240px;
  padding: 22px 26px;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, .35);
  border-left: 1px solid rgba(255, 255, 255, .35);
  background: rgba(49, 85, 143, .78);
  backdrop-filter: blur(8px);
}

.rehab-center-lead-visual figcaption b {
  font-size: 17px;
}

.rehab-center-lead-visual figcaption span {
  margin-top: 5px;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .08em;
  opacity: .72;
}

.rehab-center-principles {
  position: relative;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 0;
  padding: clamp(54px, 5vw, 76px) 0;
}

.rehab-center-principles::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: #f2f6fb;
}

.rehab-center-principles > div {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 0 clamp(22px, 3vw, 48px);
  border-left: 1px solid #d9e2ee;
}

.rehab-center-principles > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.rehab-center-principles > div:last-child {
  padding-right: 0;
}

.rehab-center-principles span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: #5f84d6;
  border: 1px solid #c9d8ee;
  background: rgba(255, 255, 255, .72);
}

.rehab-center-principles svg {
  width: 25px;
  height: 25px;
  stroke-width: 1.7;
}

.rehab-center-principles p {
  margin: 0;
  color: #344154;
  font-size: 16px;
  line-height: 1.75;
  word-break: keep-all;
}

.rehab-center-gallery {
  position: relative;
  z-index: 0;
  margin-bottom: 0;
  padding: 0 0 clamp(90px, 8vw, 132px);
}

.rehab-center-gallery::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: #f7f8fa;
}

.rehab-center-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.rehab-center-section-head h3 {
  margin: 0;
  color: #172033;
  font-size: clamp(31px, 2.6vw, 44px);
  font-weight: 750;
  letter-spacing: 0;
}

.rehab-center-space-slider .department-test-stage {
  min-height: clamp(440px, 36vw, 620px);
  background: #e7ebf0;
}

.department-test-slider.rehab-center-space-slider {
  display: block;
}

.department-test-nav.rehab-center-space-index {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  border-top: 0;
  border-bottom: 1px solid #d9e0e8;
  background: #fff;
  scrollbar-width: thin;
  scrollbar-color: #aebbd0 transparent;
}

.department-test-nav.rehab-center-space-index button {
  flex: 0 0 auto;
  grid-template-columns: 34px auto;
  gap: 8px;
  width: auto;
  min-width: 190px;
  min-height: 72px;
  padding: 14px 20px;
  border-right: 1px solid #dce3eb;
  border-bottom: 0;
}

.department-test-nav.rehab-center-space-index button::before {
  top: auto;
  right: 0;
  bottom: 0;
  width: auto;
  height: 3px;
  transform: scaleX(0);
}

.department-test-nav.rehab-center-space-index button.is-active {
  padding-left: 20px;
  background: #f7f9fc;
}

.department-test-nav.rehab-center-space-index button.is-active::before {
  transform: scaleX(1);
}

.rehab-center-links {
  margin: clamp(96px, 9vw, 148px) 0 clamp(80px, 8vw, 126px);
}

.rehab-center-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.rehab-center-link-card {
  position: relative;
  display: block;
  overflow: hidden;
  color: #172033;
  background: #fff;
  border: 1px solid #dce3eb;
  border-radius: 3px;
  transition: border-color .2s ease, transform .2s ease;
}

.rehab-center-link-card:hover,
.rehab-center-link-card:focus-visible {
  color: #172033;
  border-color: #5f84d6;
  transform: translateY(-4px);
}

.rehab-center-link-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #edf1f5;
}

.rehab-center-link-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s cubic-bezier(.22, 1, .36, 1);
}

.rehab-center-link-card:hover .rehab-center-link-image img,
.rehab-center-link-card:focus-visible .rehab-center-link-image img {
  transform: scale(1.04);
}

.rehab-center-link-image > b {
  display: grid;
  place-items: center;
  height: 100%;
  color: #8390a3;
  font-size: 14px;
}

.rehab-center-link-copy {
  position: relative;
  display: grid;
  min-height: 128px;
  align-content: center;
  padding: 22px 48px 22px 22px;
}

.rehab-center-link-copy small {
  margin-bottom: 8px;
  color: #6c7788;
  font-size: 13px;
  line-height: 1.5;
  word-break: keep-all;
}

.rehab-center-link-copy strong {
  font-size: 20px;
  font-weight: 750;
}

.rehab-center-link-copy svg {
  position: absolute;
  right: 20px;
  bottom: 24px;
  width: 20px;
  height: 20px;
  color: #5f84d6;
  transition: transform .2s ease;
}

.rehab-center-link-card:hover .rehab-center-link-copy svg,
.rehab-center-link-card:focus-visible .rehab-center-link-copy svg {
  transform: translate(2px, -2px);
}

@media (max-width: 1024px) {
  .rehab-center-lead {
    height: 560px;
  }

  .rehab-center-lead-copy {
    left: 42px;
    width: 58%;
  }

  .rehab-center-principles {
    gap: 26px;
  }

  .rehab-center-principles > div {
    grid-template-columns: 1fr;
    padding: 0 22px;
  }

  .rehab-center-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .rehab-center-content {
    margin-top: 54px;
  }

  .rehab-center-lead {
    display: flex;
    height: auto;
    min-height: 0;
    overflow: visible;
    border-radius: 10px 10px 0 0;
    background: #fff;
    margin-bottom: 68px;
    flex-direction: column-reverse;
  }

  .rehab-center-lead-copy {
    position: static;
    z-index: auto;
    width: auto;
    padding: 30px 0 0;
    transform: none;
  }

  .rehab-center-lead-copy > span {
    color: #5f84d6;
  }

  .rehab-center-lead-copy h3 {
    margin-bottom: 22px;
    color: #172033;
    font-size: 34px;
  }

  .rehab-center-lead-copy p {
    color: #4f5b6d;
    font-size: 15px;
  }

  .rehab-center-lead-visual {
    min-height: 0;
    aspect-ratio: 4 / 3;
    border-radius: 10px 10px 0 0;
  }

  .rehab-center-lead-visual::after {
    background: linear-gradient(to bottom, transparent 55%, rgba(20, 48, 82, .25));
  }

  .rehab-center-lead-visual figcaption {
    min-width: 205px;
    padding: 16px 18px;
  }

  .rehab-center-principles {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0;
    padding: 30px 0;
  }

  .rehab-center-principles > div,
  .rehab-center-principles > div:first-child,
  .rehab-center-principles > div:last-child {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 15px;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid #d9e2ee;
    border-left: 0;
  }

  .rehab-center-principles > div:first-child {
    border-top: 0;
  }

  .rehab-center-principles span {
    width: 44px;
    height: 44px;
  }

  .rehab-center-principles p {
    font-size: 14px;
  }

  .rehab-center-gallery {
    padding: 0 0 76px;
  }

  .rehab-center-section-head {
    align-items: flex-start;
    margin-bottom: 24px;
  }

  .rehab-center-section-head h3 {
    font-size: 30px;
  }

  .department-test-admin-link {
    flex: 0 0 auto;
  }

  .rehab-center-space-slider .department-test-stage {
    min-height: 350px;
  }

  .department-test-nav.rehab-center-space-index button {
    min-width: 165px;
    min-height: 64px;
  }

  .rehab-center-links {
    margin: 72px 0 80px;
  }

  .rehab-center-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .rehab-center-link-copy {
    min-height: 112px;
    padding: 16px 34px 16px 14px;
  }

  .rehab-center-link-copy small {
    display: -webkit-box;
    overflow: hidden;
    font-size: 11px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .rehab-center-link-copy strong {
    font-size: 15px;
    line-height: 1.4;
  }

  .rehab-center-link-copy svg {
    right: 12px;
    bottom: 18px;
    width: 17px;
    height: 17px;
  }
}

/* Main mobile layout: compact section rhythm and touch-friendly carousels. */
.is-main .hero-slider,
.is-main .program-viewport {
  touch-action: pan-y;
}

@media (max-width: 720px) {
  .is-main .hero-section {
    width: 100%;
    height: clamp(560px, 82svh, 690px);
    min-height: clamp(560px, 82svh, 690px);
  }

  .is-main .hero-section .hero-grid {
    display: flex;
    align-items: flex-start;
    width: min(calc(100% - 32px), 560px);
    height: 100%;
    min-height: 0;
    padding: 104px 0 62px;
  }

  .is-main .hero-copy {
    width: 100%;
    margin-top: clamp(18px, 4svh, 34px);
  }

  .is-main .hero-copy .pill {
    min-height: 42px;
    padding: 0 22px;
    font-size: 14px;
  }

  .is-main .hero-copy h1 {
    margin: 20px 0 14px;
    font-size: clamp(33px, 9vw, 43px);
    line-height: 1.14;
  }

  .is-main .hero-copy p {
    max-width: 94%;
    font-size: 15px;
    line-height: 1.55;
  }

  .is-main .hero-controls {
    bottom: 16px;
    padding: 7px 9px;
  }

  .is-main .hero-progress button {
    min-width: 34px;
    height: 28px;
    font-size: 11px;
  }

  .is-main .snap-section:not(.hero-section) {
    min-height: auto;
    scroll-snap-stop: normal;
  }

  .is-main .snap-section:not(.hero-section) .section-inner {
    min-height: auto;
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .is-main .program-section .section-inner,
  .is-main .newsroom-section .section-inner {
    gap: 26px;
  }

  .is-main .section-title h2 {
    margin: 16px 0 13px;
    font-size: clamp(32px, 9vw, 39px);
    line-height: 1.14;
  }

  .is-main .section-title p {
    font-size: 15px;
    line-height: 1.58;
  }

  .is-main .eyebrow {
    min-height: 40px;
    padding: 0 20px;
    font-size: 13px;
  }

  .is-main .program-carousel {
    gap: 14px;
  }

  .is-main .program-dots {
    margin-top: 2px;
  }

  .is-main .center-layout,
  .is-main .contact-layout,
  .is-main .notice-layout {
    gap: 26px;
  }

  .is-main .center-list {
    gap: 10px;
  }

  .is-main .center-list a {
    min-height: 96px;
    padding: 18px;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 4px 14px;
  }

  .is-main .center-list span {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .is-main .center-list b {
    font-size: 20px;
  }

  .is-main .center-list em {
    font-size: 13px;
  }

  .is-main .notice-board {
    gap: 12px;
    padding: 12px;
  }
}

/* Mobile header and notice section: keep the first viewport quiet and scannable. */
@media (max-width: 720px) {
  .family-bar {
    display: none;
  }

  .stage-header {
    top: 0;
  }

  .is-main .notice-section .section-inner {
    gap: 20px;
    padding-top: 56px;
    padding-bottom: 76px;
  }

  .is-main .notice-section .section-title h2 {
    margin-top: 12px;
    margin-bottom: 0;
    font-size: 32px;
  }

  .is-main .notice-section .section-title p {
    display: none;
  }

  .is-main .notice-board {
    width: 100%;
    gap: 9px;
    padding: 10px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
  }

  .is-main .notice-tabs {
    gap: 3px;
    padding: 4px;
    border-radius: 6px;
  }

  .is-main .notice-tabs button {
    height: 40px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 800;
  }

  .is-main .notice-pane.is-active {
    gap: 8px;
  }

  .is-main .notice-feature {
    display: grid;
    min-height: 0;
    padding: 19px 18px 17px;
    border-radius: 6px;
  }

  .is-main .notice-feature span {
    padding: 5px 9px;
    font-size: 10px;
  }

  .is-main .notice-feature strong {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 14px;
    font-size: 20px;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .is-main .notice-feature p {
    display: none;
  }

  .is-main .notice-feature em {
    margin-top: 12px;
    font-size: 11px;
  }

  .is-main .notice-list {
    gap: 0;
  }

  .is-main .notice-list a {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    min-height: 52px;
    padding: 0 14px;
    border-width: 0 0 1px;
    border-radius: 0;
    background: rgba(255, 255, 255, .07);
  }

  .is-main .notice-list a:nth-child(n + 3) {
    display: none;
  }

  .is-main .notice-list span {
    display: none;
  }

  .is-main .notice-list b {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 700;
  }

  .is-main .notice-list em {
    font-size: 10px;
  }

  .is-main .notice-more {
    min-height: 42px;
    margin-top: 1px;
    border-radius: 5px;
    font-size: 13px;
  }

  .is-main .notice-feature:hover,
  .is-main .notice-list a:hover,
  .is-main .notice-more:hover {
    transform: none;
  }
}
.special-treatment-section {
  padding-top: clamp(72px, 7vw, 112px);
}

.special-treatment-heading {
  width: min(100%, 760px);
  margin: 0 auto clamp(48px, 5vw, 76px);
  text-align: center;
}

.special-treatment-heading > span {
  display: block;
  margin-bottom: 14px;
  color: #5f87d8;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

.special-treatment-heading h3 {
  margin: 0;
  color: #111c2d;
  font-size: clamp(34px, 3vw, 52px);
  line-height: 1.18;
}

.special-treatment-heading p {
  margin: 18px 0 0;
  color: #647083;
  font-size: 17px;
  line-height: 1.75;
}

.special-treatment-list {
  display: grid;
  gap: clamp(64px, 7vw, 110px);
}

.special-treatment-list .therapy-detail {
  width: 100%;
}

@media (max-width: 767px) {
  .special-treatment-section {
    padding-top: 56px;
  }

  .special-treatment-heading {
    margin-bottom: 40px;
    text-align: left;
  }

  .special-treatment-heading h3 {
    font-size: 32px;
  }

  .special-treatment-heading p {
    font-size: 15px;
  }

  .special-treatment-list {
    gap: 52px;
  }
}
