:root {
  --ink: #061716;
  --text: #263836;
  --muted: #637673;
  --line: #d8e4e1;
  --paper: #f8f8f5;
  --white: #ffffff;
  --teal: #1f6f56;
  --teal-dark: #173f33;
  --teal-soft: #edf5ef;
  --warm: #9a8f83;
  --cream: #f2eee8;
  --cyan: #14b5bd;
  --shadow: 0 18px 42px rgba(4, 35, 34, 0.1);
  --radius: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: "Pretendard", "Apple SD Gothic Neo", "Noto Sans KR", system-ui, sans-serif;
  letter-spacing: 0;
}

.home-section[hidden],
.post-detail[hidden] {
  display: none !important;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  border-bottom: 1px solid #e6ebe7;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  font-size: 18px;
  font-weight: 950;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  color: var(--teal);
  font-size: 20px;
  font-weight: 950;
}

.brand small {
  margin-top: 2px;
  color: var(--teal);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.8px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  color: #23322f;
  font-size: 15px;
  font-weight: 850;
  white-space: nowrap;
}

.nav a:first-child,
.nav a:hover {
  color: var(--teal);
}

.header-cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border-radius: 999px;
  color: #fff;
  background: var(--teal-dark);
  font-size: 14px;
  font-weight: 950;
  white-space: nowrap;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 88px);
  background: #1b211f;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("./assets/sonamu-hero-slide-01.jpg?v=20260818-final1") center / cover;
  opacity: 1;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(8, 18, 16, 0.78) 0%, rgba(8, 18, 16, 0.58) 34%, rgba(8, 18, 16, 0.18) 66%, rgba(8, 18, 16, 0.08) 100%),
    linear-gradient(180deg, rgba(8, 18, 16, 0.08) 0%, rgba(8, 18, 16, 0.18) 100%);
}

.hero-bg span {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
  transition: opacity 820ms ease, transform 6200ms ease;
}

.hero-bg span.is-active {
  opacity: 1;
  transform: scale(1.08);
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 40px));
  display: grid;
  grid-template-columns: minmax(0, 720px);
  gap: 0;
  align-items: end;
  min-height: calc(100svh - 88px);
  margin: 0 auto;
  padding: 118px 0 74px;
}

.kicker {
  margin: 0 0 18px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.hero h1 {
  display: grid;
  gap: 10px;
  max-width: 820px;
  margin: 0;
  color: #fff;
  font-family: "Pretendard", "Apple SD Gothic Neo", "Noto Sans KR", system-ui, sans-serif;
  font-size: clamp(38px, 4.7vw, 66px);
  font-style: normal;
  font-weight: 950;
  line-height: 1.18;
  letter-spacing: 0;
  word-break: keep-all;
}

.hero h1 span {
  display: block;
}

.hero h1 strong {
  display: inline-block;
  width: max-content;
  max-width: 100%;
  margin-top: 6px;
  padding: 10px 20px 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  color: #fff;
  background: rgba(31, 111, 86, 0.84);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
  font-size: clamp(42px, 5.1vw, 74px);
  font-weight: 950;
  line-height: 1.1;
  white-space: nowrap;
}

.hero-copy > p:not(.kicker),
.section-heading p,
.about p,
.location-info > p,
.youtube-band p,
.booking-card p,
.clinic-card p {
  color: var(--muted);
  font-size: 16px;
  font-weight: 520;
  line-height: 1.8;
  word-break: keep-all;
}

.hero-copy > p:not(.kicker) {
  max-width: 560px;
  margin-top: 38px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 23px;
  font-weight: 850;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.hero-buttons a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 12px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 14px;
  font-weight: 950;
}

.hero-slider-control {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.hero-slider-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-slider-dots span {
  width: 30px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  transition: width 180ms ease, background 180ms ease;
}

.hero-slider-dots span.is-active {
  width: 44px;
  background: #fff;
}

.hero-slide-button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.hero-slide-button:hover,
.hero-slide-button:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.hero-metrics li {
  min-width: 118px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(18, 35, 31, 0.34);
  backdrop-filter: blur(12px);
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 28px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  color: #fff;
  font-size: 23px;
}

.hero-metrics strong {
  color: #fff;
  font-size: 23px;
  font-weight: 950;
  line-height: 1;
}

.hero-metrics span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 850;
}

.care-cards,
.care-intro,
.posts-layout,
.about,
.location,
.generator {
  width: min(1180px, calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
}

.care-intro {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 32px;
  align-items: end;
  padding-top: 118px;
}

.care-intro > div {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid #1d2a27;
  padding-bottom: 24px;
}

.care-intro h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 6.2vw, 78px);
  font-weight: 900;
  line-height: 1;
  word-break: keep-all;
}

