/* guide/ — 환자 안내서 저널 스타일 */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-guide {
  font-feature-settings: "tnum" 1, "kern" 1;
}

.page-guide .page-wrap--journal {
  max-width: 75rem;
}

.guide-location-split {
  display: grid;
  gap: 2rem;
  margin-top: clamp(2.5rem, 5vw, 5rem);
}

@media (min-width: 992px) {
  .guide-location-split {
    grid-template-columns: 1.12fr 0.88fr;
    gap: 2.5rem;
    align-items: stretch;
  }

  .guide-location-map {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .guide-location-map-card {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .guide-location-map-embed {
    flex: 1;
  }

  .guide-location-info {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
}

.guide-location-map-card {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  background: #ffffff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.guide-location-map-embed {
  position: relative;
  width: 100%;
  min-height: 420px;
  overflow: hidden;
}

.guide-location-map-iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.guide-location-apps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.625rem;
  margin-top: 1rem;
}

@media (max-width: 639px) {
  .guide-location-apps {
    grid-template-columns: 1fr;
  }
}

.guide-location-app-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.625rem 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  text-align: center;
  text-decoration: none;
  color: var(--tp-text-muted);
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  transition: var(--accent-transition);
}

.page-wrap .guide-location-apps a.guide-location-app-btn,
.page-wrap .guide-location-apps a.guide-location-app-btn:link,
.page-wrap .guide-location-apps a.guide-location-app-btn:visited {
  color: var(--tp-text-muted);
  text-decoration: none;
}

.page-wrap .guide-location-apps a.guide-location-app-btn:hover,
.page-wrap .guide-location-apps a.guide-location-app-btn:focus,
.page-wrap .guide-location-apps a.guide-location-app-btn:focus-visible {
  color: #ffffff !important;
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.guide-location-info {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.guide-location-info__name {
  margin: 0 0 1.25rem;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--primary-color);
}

.guide-location-info__row {
  display: grid;
  grid-template-columns: 4.25rem 1fr;
  gap: 0.75rem 1rem;
  margin: 0 0 1rem;
  font-size: 0.875rem;
  line-height: 1.65;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.guide-location-info__row:last-of-type {
  margin-bottom: 0;
}

.guide-location-info__label {
  font-weight: 700;
  color: var(--primary-color);
}

.guide-location-info__value {
  color: var(--tp-text-muted);
}

.guide-location-info__value a {
  font-weight: 600;
  color: var(--accent-color);
}

.guide-location-info__value a:hover {
  color: var(--tp-accent-dark);
}

.guide-location-hours {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.guide-location-hours__title {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--primary-color);
}

.guide-location-hours__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.875rem;
}

.guide-location-hours__item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
  letter-spacing: -0.02em;
  color: var(--tp-text-muted);
}

.guide-location-hours__day-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  min-width: 0;
}

.guide-location-hours__day {
  font-weight: 600;
  color: var(--primary-color);
  white-space: nowrap;
}

.guide-location-hours__time {
  text-align: right;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.guide-location-hours__time .guide-location-hours__badge {
  display: inline-flex;
  align-items: center;
}

.guide-location-hours__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.55rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  border-radius: 4px;
  white-space: nowrap;
}

.guide-location-hours__badge--night {
  color: var(--accent-color);
  background: var(--tp-accent-light);
}

.guide-location-hours__badge--saturday {
  color: #5c4a2e;
  background: #faf6ef;
}

.guide-location-hours__badge--closed {
  color: #8b4a4a;
  background: #fdf4f4;
}

.guide-location-access {
  margin-top: clamp(3rem, 6vw, 4.5rem);
}

.guide-location-access__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--primary-color);
}

.guide-location-access__intro {
  max-width: 680px;
  margin: 0 auto clamp(1.5rem, 3vw, 2rem);
  font-size: 16px;
  line-height: 1.85;
  text-align: center;
  color: #555;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.guide-location-access__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  width: 100%;
  max-width: 1040px;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .guide-location-access__grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    gap: 1.25rem;
  }
}

.guide-location-access-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.guide-location-access-card__title {
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--primary-color);
  border-bottom: 1px solid var(--border-color);
}

.traffic-card-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.traffic-card-icon {
  font-size: 17px;
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.88;
}

.guide-location-access-card p,
.guide-location-access-card dd {
  margin: 0 0 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.75;
  letter-spacing: -0.02em;
  word-break: keep-all;
  overflow-wrap: break-word;
  color: var(--tp-text-muted);
}

.guide-location-access-card p:last-child,
.guide-location-access-card dd:last-child {
  margin-bottom: 0;
}

