/* 교통사고 한의원 칼럼 — 저널형 레이아웃 (수험생 공진단 칼럼과 같은 뼈대) */
.sd-page {
  --sg-deep: #173f37;
  --sg-green: #247860;
  --sg-teal: #3c605a;
  --sg-soft: #eef3f0;
  --sg-paper: #f8f8f6;
  --sg-warm: #e8e4e2;
  --sg-ink: #242824;
  --sg-muted: #555550;
  --sg-line: #d7dfdb;
  overflow: clip;
  background: #fff;
  color: var(--sg-ink);
  font-family: "Pretendard Variable", Pretendard, "Noto Sans KR", sans-serif;
}

.sd-page * { box-sizing: border-box; }

/* 머리말 */
.sd-header {
  max-width: 1080px;
  margin: auto;
  padding: 92px 28px 40px;
  text-align: center;
}

.sd-header .column-breadcrumb { justify-content: center; margin-bottom: 26px; }
.sd-eyebrow { margin: 0 0 18px; color: var(--sg-green); font-size: .72rem; font-weight: 800; letter-spacing: .14em; }

.sd-header h1 {
  max-width: 900px;
  margin: 0 auto;
  color: var(--sg-deep);
  font-size: clamp(2.1rem, 4.8vw, 4.1rem);
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: -.055em;
  word-break: keep-all;
}

.sd-lead {
  max-width: 720px;
  margin: 26px auto 22px;
  color: var(--sg-muted);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.9;
  word-break: keep-all;
}

.sd-byline { display: flex; justify-content: center; gap: 18px; color: #718078; font-size: .78rem; }
.sd-byline a { color: var(--sg-green); }

/* 첫 화면 띠 — 검색어와 네 가지 결정 */
.sd-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  width: min(1120px, calc(100% - 56px));
  margin: 0 auto 78px;
  padding: clamp(2.2rem, 5vw, 4rem);
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--sg-deep) 0%, #1f5a4c 60%, var(--sg-green) 100%);
  color: #fff;
}

.sd-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: -9rem;
  top: -11rem;
  width: 26rem;
  height: 26rem;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(255, 255, 255, .03), 0 0 0 8rem rgba(255, 255, 255, .02);
}