.care-intro a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 950;
  white-space: nowrap;
}

.care-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 48px 0 112px;
  border-bottom: 0;
}

.care-cards a {
  position: relative;
  display: grid;
  min-height: 420px;
  align-content: end;
  gap: 10px;
  overflow: hidden;
  padding: 34px 30px;
  color: #fff;
  background: var(--teal-dark);
  text-align: left;
  isolation: isolate;
  transition: transform 180ms ease;
}

.care-cards a:hover {
  transform: translateY(-6px);
}

.care-cards a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.36) 0%, rgba(23, 63, 51, 0.1) 42%, rgba(23, 63, 51, 0.94) 100%);
}

.care-cards img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) brightness(1.08);
}

.card-no {
  position: absolute;
  top: 28px;
  left: 28px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 950;
}

.icon {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: #fff;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
}

.care-cards strong {
  color: #fff;
  font-size: 25px;
  font-weight: 950;
}

.care-cards small {
  display: block;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.7;
  word-break: keep-all;
}

.posts-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 30px;
  align-items: start;
  padding: 84px 0 96px;
  border-top: 1px solid #e1e8e4;
}

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

.section-heading > div {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 16px;
}

.section-heading h2,
.about h2,
.location h2,
.youtube-band h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 950;
  line-height: 1.14;
  word-break: keep-all;
}

.about h2,
.location h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 5.8vw, 70px);
  line-height: 1.02;
}

.section-heading a {
  color: var(--teal);
  font-size: 13px;
  font-weight: 950;
  white-space: nowrap;
}

.post-list {
  border: 1px solid var(--line);
  background: var(--white);
}

.post-row {
  position: relative;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) 28px;
  gap: 28px;
  align-items: center;
  min-height: 168px;
  padding: 0 24px 0 0;
  border-bottom: 1px solid var(--line);
}

.post-row:last-child {
  border-bottom: 0;
}

.post-row img {
  width: 230px;
  height: 168px;
  object-fit: cover;
}

.post-chip {
  position: absolute;
  left: 258px;
  top: 24px;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--teal);
  background: var(--teal-soft);
  font-size: 12px;
  font-weight: 950;
}

.post-row h3 {
  margin: 20px 0 12px;
  color: var(--teal);
  font-size: 24px;
  font-weight: 950;
  line-height: 1.25;
  word-break: keep-all;
}

.post-row p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  word-break: keep-all;
}

.post-row time {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.post-row b {
  color: var(--teal);
  font-size: 24px;
}

.featured-post {
  display: none;
}

.post-detail-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 42px 0 70px;
}

.post-detail-section[hidden] {
  display: none;
}

.medical-detail {
  border-top: 1px solid var(--line);
}

.detail-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 22px 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

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

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1fr);
  gap: 42px;
  align-items: center;
  min-height: 420px;
  padding: 42px 0;
}

.detail-hero h1 {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 950;
  line-height: 1.12;
  word-break: keep-all;
}

.detail-hero p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
  word-break: keep-all;
}

.detail-hero figure {
  margin: 0;
  overflow: hidden;
  border-radius: 0 0 0 72px;
  box-shadow: var(--shadow);
}

.detail-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.detail-actions,
.detail-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.detail-actions a,
.detail-bottom a,
.detail-side a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--teal);
  color: var(--teal);
  background: #fff;
  font-size: 14px;
  font-weight: 950;
}