.guide-location-access-card dl {
  margin: 0;
}

.guide-location-access-card dt {
  margin: 0.875rem 0 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--primary-color);
}

.guide-location-access-card dt:first-child {
  margin-top: 0;
}

.guide-location-bus-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
}

.guide-location-bus-chips + .guide-location-bus-chips {
  margin-top: 0.5rem;
}

.guide-location-bus-chips li {
  padding: 0.3rem 0.6rem;
  font-size: 0.8125rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  line-height: 1.4;
  color: var(--tp-text-muted);
  background: var(--tp-muted-bg);
  border: 1px solid var(--border-color);
  border-radius: 6px;
}

.guide-location-bus-chips--express li {
  color: var(--accent-color);
  background: var(--tp-accent-light);
  border-color: rgba(26, 43, 76, 0.12);
}

.guide-location-reserve {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-color);
  font-size: 0.75rem;
  line-height: 1.6;
  letter-spacing: -0.02em;
  color: #9a9a9a;
}

.guide-location-reserve a {
  font-weight: 600;
}

/* ── Location page hero & sections ── */
.location-hero-description {
  margin: 0;
  max-width: 1040px;
  font-size: 17px;
  line-height: 1.85;
  color: #555;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.location-hero-description span {
  display: block;
}

@media (min-width: 1024px) {
  .location-hero-description span {
    white-space: nowrap;
  }
}

.page-hero:has(.location-hero-description) {
  padding-bottom: 0;
}

.location-reservation {
  max-width: 1040px;
  margin: clamp(3rem, 6vw, 4.5rem) auto 0;
  padding: 0 24px;
}

.location-reservation__intro {
  max-width: 680px;
  margin: 0 0 clamp(1.5rem, 3vw, 2rem);
  font-size: 16px;
  line-height: 1.85;
  color: #555;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.location-reservation__cards {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .location-reservation__cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.location-reservation-card {
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.location-reservation-card__num {
  margin: 0 0 1rem;
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: rgba(0, 0, 0, 0.12);
}

.location-reservation-card__title {
  margin: 0 0 0.875rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--primary-color);
}

.location-reservation-card__text {
  margin: 0 0 1.25rem;
  flex: 1;
  max-width: none;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--tp-text-muted);
  word-break: keep-all;
  overflow-wrap: break-word;
}

.location-reservation-card__btn {
  align-self: flex-start;
  margin-top: auto;
}

.location-reservation-card__contact {
  margin-top: auto;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--accent-color);
  text-decoration: none;
}

.location-reservation-card__contact:hover {
  color: var(--tp-accent-dark);
  text-decoration: underline;
}

.location-visit-notes {
  margin-top: clamp(3rem, 6vw, 4.5rem);
}