.sd-hero__copy { display: flex; flex-direction: column; justify-content: center; min-width: 0; }
.sd-hero__copy small { color: #c9e7da; font-size: .66rem; font-weight: 800; letter-spacing: .18em; }

.sd-search {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin: 1.4rem 0 1.2rem;
  padding: .95rem 1.2rem;
  border-radius: 999px;
  background: #fff;
  color: var(--sg-deep);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 700;
  box-shadow: 0 .9rem 2rem rgba(4, 37, 29, .22);
}

.sd-search::before {
  content: "";
  flex: 0 0 1rem;
  width: 1rem;
  height: 1rem;
  border: 2px solid var(--sg-green);
  border-radius: 50%;
}

.sd-search i { width: 2px; height: 1.2em; margin-left: -.4rem; background: var(--sg-green); animation: sd-caret 1.1s steps(1) infinite; }
@keyframes sd-caret { 50% { opacity: 0; } }

.sd-hero__copy p { margin: 0; color: rgba(255, 255, 255, .8); font-size: .98rem; line-height: 1.85; word-break: keep-all; }

.sd-decisions { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; margin: 0; padding: 0; list-style: none; }
.sd-decisions li { min-width: 0; }

.sd-decisions a {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  height: 100%;
  min-height: 132px;
  padding: 1.15rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 18px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  text-decoration: none;
  transition: background-color .22s ease, border-color .22s ease, transform .22s ease;
}

.sd-decisions a:hover { border-color: rgba(255, 255, 255, .45); background: rgba(255, 255, 255, .13); transform: translateY(-2px); }
.sd-decisions span { color: #c9e7da; font-size: .64rem; font-weight: 800; letter-spacing: .16em; }
.sd-decisions strong { font-size: 1.35rem; font-weight: 700; letter-spacing: -.04em; }
.sd-decisions em { color: rgba(255, 255, 255, .72); font-size: .82rem; font-style: normal; line-height: 1.55; word-break: keep-all; }

/* 본문 배치 */
.sd-layout {
  display: grid;
  grid-template-columns: 190px minmax(0, 720px);
  gap: clamp(2rem, 5vw, 5rem);
  justify-content: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px 96px;
}

.sd-toc { position: sticky; top: 108px; align-self: start; }
.sd-toc small { display: block; margin-bottom: 1rem; color: var(--sg-green); font-size: .66rem; font-weight: 800; letter-spacing: .16em; }
.sd-toc ol { margin: 0; padding: 0 0 0 1rem; border-left: 1px solid var(--sg-line); list-style: none; }
.sd-toc li + li { margin-top: .85rem; }
.sd-toc a { color: #6b746f; font-size: .8rem; line-height: 1.5; text-decoration: none; word-break: keep-all; }
.sd-toc a:hover { color: var(--sg-green); }

.sd-article { min-width: 0; }
/* style.css가 모든 section에 위아래 110px을 준다. 본문 절 사이 간격은 소제목 여백만으로 잡는다. */
.sd-article > section:not(.sd-refs) { padding: 0; }
.sd-article section[id] { scroll-margin-top: 110px; }

.sd-article h2 {
  margin: 3.6rem 0 1.3rem;
  color: var(--sg-deep);
  font-size: clamp(1.45rem, 2.6vw, 1.95rem);
  font-weight: 680;
  line-height: 1.4;
  letter-spacing: -.045em;
  word-break: keep-all;
}

.sd-article > section:first-child > h2:first-child { margin-top: 0; }

.sd-article p {
  margin: 0 0 1.35rem;
  color: #3a403c;
  font-size: 1.04rem;
  line-height: 1.95;
  word-break: keep-all;
}

.sd-article strong { color: var(--sg-deep); }
.sd-article a { color: var(--sg-green); text-underline-offset: 3px; }

.sd-quote {
  margin: 2.2rem 0;
  padding: 1.6rem 1.8rem;
  border-left: 3px solid var(--sg-green);
  background: var(--sg-soft);
  color: var(--sg-deep);
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  font-weight: 650;
  line-height: 1.6;
  letter-spacing: -.03em;
  word-break: keep-all;
}

/* 공진단 명칭 안내 — 대표원장 원고 */
.sd-name-note {
  margin: 2.2rem 0;
  padding: clamp(1.4rem, 3.5vw, 2rem);
  border: 1px solid var(--sg-line);
  border-left: 3px solid var(--sg-green);
  border-radius: 0 18px 18px 0;
  background: var(--sg-paper);
}

.sd-name-note h3 { margin: 0 0 1rem; color: var(--sg-deep); font-size: 1.18rem; font-weight: 700; line-height: 1.5; letter-spacing: -.035em; word-break: keep-all; }
.sd-name-note p { margin-bottom: .9rem; font-size: .98rem; }
.sd-name-note p:last-child { margin-bottom: 0; }
.sd-name-list { display: flex; flex-wrap: wrap; gap: .5rem; margin: .2rem 0 1rem; padding: 0; list-style: none; }
.sd-name-list li { padding: .45rem .85rem; border: 1px dashed #b9c6c0; border-radius: 999px; background: #fff; color: #6b746f; font-size: .88rem; }

/* 원내 조제 사진 */
.sd-photo { margin: 2.4rem 0; }
.sd-photo img { display: block; width: 100%; max-width: 560px; height: auto; margin: 0 auto; border-radius: 22px; }
.sd-photo figcaption { max-width: 560px; margin: 1rem auto 0; color: var(--sg-deep); font-size: .98rem; font-weight: 600; line-height: 1.7; text-align: center; word-break: keep-all; }
.sd-photo figcaption span { display: block; margin-top: .3rem; color: #7a847f; font-size: .74rem; font-weight: 500; }

/* 도표 공통 */
.sd-figure {
  margin: 2.6rem 0;
  padding: clamp(1.4rem, 3.5vw, 2.2rem);
  border: 1px solid var(--sg-line);
  border-radius: 20px;
  background: var(--sg-paper);
}

.sd-figure figcaption { margin-bottom: 1.6rem; }
.sd-figure figcaption span { display: block; margin-bottom: .45rem; color: var(--sg-green); font-size: .66rem; font-weight: 800; letter-spacing: .16em; }
.sd-figure figcaption strong { display: block; color: var(--sg-deep); font-size: 1.15rem; line-height: 1.45; letter-spacing: -.03em; word-break: keep-all; }
.sd-figure > small { display: block; margin-top: 1.4rem; color: #6b746f; font-size: .76rem; line-height: 1.7; word-break: keep-all; }

/* 도표 1 — 수면시간 막대 */
.sd-sleep-chart { position: relative; display: grid; gap: 1rem; padding-top: .4rem; }
.sd-sleep-row { display: grid; grid-template-columns: 92px minmax(0, 1fr); align-items: center; gap: 1rem; }
.sd-sleep-row > span { color: var(--sg-muted); font-size: .84rem; font-weight: 650; }

.sd-sleep-track {
  position: relative;
  height: 42px;
  border-radius: 10px;
  background:
    linear-gradient(90deg, transparent calc(80% - 1px), rgba(36, 120, 96, .1) calc(80% - 1px) 100%),
    #fff;
  box-shadow: inset 0 0 0 1px var(--sg-line);
}

.sd-sleep-bar {
  position: absolute;
  inset: 0 auto 0 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: calc(var(--h) / 10 * 100%);
  padding-right: .8rem;
  border-radius: 10px;
  background: var(--sg-teal);
  color: #fff;
  font-size: .86rem;
  font-weight: 750;
}

.sd-sleep-bar.is-goal { width: 100%; background: transparent; box-shadow: inset 0 0 0 2px var(--sg-green); color: var(--sg-green); }
.sd-sleep-bar.is-goal::before { content: ""; position: absolute; inset: 0 20% 0 0; border-radius: 10px 0 0 10px; background: transparent; }
.sd-sleep-scale { display: grid; grid-template-columns: 92px minmax(0, 1fr); gap: 1rem; color: #8a938e; font-size: .7rem; }
.sd-sleep-scale div { display: flex; justify-content: space-between; }

/* 도표 2 — 두 임상시험 */
.sd-trials { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.sd-trial {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 1.4rem;
  border: 1px solid var(--sg-line);
  border-radius: 16px;
  background: #fff;
}

.sd-trial.is-match { border-color: var(--sg-green); box-shadow: 0 0 0 1px var(--sg-green); }
.sd-trial small { color: var(--sg-green); font-size: .66rem; font-weight: 800; letter-spacing: .14em; }
.sd-trial h3 { margin: .55rem 0 1rem; color: var(--sg-deep); font-size: 1.12rem; line-height: 1.45; letter-spacing: -.03em; word-break: keep-all; }
.sd-trial dl { margin: 0; }
.sd-trial dl div { display: grid; grid-template-columns: 58px minmax(0, 1fr); gap: .6rem; padding: .6rem 0; border-top: 1px solid #e6ebe8; }
.sd-trial dt { color: #7a847f; font-size: .74rem; }
.sd-trial dd { margin: 0; color: var(--sg-ink); font-size: .84rem; line-height: 1.6; word-break: keep-all; }
.sd-trial p { margin: auto 0 0 !important; padding-top: 1rem; color: var(--sg-deep) !important; font-size: .9rem !important; font-weight: 650; line-height: 1.6 !important; }

/* 네 가지 결정 요약 */
.sd-recap { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .6rem; margin: 2.2rem 0; padding: 0; list-style: none; }
.sd-recap li { padding: 1rem .9rem; border-radius: 14px; background: var(--sg-soft); color: var(--sg-deep); font-size: .82rem; line-height: 1.55; word-break: keep-all; }
.sd-recap b { display: block; margin-bottom: .3rem; color: var(--sg-green); font-size: 1.05rem; }

/* FAQ */
.sd-faq { margin-top: 3.6rem; }
.sd-faq details { border-top: 1px solid var(--sg-line); }
.sd-faq details:last-child { border-bottom: 1px solid var(--sg-line); }
.sd-faq summary { position: relative; padding: 1.2rem 2.2rem 1.2rem 0; color: var(--sg-deep); font-size: 1rem; font-weight: 680; line-height: 1.55; cursor: pointer; list-style: none; word-break: keep-all; }
.sd-faq summary::-webkit-details-marker { display: none; }
.sd-faq summary::after { content: "+"; position: absolute; right: .2rem; top: 1.05rem; color: var(--sg-green); font-size: 1.3rem; font-weight: 400; }
.sd-faq details[open] summary::after { content: "−"; }
.sd-faq details p { margin: 0 0 1.3rem; font-size: .96rem; }

/* 참고문헌 */
.sd-refs { margin-top: 4rem; padding: 1.6rem 1.7rem; border-radius: 18px; background: var(--sg-paper); }
.sd-refs h2 { margin: 0 0 1rem !important; font-size: 1.15rem !important; }
.sd-refs ol { margin: 0; padding-left: 1.2rem; }
.sd-refs li { margin: .7rem 0; color: #5d6661; font-size: .78rem; line-height: 1.65; word-break: break-word; }
.sd-refs li a { color: var(--sg-teal); }

/* 하단 예약 블록 — 자율신경·두통·선잠 칼럼과 같은 관행 */
.sd-action {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(200px, 250px);
  grid-template-areas: "primary map" "info info";
  gap: 1.4rem;
  margin-top: clamp(3rem, 5vw, 4rem);
  padding: clamp(1.6rem, 4.5vw, 3rem);
  overflow: hidden;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--sg-deep) 0%, #1f5a4c 55%, var(--sg-green) 100%);
  box-shadow: 0 1.6rem 3.4rem rgba(23, 63, 55, .2);
  color: #fff;
}

.sd-action::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: -8rem;
  top: -10rem;
  width: 22rem;
  height: 22rem;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50%;
  box-shadow: 0 0 0 3.5rem rgba(255, 255, 255, .035), 0 0 0 7rem rgba(255, 255, 255, .025);
}

.sd-action .column-consult,
.sd-action .column-nap { margin: 0; padding: 0; border-radius: 0; background: transparent; color: #fff; }
.sd-action .column-section-label { margin: 0 0 1.05rem; color: #c9e7da; font-size: .66rem; font-weight: 800; letter-spacing: .18em; }

.sd-action__primary { grid-area: primary; display: flex; flex-direction: column; justify-content: center; min-width: 0; }
.sd-action__primary h2 { margin: 0 0 1rem !important; color: #fff !important; font-size: clamp(1.55rem, 2.8vw, 2.2rem) !important; font-weight: 620; line-height: 1.3; letter-spacing: -.045em; }
.sd-action__primary > p:not(.column-section-label) { margin: 0 !important; color: rgba(255, 255, 255, .82) !important; font-size: .95rem !important; line-height: 1.85 !important; }

.sd-action__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100%, 380px);
  min-height: 64px;
  margin-top: 1.7rem;
  padding: .75rem .8rem .75rem 1.3rem;
  border-radius: 999px;
  background: #fff;
  color: var(--sg-deep) !important;
  font-weight: 750;
  text-decoration: none;
  box-shadow: 0 .7rem 1.6rem rgba(4, 37, 29, .18);
  transition: transform .25s ease, box-shadow .25s ease;
}

.sd-action__button span { display: flex; flex-direction: column; gap: .1rem; font-size: 1rem; line-height: 1.35; }
.sd-action__button small { color: #5f766e; font-size: .66rem; font-weight: 600; letter-spacing: .04em; }
.sd-action__button b { display: grid; flex: 0 0 2.8rem; width: 2.8rem; height: 2.8rem; place-items: center; border-radius: 50%; background: #dceee6; color: var(--sg-deep); font-weight: 500; }
.sd-action__button:hover { transform: translateY(-2px); box-shadow: 0 1rem 2.2rem rgba(4, 37, 29, .26); }

.sd-action__map { grid-area: map; min-height: 260px; overflow: hidden; border: 1px solid rgba(255, 255, 255, .22); border-radius: 18px; background: rgba(255, 255, 255, .08); box-shadow: 0 1rem 2.2rem rgba(4, 37, 29, .22); }
.sd-action__map iframe { display: block; width: 100%; height: 100%; min-height: 260px; border: 0; }

.sd-action .sd-action__info {
  grid-area: info;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-areas: "label links" "name links" "addr links";
  column-gap: 1.5rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 20px;
  background: rgba(255, 255, 255, .08);
}

.sd-action__info .column-section-label { grid-area: label; }
.sd-action__info h2 { grid-area: name; margin: 0 0 .7rem !important; color: #fff !important; font-size: 1.5rem !important; font-weight: 650; letter-spacing: -.035em; }
.sd-action__info address { grid-area: addr; margin: 0; color: rgba(255, 255, 255, .78); font-size: .88rem; font-style: normal; line-height: 1.75; }

.sd-action .sd-action__links { grid-area: links; display: grid; gap: .6rem; align-self: end; margin: 0; }
.sd-action__links a { display: flex; align-items: center; justify-content: space-between; gap: .75rem; min-height: 54px; padding: .65rem .95rem; border: 1px solid rgba(255, 255, 255, .18); border-radius: 13px; background: rgba(5, 45, 35, .18); color: #fff !important; text-decoration: none; transition: background-color .2s ease, border-color .2s ease; }
.sd-action__links a span { color: #c9e7da; font-size: .66rem; letter-spacing: .04em; }
.sd-action__links a strong { color: #fff; font-size: .84rem; font-weight: 670; }
.sd-action__links a:hover { border-color: rgba(255, 255, 255, .45); background: rgba(255, 255, 255, .12); }

@media (max-width: 900px) {
  .sd-hero { grid-template-columns: 1fr; width: calc(100% - 40px); }
  .sd-layout { grid-template-columns: 1fr; padding-inline: 20px; }
  .sd-toc { position: static; padding: 1.2rem 1.3rem; border-radius: 16px; background: var(--sg-paper); }
  .sd-toc ol { border-left: 0; padding-left: 0; }
  .sd-recap { grid-template-columns: 1fr 1fr; }
  .sd-action { grid-template-columns: 1fr; grid-template-areas: "primary" "map" "info"; }
  .sd-action__map, .sd-action__map iframe { min-height: 230px; }
  .sd-action .sd-action__info { grid-template-columns: 1fr; grid-template-areas: "label" "name" "addr" "links"; }
  .sd-action .sd-action__links { margin-top: 1.4rem; }
}

@media (max-width: 600px) {
  .sd-header { padding: 64px 20px 28px; }
  .sd-hero { width: calc(100% - 24px); margin-bottom: 54px; padding: 1.6rem 1.3rem; border-radius: 22px; }
  .sd-decisions { grid-template-columns: 1fr 1fr; gap: .6rem; }
  .sd-decisions a { min-height: 0; padding: 1rem; }
  .sd-decisions strong { font-size: 1.15rem; }
  .sd-trials { grid-template-columns: 1fr; }
  .sd-sleep-row, .sd-sleep-scale { grid-template-columns: 70px minmax(0, 1fr); gap: .7rem; }
  .sd-action { padding: 1.35rem; border-radius: 22px; }
  .sd-action__button { width: 100%; }
  .sd-action .sd-action__info { padding: 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  .sd-search i { animation: none; }
  .sd-decisions a, .sd-action__button, .sd-action__links a { transition: none; }
  .sd-decisions a:hover, .sd-action__button:hover { transform: none; }
}

/* 날짜별로 달라지는 네 가지 */
.sd-dates { display: grid; gap: .7rem; margin: 0; padding: 0; list-style: none; }
.sd-dates li { display: grid; grid-template-columns: 118px minmax(0, 1fr); gap: 1rem; align-items: center; padding: 1rem 1.1rem; border: 1px solid var(--sg-line); border-radius: 14px; background: #fff; }
.sd-dates b { color: var(--sg-green); font-size: 1.05rem; font-weight: 800; letter-spacing: -.02em; }
.sd-dates b small { display: block; margin-top: .15rem; color: #7a847f; font-size: .7rem; font-weight: 600; letter-spacing: 0; }
.sd-dates span { color: var(--sg-ink); font-size: .92rem; line-height: 1.6; word-break: keep-all; }
.sd-dates span strong { display: block; color: var(--sg-deep); font-size: .98rem; }

/* 8주 장기치료 검토 흐름 */
.sd-flow { position: relative; display: grid; gap: 0; margin: 0; padding: 0 0 0 1.6rem; list-style: none; }
.sd-flow::before { content: ""; position: absolute; left: .45rem; top: .4rem; bottom: .4rem; width: 2px; background: linear-gradient(var(--sg-green), rgba(36, 120, 96, .25)); }
.sd-flow li { position: relative; padding: 0 0 1.25rem; }
.sd-flow li:last-child { padding-bottom: 0; }
.sd-flow li::before { content: ""; position: absolute; left: -1.6rem; top: .3rem; width: 1rem; height: 1rem; border: 2px solid var(--sg-green); border-radius: 50%; background: #fff; }
.sd-flow li.is-key::before { background: var(--sg-green); box-shadow: 0 0 0 5px rgba(36, 120, 96, .15); }
.sd-flow b { display: block; color: var(--sg-green); font-size: .74rem; font-weight: 800; letter-spacing: .06em; }
.sd-flow strong { display: block; margin: .15rem 0 .2rem; color: var(--sg-deep); font-size: 1rem; line-height: 1.5; word-break: keep-all; }
.sd-flow span { display: block; color: #5d6661; font-size: .86rem; line-height: 1.6; word-break: keep-all; }
.sd-flow li.is-key strong { color: var(--sg-green); }

/* 첫 화면 띠의 질문 */
.sd-question { margin: 1.3rem 0 1.1rem; color: #fff; font-size: clamp(1.4rem, 2.8vw, 2rem); font-weight: 680; line-height: 1.4; letter-spacing: -.045em; word-break: keep-all; }

@media (max-width: 600px) {
  .sd-dates li { grid-template-columns: 1fr; gap: .35rem; }
}

/* 원내 진료 공간 사진 */
.sd-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; margin: 2.4rem 0; }
.sd-gallery figure { margin: 0; }
.sd-gallery img { display: block; width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 16px; }
.sd-gallery figcaption { margin-top: .5rem; color: #5d6661; font-size: .8rem; line-height: 1.5; word-break: keep-all; }
.sd-gallery > small { grid-column: 1 / -1; color: #7a847f; font-size: .74rem; }
.sd-faq details p a { color: var(--sg-green); text-decoration: underline; text-underline-offset: 3px; }
.sd-faq details p .sd-faq__link { display: table; margin-top: .7rem; font-weight: 680; text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: 1px; }
.sd-br-m { display: none; }
@media (max-width: 600px) {
  .sd-br-m { display: inline; }
  .sd-hours { grid-template-columns: 1fr; }
}

/* 다이어트 한약 칼럼 전용 */
.sd-cover { width: min(1120px, calc(100% - 56px)); margin: 0 auto 2.4rem; }
.sd-cover img { display: block; width: 100%; height: auto; aspect-ratio: 1024 / 560; object-fit: cover; object-position: 60% 30%; border-radius: 24px; }
.sd-cover figcaption { margin-top: .8rem; color: #6b746f; font-size: .8rem; text-align: center; }

.sd-case { margin: 2.4rem 0; padding: 2rem; border: 1px solid var(--sg-line); border-radius: 24px; background: #fff; }
.sd-case__head { display: flex; gap: 1rem; align-items: center; margin-bottom: 1.6rem; }
.sd-case__mark { flex: 0 0 auto; display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; background: var(--sg-deep); color: #fff; font-size: .7rem; font-weight: 800; letter-spacing: .12em; }
.sd-case__head strong { display: block; color: var(--sg-deep); font-size: 1.2rem; line-height: 1.45; letter-spacing: -.03em; word-break: keep-all; }
.sd-case__head div span { display: block; margin-top: .3rem; color: var(--sg-muted); font-size: .84rem; }
.sd-case__sheets { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; margin: 0 0 1.4rem; }
.sd-case__sheets figure { margin: 0; }
.sd-case__sheets img { display: block; width: 100%; height: auto; aspect-ratio: 3 / 4; object-fit: cover; object-position: top; border-radius: 14px; border: 1px solid var(--sg-line); }
.sd-case__sheets figcaption { margin-top: .5rem; color: var(--sg-deep); font-size: .82rem; font-weight: 700; text-align: center; }
.sd-case__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; margin: 0; padding: 0; list-style: none; }
.sd-case__grid li { padding: 1.1rem 1.2rem; border-radius: 16px; background: var(--sg-soft); }
.sd-case__grid li.is-key { background: var(--sg-deep); color: #fff; }
.sd-case__grid b { display: block; margin-bottom: .6rem; color: var(--sg-green); font-size: .72rem; font-weight: 800; letter-spacing: .1em; }
.sd-case__grid li.is-key b { color: #bfe0d4; }
.sd-case__grid dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: .35rem .8rem; font-size: .88rem; }
.sd-case__grid dt { color: inherit; opacity: .75; }
.sd-case__grid dd { margin: 0; font-weight: 800; text-align: right; }
.sd-article .sd-case__note { margin: 1.2rem 0 0; color: #6b746f; font-size: .76rem; line-height: 1.7; word-break: keep-all; }
.sd-case__more { display: inline-block; margin-top: 1rem; color: var(--sg-green); font-weight: 700; text-decoration: none; border-bottom: 1px solid currentColor; }

.sd-wide { margin: 2.4rem 0; }
.sd-wide img { display: block; width: 100%; height: auto; border-radius: 20px; }
.sd-wide figcaption { margin-top: .7rem; color: var(--sg-deep); font-size: .9rem; font-weight: 600; text-align: center; }

.sd-chips { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.4rem 0; padding: 0; list-style: none; }
.sd-chips li { padding: .5rem .9rem; border: 1px solid var(--sg-green); border-radius: 999px; color: var(--sg-deep); font-size: .86rem; font-weight: 700; }
.sd-voice { margin: 2rem 0; padding: 1.6rem 1.8rem; border-left: 3px solid var(--sg-green); background: var(--sg-soft); border-radius: 0 18px 18px 0; }
.sd-voice p { margin: 0; color: var(--sg-deep); font-size: 1.12rem; font-weight: 700; line-height: 1.7; word-break: keep-all; }
.sd-voice cite { display: block; margin-top: .6rem; color: var(--sg-muted); font-size: .8rem; font-style: normal; }
.sd-review { margin: 2.4rem auto; max-width: 380px; }
.sd-review img { display: block; width: 100%; height: auto; border-radius: 18px; border: 1px solid var(--sg-line); }
.sd-review figcaption { margin-top: .7rem; color: #6b746f; font-size: .78rem; text-align: center; }
.sd-review figcaption a { color: var(--sg-green); font-weight: 700; }

@media (max-width: 600px) {
  .sd-cover { width: calc(100% - 40px); }
  .sd-cover img { aspect-ratio: 4 / 3; }
  .sd-case { padding: 1.4rem 1.1rem; }
  .sd-case__grid { grid-template-columns: 1fr; }
  .sd-voice { padding: 1.2rem 1.2rem; }
}
#see .sd-recap { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 600px) {
  #see .sd-recap { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .sd-review { max-width: 260px; }
}
.sd-article > section.column-related { box-sizing: border-box; width: 100%; max-width: none; margin: 1.6rem 0 0; padding: 1.6rem 1.8rem 1.8rem; border: 1px solid var(--sg-line); border-radius: 22px; background: #fff; }
.sd-article .column-related > p { margin: 0 0 .4rem; color: var(--sg-green); font-size: .66rem; font-weight: 800; letter-spacing: .16em; }
.sd-article .column-related h2 { margin: 0 0 1.1rem; padding: 0; font-size: 1.15rem; line-height: 1.45; }
@media (max-width: 600px) {
  .sd-article > section.column-related { padding: 1.3rem 1.1rem 1.4rem; }
}