.detail-actions a:first-child,
.detail-bottom a:first-child {
  color: #fff;
  background: var(--teal);
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 34px;
  align-items: start;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.detail-content {
  display: grid;
  gap: 18px;
  padding: 34px;
  border: 1px solid var(--line);
  background: #fff;
}

.detail-content section {
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.detail-content section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.detail-label {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--teal);
  background: var(--teal-soft);
  font-size: 12px;
  font-weight: 950;
}

.detail-content h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.25;
}

.detail-content p,
.detail-content li {
  color: var(--text);
  font-size: 16px;
  line-height: 1.85;
  word-break: keep-all;
}

.detail-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  list-style: none;
}

.detail-checks li {
  padding: 14px 16px;
  border-left: 3px solid var(--teal);
  background: var(--teal-soft);
  font-weight: 850;
}

.detail-side {
  position: sticky;
  top: 84px;
  display: grid;
  gap: 14px;
}

.detail-side article {
  padding: 22px;
  border: 1px solid var(--line);
  background: #fff;
}

.detail-side strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  font-weight: 950;
}

.detail-side p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.detail-side a {
  width: 100%;
  margin-top: 8px;
}

.article-template {
  border-top: 0;
  color: #1c2523;
}

.article-breadcrumb,
.article-cover,
.article-body {
  width: min(760px, 100%);
  margin: 0 auto;
}

.article-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0 24px;
  color: #6d7a76;
  font-size: 13px;
  font-weight: 800;
}

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

.article-cover {
  padding: 26px 0 34px;
  border-bottom: 1px solid #d9e1dd;
}

.article-label {
  margin: 0 0 14px;
  color: #b17b32;
  font-size: 13px;
  font-weight: 900;
}

.article-cover h1,
.article-main-title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 950;
  line-height: 1.22;
  word-break: keep-all;
}

.article-cover p {
  margin: 18px 0 0;
  color: #50615d;
  font-size: 16px;
  line-height: 1.8;
  word-break: keep-all;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
}

.article-meta time {
  color: #6d7a76;
  font-size: 13px;
  font-weight: 700;
}

.copy-url {
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid #d9e1dd;
  border-radius: 3px;
  color: #384642;
  background: #fff;
  font: inherit;
  font-size: 12px;
  font-weight: 850;
}

.article-body {
  padding: 46px 0 80px;
}

.article-main-title {
  margin-bottom: 28px;
}

.article-main-image {
  margin: 0 0 24px;
  background: #fff;
}

.article-main-image img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.article-summary {
  margin: 0 0 18px;
  padding: 16px 18px;
  border-radius: 4px;
  background: #eef1ff;
}

.article-summary strong {
  display: block;
  margin-bottom: 6px;
  color: #343a6d;
  font-size: 13px;
  font-weight: 950;
}

.article-summary p {
  margin: 0;
  color: #32384e;
  font-size: 15px;
  line-height: 1.75;
}

.article-info-table {
  width: 100%;
  margin: 22px 0;
  border-collapse: collapse;
  background: #fff;
  font-size: 14px;
}

.article-info-table th,
.article-info-table td {
  border: 1px solid #bfc9c5;
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
  line-height: 1.6;
}

.article-info-table th {
  width: 150px;
  color: #283430;
  background: #f4f7f5;
  font-weight: 900;
}

.article-toc {
  margin: 24px 0 34px;
  padding: 18px 20px;
  border: 1px solid #cfd9d5;
  border-radius: 4px;
  background: #fbfcfb;
}

.article-toc strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 950;
}

.article-toc ol {
  margin: 0;
  padding-left: 20px;
}

.article-toc li {
  margin: 5px 0;
  color: var(--teal);
  font-size: 14px;
  font-weight: 800;
}

.article-intro,
.article-section p,
.article-evidence li,
.article-clinic p {
  color: #2c3936;
  font-size: 16px;
  line-height: 1.9;
  word-break: keep-all;
}

.article-section {
  padding: 36px 0;
  border-bottom: 1px solid #d9e1dd;
}

.article-section h2,
.article-evidence h2,
.article-faq h2,
.article-clinic h2 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 25px;
  font-weight: 950;
  line-height: 1.35;
  word-break: keep-all;
}

.article-section h2 span {
  font-size: 20px;
}