.location-visit-list {
  list-style: none;
  max-width: 1000px;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.location-visit-list li {
  position: relative;
  margin: 0;
  padding-left: 18px;
  font-size: 14.5px;
  line-height: 1.8;
  color: #555;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.location-visit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
}

.guide-location-cta {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.page-guide .primary-menu__sublink.is-active {
  color: var(--accent-color);
  font-weight: 600;
}

/* ── Interior gallery ── */
.interior-hero-description {
  margin: 0;
  max-width: 1040px;
  font-size: 17px;
  line-height: 1.85;
  color: #555;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.interior-hero-description span {
  display: block;
}

@media (min-width: 1024px) {
  .interior-hero-description span {
    white-space: nowrap;
  }
}

.page-hero:has(.interior-hero-description) {
  padding-bottom: 0;
}

.interior-slide {
  margin-top: clamp(2rem, 4vw, 3rem);
  max-width: 1080px;
}

.interior-slide__timeline-wrap {
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.interior-slide__timeline {
  min-width: min(100%, 42rem);
}

.interior-slide__track {
  position: relative;
  padding: 0.75rem 0 0.25rem;
}

.interior-slide__line {
  position: absolute;
  top: 1.05rem;
  left: 0.75rem;
  right: 0.75rem;
  height: 1px;
  background: rgba(0, 0, 0, 0.12);
  pointer-events: none;
}

.interior-slide__nav {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: max(100%, 38rem);
}

.interior-slide__nav-item {
  flex: 1 1 0;
  min-width: 0;
}

.interior-slide__nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  width: 100%;
  padding: 0 0.25rem;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: #9a9a9a;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: color 0.25s ease;
}

.interior-slide__dot {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d0d0d0;
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.interior-slide__label {
  display: block;
  max-width: 100%;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.interior-slide__nav-btn:hover,
.interior-slide__nav-btn:focus-visible {
  color: var(--primary-color);
  outline: none;
}

.interior-slide__nav-btn:hover .interior-slide__dot,
.interior-slide__nav-btn:focus-visible .interior-slide__dot {
  background: #a8a8a8;
}

.interior-slide__nav-btn.is-active {
  color: var(--primary-color);
  font-weight: 700;
}

.interior-slide__nav-btn.is-active .interior-slide__dot {
  width: 9px;
  height: 9px;
  background: var(--accent-color);
  box-shadow: 0 0 0 1px rgba(26, 43, 76, 0.15);
}

.interior-slide__nav-btn:focus-visible .interior-slide__dot {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

.interior-slide__stage {
  position: relative;
}

.interior-slide__media {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 15rem;
  background: #f3f3f1;
  border: 1px solid var(--border-color);
  border-radius: 24px;
  overflow: hidden;
  transition: opacity 0.6s ease;
}

.interior-slide__media.is-changing {
  opacity: 0.72;
}

.interior-slide__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.interior-slide__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-align: center;
  color: #8f8f8f;
}

.interior-slide__media-dots {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.interior-slide__media-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
}

.interior-slide__media-dot.is-active {
  width: 8px;
  height: 8px;
  background: #ffffff;
}

.interior-slide__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-top: -1.25rem;
  padding: 0;
  color: var(--primary-color);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.interior-slide__arrow svg {
  width: 1.125rem;
  height: 1.125rem;
}

.interior-slide__arrow--prev {
  left: 1rem;
}

.interior-slide__arrow--next {
  right: 1rem;
}

.interior-slide__arrow:hover,
.interior-slide__arrow:focus-visible {
  color: #ffffff;
  background: var(--accent-color);
  border-color: var(--accent-color);
  outline: none;
}

.interior-slide__content {
  margin-top: 1.25rem;
  padding: clamp(1.25rem, 3vw, 1.75rem) 0 0;
  transition: opacity 0.6s ease;
}

.interior-slide__content.is-changing {
  opacity: 0.72;
}

.interior-slide__num {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent-color);
}

.interior-slide__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.125rem, 2.2vw, 1.375rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--primary-color);
}

.interior-slide__desc {
  margin: 0;
  max-width: 42rem;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--tp-text-muted);
  word-break: keep-all;
  overflow-wrap: break-word;
}

@media (max-width: 767px) {
  .interior-slide__timeline {
    min-width: 100%;
  }

  .interior-slide__nav {
    justify-content: flex-start;
    gap: 1.25rem;
    min-width: max(100%, 44rem);
    padding: 0 0.25rem;
  }

  .interior-slide__nav-item {
    flex: 0 0 auto;
    min-width: 4.5rem;
  }

  .interior-slide__line {
    left: 1rem;
    right: 1rem;
  }

  .interior-slide__arrow {
    width: 2.25rem;
    height: 2.25rem;
    margin-top: -1.125rem;
  }

  .interior-slide__arrow--prev {
    left: 0.75rem;
  }

  .interior-slide__arrow--next {
    right: 0.75rem;
  }
}

.guide-interior-cta {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.page-guide--interior {
  background: #ffffff;
  color: #111111;
}

/* ── Pricing page ── */
.page-guide--pricing {
  background: #ffffff;
  color: #111111;
}

.pricing-hero-description {
  max-width: 1080px;
  margin: 28px 0 0;
  font-size: 17px;
  line-height: 1.85;
  color: #555;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.pricing-hero-description span {
  display: block;
}

@media (min-width: 1024px) {
  .pricing-hero-description span {
    white-space: nowrap;
  }
}

.page-hero:has(.pricing-hero-description) {
  padding-bottom: 0;
}

.pricing-principles {
  max-width: 1040px;
  margin: 72px auto 88px;
  padding: 0 24px;
}

.pricing-principle-item {
  display: grid;
  grid-template-columns: 120px 1fr 180px;
  column-gap: 48px;
  align-items: start;
  padding: 56px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.pricing-principle-item:first-child {
  border-top: none;
}

.pricing-principle-number {
  font-size: 60px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: rgba(0, 0, 0, 0.12);
  white-space: nowrap;
}

.pricing-principle-content {
  max-width: 680px;
}

.pricing-principle-content h2 {
  margin: 0 0 20px;
  font-size: 26px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #111;
}

.pricing-principle-content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.85;
  color: #555;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.pricing-principle-link {
  justify-self: end;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #111;
  text-decoration: none;
  white-space: nowrap;
}

.pricing-principle-link:hover {
  text-decoration: underline;
}

.guide-pricing-section__title {
  margin: 0 0 1rem;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--primary-color);
}

.guide-pricing-section__desc {
  margin: 0 0 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--tp-text-muted);
  word-break: keep-all;
}

.guide-pricing-table-section {
  margin-top: clamp(3rem, 6vw, 4.5rem);
}

.guide-pricing-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.guide-pricing-tab {
  padding: 0.5rem 0.875rem;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--tp-text-muted);
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 999px;
  cursor: pointer;
  transition: var(--accent-transition);
}

.guide-pricing-tab:hover,
.guide-pricing-tab.is-active {
  color: #ffffff;
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.guide-pricing-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.guide-pricing-table {
  width: 100%;
  min-width: 42rem;
  border-collapse: collapse;
}

.guide-pricing-table th,
.guide-pricing-table td {
  padding: 1rem 1.125rem;
  font-size: 0.875rem;
  line-height: 1.6;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--border-color);
  word-break: keep-all;
}

.guide-pricing-table thead th {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--primary-color);
  background: var(--tp-muted-bg);
}

.guide-pricing-table tbody th[scope="row"] {
  font-weight: 600;
  color: var(--primary-color);
  white-space: nowrap;
}

.guide-pricing-table thead th:nth-child(2) {
  min-width: 10rem;
}

.guide-pricing-table tbody td:nth-child(2) {
  font-weight: 600;
  color: var(--accent-color);
  white-space: nowrap;
  min-width: 10rem;
}

.guide-pricing-table-note {
  margin: 0.875rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.7;
  color: var(--tp-text-muted);
  word-break: keep-all;
}

.guide-pricing-certificate-note {
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: #777;
  word-break: keep-all;
}

.record-docs-guide {
  margin-top: 32px;
  width: 100%;
  max-width: none;
  padding: 28px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  background: #fafafa;
}

.record-docs-guide h3 {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #111;
}

.record-docs-guide .record-docs-intro {
  width: 100%;
  max-width: none;
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.9;
  color: #555;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.record-docs-guide .record-docs-intro span {
  display: block;
}

.record-docs-guide .record-docs-emphasis {
  font-weight: 700;
  color: #111;
}

.record-docs-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.record-docs-card {
  padding: 20px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.record-docs-card h4 {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
  color: #111;
}

.record-docs-card ul {
  margin: 0;
  padding-left: 18px;
  color: #555;
  font-size: 14px;
  line-height: 1.8;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.record-docs-guide .record-docs-note {
  width: 100%;
  max-width: none;
  margin: 18px 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: #777;
  word-break: keep-all;
  overflow-wrap: break-word;
  white-space: normal;
}

@media (max-width: 768px) {
  .record-docs-guide {
    padding: 22px;
  }

  .record-docs-guide h3 {
    font-size: 20px;
  }

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

.guide-pricing-table .pricing-group-row td {
  background: #f7f7f5;
  font-weight: 700;
  color: #111;
  font-size: 14px;
  padding: 14px 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.guide-pricing-table .pricing-group-row:first-child td {
  border-top: none;
}

.guide-pricing-table tbody tr:last-child th,
.guide-pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.guide-pricing-note {
  margin-top: clamp(3rem, 6vw, 4.5rem);
}

.guide-pricing-note__grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .guide-pricing-note__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.guide-pricing-note-card {
  padding: 1.5rem;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
}

.guide-pricing-note-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color);
}

.guide-pricing-note-card p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--tp-text-muted);
  word-break: keep-all;
}

.guide-pricing-insurance {
  margin-top: clamp(3rem, 6vw, 4.5rem);
}

.guide-pricing-insurance .insurance-description {
  max-width: 1000px;
  width: 100%;
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.85;
  color: #555;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.guide-pricing-insurance .insurance-note-list {
  list-style: none;
  max-width: 1000px;
  width: 100%;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.guide-pricing-insurance .insurance-note-list li {
  position: relative;
  margin: 0;
  padding-left: 18px;
  font-size: 14.5px;
  line-height: 1.8;
  color: #555;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.guide-pricing-insurance .insurance-note-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
}

.guide-pricing-faq {
  margin-top: clamp(3rem, 6vw, 4.5rem);
}

.guide-pricing-faq__list {
  margin: 0;
}

.guide-pricing-faq__item {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border-color);
}

.guide-pricing-faq__item:first-child {
  padding-top: 0;
}

.guide-pricing-faq__item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.guide-pricing-faq__item dt {
  margin: 0 0 0.625rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color);
}

.guide-pricing-faq__item dd {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--tp-text-muted);
  word-break: keep-all;
}