.article-section h3 {
  margin: 24px 0 8px;
  color: #1b2b28;
  font-size: 18px;
  font-weight: 950;
}

.article-note {
  margin: 18px 0 0;
  padding: 13px 16px;
  border-left: 3px solid #ffb531;
  border-radius: 3px;
  color: #725019;
  background: #fff4dc;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.65;
}

.article-evidence {
  padding: 40px 0 32px;
  border-bottom: 1px solid #d9e1dd;
}

.article-faq {
  padding: 40px 0 32px;
  border-bottom: 1px solid #d9e1dd;
}

.faq-item {
  margin: 10px 0;
  padding: 15px 18px;
  border: 1px solid #d8d0c8;
  border-radius: 6px;
  background: #fffaf5;
}

.faq-item summary {
  cursor: pointer;
  color: #1d2926;
  font-size: 15px;
  font-weight: 950;
}

.faq-item p {
  margin: 10px 0 0;
  color: #4c5c58;
  font-size: 14px;
  line-height: 1.75;
}

.article-clinic {
  margin-top: 32px;
  padding: 22px 24px;
  border: 1px solid #cfd9d5;
  border-radius: 5px;
  background: #fff;
}

.article-clinic-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.article-clinic-actions a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border: 1px solid var(--teal);
  color: var(--teal);
  background: #fff;
  font-size: 13px;
  font-weight: 950;
}

.article-page {
  min-height: 100vh;
  padding: 18px 0 80px;
  background: #f4f1ed;
}

.article-layout {
  width: min(660px, calc(100% - 36px));
  margin: 0 auto;
}

.medical-article {
  overflow: hidden;
  border: 1px solid #d9d6d1;
  background: #fff;
  box-shadow: 0 18px 44px rgba(36, 31, 27, 0.07);
}

.article-header {
  padding: 34px 38px 30px;
  border-bottom: 1px solid #dedbd6;
}

.article-back {
  display: inline-flex;
  margin-bottom: 24px;
  color: #8b6d52;
  font-size: 12px;
  font-weight: 800;
}

.article-category,
.post-category {
  margin: 0 0 10px;
  color: #b17b32;
  font-size: 12px;
  font-weight: 950;
}

.article-header h1,
.haroop-post .post-header h1 {
  margin: 0;
  color: #171b19;
  font-size: clamp(28px, 5vw, 43px);
  font-weight: 950;
  line-height: 1.25;
  word-break: keep-all;
}

.article-header .article-summary {
  margin: 20px 0 0;
  padding: 0;
  background: transparent;
  color: #4d5c58;
  font-size: 15px;
  line-height: 1.85;
}

.article-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
}

.article-meta-row time {
  color: #687570;
  font-size: 12px;
  font-weight: 700;
}

.copy-url-button {
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid #d6d0c9;
  border-radius: 4px;
  background: #fff;
  color: #2e3935;
  font: inherit;
  font-size: 12px;
  font-weight: 850;
}

.auto-article-body {
  padding: 42px 38px 38px;
}

.haroop-post .post-hero {
  margin: 28px 0 24px;
  background: #fafafa;
}

.haroop-post .article-visual {
  width: 100%;
  max-height: 430px;
  object-fit: cover;
}

.haroop-post .post-summary {
  margin: 22px 0;
  padding: 16px 18px;
  border-left: 4px solid #5e6ad2;
  border-radius: 8px;
  background: rgba(94, 106, 210, 0.1);
}

.haroop-post .post-summary strong {
  display: block;
  margin-bottom: 7px;
  color: #303a6f;
  font-size: 13px;
  font-weight: 950;
}

.haroop-post p,
.haroop-post li,
.haroop-post dd {
  color: #2f3c38;
  font-size: 15px;
  line-height: 1.9;
  word-break: keep-all;
}

.haroop-post .post-spec-card {
  margin: 20px 0;
}

.haroop-post .post-spec-card figcaption,
.haroop-post .post-table figcaption {
  margin-bottom: 8px;
  color: #2d3935;
  font-size: 14px;
  font-weight: 900;
}

.haroop-post .post-spec-card table,
.haroop-post .post-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.haroop-post .post-spec-card th,
.haroop-post .post-spec-card td,
.haroop-post .post-table th,
.haroop-post .post-table td {
  border: 1px solid rgba(128, 128, 128, 0.38);
  padding: 9px 12px;
  text-align: left;
  vertical-align: top;
}

.haroop-post .post-spec-card th,
.haroop-post .post-table th {
  width: 34%;
  background: rgba(128, 128, 128, 0.1);
  font-weight: 850;
}

.haroop-post .spec-card-note {
  margin-top: 7px;
  color: #77817d;
  font-size: 12px;
}

.haroop-post .post-toc {
  margin: 22px 0 30px;
  padding: 16px 18px;
  border: 1px solid rgba(128, 128, 128, 0.26);
  border-radius: 8px;
  background: rgba(128, 128, 128, 0.07);
}

.haroop-post .post-toc strong {
  display: block;
  margin-bottom: 8px;
  color: #17211e;
  font-weight: 950;
}

.haroop-post .post-toc ol {
  margin: 0;
  padding-left: 20px;
}

.haroop-post .post-toc li {
  margin: 5px 0;
  color: var(--teal);
  font-size: 14px;
  font-weight: 850;
}

.haroop-post .post-intro {
  margin: 26px 0;
}

.haroop-post .post-section {
  padding: 30px 0;
  border-top: 1px solid #e1ded9;
}

.haroop-post .post-section h2,
.haroop-post .post-evidence h2,
.haroop-post .post-clinic h2 {
  margin: 0 0 16px;
  color: #111917;
  font-size: clamp(23px, 4vw, 31px);
  font-weight: 950;
  line-height: 1.35;
  word-break: keep-all;
}

.haroop-post .direct-answer {
  margin: 0 0 13px;
  color: #202d29;
  font-weight: 850;
}

.haroop-post .post-section h3 {
  margin: 22px 0 7px;
  color: #1d2926;
  font-size: 18px;
  font-weight: 950;
}

.haroop-post .key-takeaway {
  margin: 18px 0 0;
  padding: 12px 14px;
  border-left: 4px solid #e0a500;
  border-radius: 6px;
  background: rgba(224, 165, 0, 0.13);
  color: #76541b;
  font-size: 14px;
  font-weight: 750;
}

.haroop-post .post-evidence {
  margin-top: 12px;
  padding: 28px 0;
  border-top: 1px solid #d9d6d1;
}

.haroop-post .post-faq dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.haroop-post .post-faq dt,
.haroop-post .post-faq dd {
  margin: 0;
}

.haroop-post .post-faq dt {
  padding: 14px 16px 4px;
  border: 1px solid #ded7cf;
  border-bottom: 0;
  border-radius: 7px 7px 0 0;
  background: #fffaf6;
  color: #17211e;
  font-size: 14px;
  font-weight: 950;
}

.haroop-post .post-faq dd {
  padding: 0 16px 14px;
  border: 1px solid #ded7cf;
  border-top: 0;
  border-radius: 0 0 7px 7px;
  background: #fffaf6;
}

.haroop-post .post-clinic {
  margin-top: 24px;
  padding: 20px 22px;
  border: 1px solid #d8d6d2;
  border-radius: 6px;
  background: #fff;
}

.haroop-post .post-clinic h2 {
  margin-bottom: 8px;
  font-size: 20px;
}

.haroop-post .post-clinic p {
  margin: 5px 0;
  font-size: 13px;
}

.haroop-post .post-service-cta a,
.haroop-post .nap-map a {
  color: var(--teal);
  font-weight: 900;
}

.article-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 38px 38px;
}

.article-footer-nav a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid var(--teal);
  color: var(--teal);
  background: #fff;
  font-size: 13px;
  font-weight: 950;
}

.article-quick-widget {
  position: fixed;
  right: max(20px, calc((100vw - 1180px) / 2));
  top: 42%;
  z-index: 20;
  display: grid;
  gap: 8px;
}

.article-quick-widget .quick-card {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid #d5dfdc;
  background: #fff;
  color: var(--teal);
  font-weight: 950;
  box-shadow: 0 12px 28px rgba(9, 48, 45, 0.08);
}