.guide-pricing-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: clamp(3rem, 6vw, 4.5rem);
  padding: clamp(2rem, 4vw, 2.75rem);
  text-align: center;
  background: #fafafa;
  border: 1px solid var(--border-color);
  border-radius: 16px;
}

.page-wrap .guide-pricing-cta .guide-pricing-cta__text {
  width: 100%;
  max-width: 920px;
  margin: 0 auto 24px;
  font-size: clamp(1.125rem, 2.2vw, 1.375rem);
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--primary-color);
  word-break: keep-all;
  overflow-wrap: break-word;
}

.page-wrap .guide-pricing-cta .guide-pricing-cta__text span {
  display: block;
}

.guide-pricing-cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 920px;
  margin: 28px auto 0;
  gap: 24px;
}

.guide-pricing-cta__secondary {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--tp-text-muted);
  text-decoration: none;
}

.guide-pricing-cta__secondary:hover {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .pricing-principles {
    margin: 64px auto 64px;
    padding: 0 20px;
  }

  .pricing-principle-item {
    display: block;
    padding: 40px 0;
  }

  .pricing-principle-number {
    font-size: 44px;
    margin-bottom: 20px;
  }

  .pricing-principle-content {
    max-width: 100%;
  }

  .pricing-principle-content h2 {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 16px;
  }

  .pricing-principle-content p {
    font-size: 15.5px;
    line-height: 1.8;
  }

  .pricing-principle-link {
    display: inline-block;
    margin-top: 20px;
    font-size: 14px;
  }

  .guide-pricing-cta__actions {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: 100%;
  }

  .page-wrap .guide-pricing-cta .guide-pricing-cta__text {
    max-width: 100%;
  }

  .guide-pricing-cta__actions .btn {
    width: 100%;
    max-width: 20rem;
  }
}

/* Pricing CTA — override .page-wrap a { color: var(--accent-color) } */
.page-wrap .guide-pricing-cta .guide-pricing-cta__actions a.btn.btn--primary,
.page-wrap .guide-pricing-cta .guide-pricing-cta__actions a.btn.btn--primary:link,
.page-wrap .guide-pricing-cta .guide-pricing-cta__actions a.btn.btn--primary:visited,
.page-wrap .guide-pricing-cta .guide-pricing-cta__actions a.btn.btn--primary:hover,
.page-wrap .guide-pricing-cta .guide-pricing-cta__actions a.btn.btn--primary:focus,
.page-wrap .guide-pricing-cta .guide-pricing-cta__actions a.btn.btn--primary:active {
  color: #ffffff !important;
  background-color: #111111;
  border-color: #111111;
  text-decoration: none;
}

.page-wrap .guide-pricing-cta .guide-pricing-cta__actions a.btn.btn--primary:hover,
.page-wrap .guide-pricing-cta .guide-pricing-cta__actions a.btn.btn--primary:focus {
  color: #ffffff !important;
  background-color: #000000;
  border-color: #000000;
}

/* ── Clinic hours page ── */
.page-guide--hours {
  background: #ffffff;
  color: #111111;
}

.hours-hero-description {
  margin: 0;
  max-width: 1040px;
  font-size: 17px;
  line-height: 1.85;
  color: #555;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.hours-hero-description span {
  display: block;
}

@media (min-width: 1024px) {
  .hours-hero-description span {
    white-space: nowrap;
  }
}

.page-hero:has(.hours-hero-description) {
  padding-bottom: 0;
}

.clinic-hours-page__card {
  max-width: 520px;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
}

.clinic-hours-page__notes {
  max-width: 520px;
  margin: clamp(1.5rem, 3vw, 2rem) auto 0;
}

.clinic-hours-note-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.clinic-hours-note-list li {
  position: relative;
  margin: 0;
  padding-left: 18px;
  font-size: 14.5px;
  line-height: 1.8;
  color: #555;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.clinic-hours-note-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
}

.guide-hours-cta {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

/* Location reservation card — primary button white text */
.page-wrap .location-reservation-card a.btn.btn--primary,
.page-wrap .location-reservation-card a.btn.btn--primary:link,
.page-wrap .location-reservation-card a.btn.btn--primary:visited,
.page-wrap .location-reservation-card a.btn.btn--primary:hover,
.page-wrap .location-reservation-card a.btn.btn--primary:focus,
.page-wrap .location-reservation-card a.btn.btn--primary:active {
  color: #ffffff !important;
  background-color: #111111;
  border-color: #111111;
  text-decoration: none;
}

.page-wrap .location-reservation-card a.btn.btn--primary:hover,
.page-wrap .location-reservation-card a.btn.btn--primary:focus {
  color: #ffffff !important;
  background-color: #000000;
  border-color: #000000;
}