.posts-side {
  display: grid;
  gap: 16px;
}

.booking-card {
  padding: 24px;
  color: #fff;
  background: var(--teal);
}

.booking-card span {
  display: block;
  color: #fff;
  font-size: 28px;
  font-weight: 950;
}

.booking-card small {
  display: block;
  margin-top: 8px;
  opacity: 0.75;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 1.5px;
}

.booking-card h3 {
  margin: 12px 0 12px;
  color: #fff;
  font-size: 21px;
  line-height: 1.35;
}

.booking-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
}

.booking-card a {
  display: grid;
  min-height: 48px;
  place-items: center;
  margin-top: 18px;
  color: var(--teal);
  background: #fff;
  font-weight: 950;
}

.phone-card,
.clinic-card {
  border: 1px solid var(--line);
  background: #fff;
  padding: 22px;
}

.phone-card {
  display: grid;
  gap: 8px;
  place-items: center;
  text-align: center;
}

.phone-card a {
  display: grid;
  gap: 8px;
  place-items: center;
}

.phone-card span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 950;
}

.phone-card strong {
  color: var(--teal);
  font-size: 22px;
}

.phone-card small {
  color: var(--muted);
  font-size: 12px;
}

.clinic-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 22px;
}

.clinic-card a {
  display: inline-flex;
  margin: 8px 0 16px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 950;
}

.clinic-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.98fr);
  gap: 0;
  align-items: stretch;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 max(20px, calc((100vw - 1180px) / 2));
  border-top: 0;
  background: #fff;
}

.about figure {
  margin: 0;
  background: #eaf2ed;
}

.about img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center right;
}

.about > div {
  display: grid;
  align-content: center;
  min-height: 620px;
  padding: 78px 72px 78px 0;
}

.profile-list {
  display: grid;
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.profile-list li {
  color: var(--muted);
  font-size: 16px;
  font-weight: 760;
  line-height: 1.75;
}

.profile-list li::before {
  content: "· ";
  color: var(--teal);
  font-weight: 950;
}

.location {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 34px;
  align-items: stretch;
  padding: 96px 0;
  border-top: 1px solid var(--line);
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 26px 0 18px;
}

.guide-grid article {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  background: #fff;
}

.guide-grid span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--teal);
  background: var(--teal-soft);
  font-size: 12px;
  font-weight: 950;
}

.guide-grid h3 {
  margin: 28px 0 18px;
  color: var(--ink);
  font-size: 24px;
}

.guide-grid p {
  margin: 10px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.guide-grid strong {
  color: var(--teal);
}

.address-box {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 76px;
  padding: 0 22px;
  border-left: 4px solid var(--teal);
  background: #fff;
  box-shadow: var(--shadow);
}

.address-box span {
  color: var(--teal);
  font-weight: 950;
}

.address-box strong {
  color: var(--text);
}

.address-box em {
  color: var(--teal);
  font-style: normal;
  font-size: 13px;
  font-weight: 950;
}

.map-panel {
  position: relative;
  display: grid;
  min-height: 430px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(7, 143, 144, 0.13) 1px, transparent 1px),
    linear-gradient(rgba(7, 143, 144, 0.13) 1px, transparent 1px),
    #eaf2ec;
  background-size: 58px 58px;
}

.map-panel::before,
.map-panel::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 87, 108, 0.7);
}

.map-panel::before {
  width: 150%;
  height: 5px;
  transform: rotate(-28deg);
}

.map-panel::after {
  width: 5px;
  height: 140%;
  transform: rotate(18deg);
}

.map-panel .pin {
  position: relative;
  z-index: 1;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 6px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  box-shadow: var(--shadow);
  font-size: 24px;
  font-weight: 950;
}

.map-panel strong,
.map-panel small {
  position: relative;
  z-index: 1;
  display: block;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.9);
}

.map-panel strong {
  margin-top: 12px;
  color: var(--ink);
  font-size: 18px;
}

.map-panel small {
  color: var(--teal);
  font-weight: 950;
}

.youtube-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 0;
  padding: 48px max(20px, calc((100vw - 1180px) / 2));
  color: #fff;
  background: var(--teal-dark);
}

.youtube-band .kicker,
.youtube-band h2,
.youtube-band p {
  color: #fff;
}

.youtube-band p {
  margin-bottom: 0;
}

.youtube-band a {
  display: grid;
  width: 84px;
  height: 64px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: #04a6a6;
  font-size: 28px;
  font-weight: 950;
}

.generator {
  padding: 58px 0;
}

.generator-box {
  display: grid;
  grid-template-columns: 350px minmax(0, 1fr);
  gap: 20px;
  padding: 24px;
  border: 1px solid var(--line);
  background: #fff;
}

.generator-form {
  display: grid;
  gap: 16px;
}

.generator-form label {
  display: grid;
  gap: 8px;
}

.generator-form span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
}

.generator-form input,
.generator-form select {
  width: 100%;
  min-height: 46px;
  padding: 0 13px;
  border: 1px solid var(--line);
  color: var(--text);
  background: #fff;
  font: inherit;
}

.generator-form button,
.draft-actions button {
  min-height: 46px;
  border: 0;
  color: #fff;
  background: var(--teal);
  font: inherit;
  font-weight: 950;
}

.draft-output {
  min-height: 310px;
  padding: 24px;
  background: var(--teal-soft);
}

.draft-output h3,
.draft-output h4 {
  color: var(--ink);
}

.draft-output p,
.draft-output li {
  line-height: 1.72;
}

.draft-placeholder {
  display: grid;
  min-height: 250px;
  place-items: center;
  color: var(--muted);
  text-align: center;
}

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

.draft-actions a,
.draft-actions button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid var(--teal);
  color: var(--teal);
  background: #fff;
  font-size: 14px;
  font-weight: 950;
}

.draft-actions button {
  color: #fff;
  background: var(--teal);
}

.footer {
  display: grid;
  position: relative;
  grid-template-columns: minmax(330px, 1.35fr) 1fr 1.15fr;
  gap: 54px;
  overflow: hidden;
  padding: 86px max(20px, calc((100vw - 1180px) / 2)) 72px;
  color: #fff;
  background:
    linear-gradient(rgba(21, 32, 29, 0.9), rgba(21, 32, 29, 0.9)),
    url("./assets/sonamu-home-clinic.jpg?v=20260818-liv2") center / cover;
}

.footer .brand-logo {
  background: #fff;
  color: var(--teal-dark);
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer strong,
.footer small,
.footer h2,
.footer p {
  color: #fff;
}

.footer-brand strong {
  display: block;
  width: max-content;
  max-width: 100%;
  font-family: "Pretendard", "Apple SD Gothic Neo", "Noto Sans KR", system-ui, sans-serif;
  font-size: clamp(28px, 2.35vw, 36px);
  font-weight: 950;
  line-height: 1.15;
  letter-spacing: 0;
  white-space: nowrap;
  word-break: keep-all;
}

.footer h2 {
  margin: 0 0 20px;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 5px;
}

.footer p {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.65;
}

.footer a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.quick-menu {
  position: fixed;
  right: 28px;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  z-index: 50;
  display: grid;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  background: var(--teal-dark);
  box-shadow: 0 16px 36px rgba(4, 35, 34, 0.18);
}

.quick-menu a {
  display: grid;
  width: 78px;
  min-height: 78px;
  place-items: center;
  gap: 7px;
  padding: 12px 8px;
  border-right: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  text-align: center;
}

.quick-menu a:first-child {
  width: 58px;
  min-height: 58px;
  margin: 10px auto 4px;
  border: 0;
  border-radius: 50%;
  color: var(--teal-dark);
  background: #fff;
}

.quick-menu a:last-child {
  border-bottom: 0;
}

.quick-menu span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: currentColor;
  font-size: 18px;
  line-height: 1;
}

.quick-menu strong {
  color: currentColor;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.25;
}

@media (max-width: 980px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    gap: 18px;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .header-cta {
    position: absolute;
    top: 16px;
    right: 20px;
    min-height: 40px;
    padding: 0 18px;
  }

  .hero-inner,
  .care-intro,
  .posts-layout,
  .detail-hero,
  .detail-grid,
  .about,
  .location,
  .generator-box,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    align-items: end;
    min-height: 100svh;
  }

  .care-intro {
    padding-top: 64px;
  }

  .care-intro > div {
    align-items: flex-start;
    flex-direction: column;
  }

  .care-intro .kicker {
    margin-bottom: 0;
  }

  .care-intro h2 {
    font-size: clamp(30px, 6vw, 46px);
  }

  .care-cards,
  .guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .care-cards a {
    min-height: 340px;
  }

  .about {
    padding-right: 20px;
    padding-left: 20px;
  }

  .about > div {
    min-height: auto;
    padding: 64px 0 42px;
  }

  .about img {
    min-height: 380px;
  }

  .posts-side {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .detail-side {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .quick-menu,
  .article-quick-widget,
  .scroll-cue {
    display: none !important;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: auto;
    padding-top: 118px;
    padding-bottom: 46px;
  }

  .hero h1 {
    font-size: clamp(30px, 8.4vw, 46px);
  }

  .hero h1 strong {
    width: fit-content;
    font-size: clamp(31px, 8.8vw, 48px);
    white-space: normal;
  }

  .hero-slider-control {
    flex-wrap: wrap;
  }

  .hero-slider-dots span {
    width: 20px;
  }

  .hero-slider-dots span.is-active {
    width: 34px;
  }

  .hero-copy > p:not(.kicker) {
    font-size: 16px;
    line-height: 1.82;
  }

  .hero-metrics li {
    flex: 1 1 116px;
  }

  .article-page {
    padding: 16px 0 48px;
  }

  .article-layout {
    width: min(100% - 24px, 660px);
  }

  .article-header,
  .auto-article-body {
    padding-right: 24px;
    padding-left: 24px;
  }

  .article-footer-nav {
    padding-right: 24px;
    padding-left: 24px;
  }
}

@media (max-width: 640px) {
  .header-inner,
  .hero-inner,
  .care-intro,
  .care-cards,
  .posts-layout,
  .post-detail-section,
  .about,
  .location,
  .generator {
    width: min(100% - 28px, 1180px);
  }

  .hero-inner {
    min-height: auto;
    padding: 76px 0 36px;
  }

  .hero-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(116px, 1fr));
    gap: 10px;
  }

  .hero-metrics li {
    min-width: 0;
    padding: 14px 12px;
  }

  .hero-metrics strong {
    font-size: 21px;
  }

  .footer-brand strong {
    font-size: clamp(24px, 7vw, 32px);
  }

  .care-cards,
  .guide-grid,
  .posts-side,
  .detail-side,
  .detail-checks {
    grid-template-columns: 1fr;
  }

  .care-cards a {
    min-height: 300px;
  }

  .about {
    width: 100%;
    padding-right: 14px;
    padding-left: 14px;
  }

  .about h2,
  .location h2 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .about img {
    min-height: 300px;
  }

  .detail-hero {
    gap: 24px;
    padding: 28px 0;
  }

  .detail-hero figure {
    border-radius: 0 0 0 36px;
  }

  .detail-content {
    padding: 22px;
  }

  .post-row {
    grid-template-columns: 1fr;
    padding: 0 0 22px;
  }

  .post-row img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .post-row div {
    padding: 0 18px;
  }

  .post-row h3 {
    margin-top: 10px;
    font-size: 21px;
    line-height: 1.32;
  }

  .post-row p {
    font-size: 14px;
    line-height: 1.7;
  }

  .post-chip {
    position: static;
    width: fit-content;
    margin: 18px 18px 0;
  }

  .post-row b {
    display: none;
  }

  .address-box {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .youtube-band,
  .footer {
    padding-right: 20px;
    padding-left: 20px;
  }

  .article-header,
  .auto-article-body {
    padding-right: 18px;
    padding-left: 18px;
  }

  .article-footer-nav {
    padding-right: 18px;
    padding-left: 18px;
  }

  .haroop-post .post-spec-card {
    overflow-x: auto;
  }

  .haroop-post .post-spec-card table {
    min-width: 430px;
  }
}
