/* ==========================================================================
   치료멍멍 Bio Care — 공개(랜딩) 페이지 공통 스타일
   index.html + exosome.html + story.html 3개 페이지가 공유한다. (nav/footer 는 js/lp.js 가 주입)
   ========================================================================== */

/* ---------- 상단 내비게이션 ---------- */
/* 브랜드 톤(핑크) 옅은 틴트 + 불투명 흰색 베이스.
   반투명 흰색만 쓰면 스크롤 시 뒤 콘텐츠가 비쳐 메뉴 글자가 읽히지 않는다. */
.lp-nav { position: sticky; top: 0; z-index: 50;
  background:
    linear-gradient(90deg, rgba(224,52,139,.06) 0%, rgba(255,111,176,.045) 52%, rgba(224,52,139,.06) 100%),
    linear-gradient(180deg, #ffffff 0%, #fdf6fa 100%);
  backdrop-filter: blur(10px); border-bottom: 1px solid #f3e0ec;
  box-shadow: 0 1px 3px rgba(43,26,51,.05); }
/* 아래로 스크롤하면 살짝 진해지며 경계가 또렷해진다 (lp.js 가 클래스 토글) */
.lp-nav.is-stuck {
  background:
    linear-gradient(90deg, rgba(224,52,139,.1) 0%, rgba(255,111,176,.07) 52%, rgba(224,52,139,.1) 100%),
    linear-gradient(180deg, #ffffff 0%, #fbeef5 100%);
  border-bottom-color: #ecd0e0; box-shadow: 0 6px 20px rgba(43,26,51,.09); }
/* 자손 선택자(.lp-nav .wrap)를 쓰면 드로어 안의 .wrap 까지 높이·flex 가 적용되어
   메뉴 2행이 잘린다. 반드시 직계 자식(>)으로 한정한다. */
.lp-nav > .wrap { position: relative; display: flex; align-items: center; height: 66px; gap: 16px; }
.lp-logo { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 18px; flex-shrink: 0; }
.lp-logo .brand-mark { height: 34px; width: auto; }
.lp-logo small { font-weight: 600; font-size: 11px; color: var(--brand-dark); display: block; }
/* 중앙 정렬 — 좌측 로고 폭이 있어 flex spacer 만으로는 몇십 px 어긋난다.
   화면 정중앙에 고정하려면 absolute 로 띄우는 편이 정확하다. */
.lp-nav .links { position: absolute; left: 50%; transform: translateX(-50%);
  display: flex; gap: 22px; justify-content: center; }
.lp-nav .links a { font-size: 13.5px; font-weight: 600; color: var(--ink-2); white-space: nowrap;
  padding: 5px 0; border-bottom: 2px solid transparent; transition: .16s; }
.lp-nav .links a:hover { color: var(--brand-dark); }
.lp-nav .links a.on { color: var(--brand-dark); border-bottom-color: var(--brand); }
.lp-nav .spacer { flex: 1; }
.lp-nav .menu-btn { display: none; border: 1px solid var(--line); background: var(--surface);
  border-radius: 10px; padding: 8px 12px; font-size: 13px; font-weight: 700; cursor: pointer; color: var(--ink-2); }
/* 드로어 배경도 내비와 같은 톤으로 통일한다 */
.lp-drawer { display: none; border-top: 1px solid #f3e0ec;
  background: linear-gradient(180deg, #fdf6fa 0%, #ffffff 100%); }
.lp-drawer.open { display: block; }
/* 모바일 메뉴는 세로 1열 — 항목마다 한 줄을 차지해 터치 영역을 넉넉하게 둔다 */
.lp-drawer .wrap { display: grid; grid-template-columns: 1fr; gap: 2px; padding: 10px 22px 14px; }
.lp-drawer a { display: flex; align-items: center; justify-content: space-between;
  font-size: 15px; font-weight: 700; color: var(--ink-2); padding: 14px 2px;
  border-bottom: 1px solid var(--line-2); }
.lp-drawer a:last-child { border-bottom: 0; }
.lp-drawer a::after { content: '›'; font-size: 17px; color: var(--ink-3); font-weight: 600; }
.lp-drawer a.on { color: var(--brand-dark); }
.lp-drawer a.on::after { color: var(--brand); }

/* ---------- 언어 스위처 (KO / EN / ZH) ---------- */
.langsw { display: inline-flex; align-items: center; gap: 2px; flex-shrink: 0;
  padding: 3px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface-2); }
.langsw__btn { appearance: none; border: 0; cursor: pointer; padding: 6px 11px; border-radius: 999px;
  font-family: inherit; font-size: 12.5px; font-weight: 700; color: var(--ink-3);
  background: transparent; white-space: nowrap; line-height: 1.2; transition: color .16s, background .16s; }
.langsw__btn:hover { color: var(--brand-dark); background: var(--brand-light); }
.langsw__btn.active { color: #fff; background: linear-gradient(135deg, var(--brand), var(--brand-glow)); }

@media (max-width: 1080px){
  .lp-nav .links { display: none; }
  /* 메뉴가 사라지면 spacer 2개가 남아 로고와 버튼만 양끝으로 벌어진다 — 그대로 두어 정렬을 유지 */
  .lp-nav .menu-btn { display: inline-block; }
}
/* 모바일에서도 언어 스위처는 햄버거 버튼 왼쪽에 그대로 노출한다.
   대신 라벨을 짧게(KO / EN / 中) 바꿔 로고·버튼과 한 줄에 들어가게 한다.
   짧은 라벨은 lp.js 가 넣어 주는 data-short 속성에서 가져온다. */
@media (max-width: 640px){
  .langsw { padding: 2px; gap: 0; }
  .langsw__btn { font-size: 0; padding: 7px 9px; }
  .langsw__btn::before { content: attr(data-short); font-size: 12.5px; font-weight: 700; }
}
@media (max-width: 560px){
  .lp-nav > .wrap { height: 60px; gap: 8px; padding: 0 14px; }
  .lp-drawer .wrap { padding: 8px 16px 12px; }
  .lp-logo { font-size: 16px; gap: 9px; }
  .lp-logo .brand-mark { height: 30px; }
  .lp-logo small { display: none; }
  .lp-nav .menu-btn { padding: 7px 10px; font-size: 12.5px; }
}
/* 아주 좁은 화면(360px 이하)에서는 메뉴 버튼 라벨을 아이콘만 남긴다 */
@media (max-width: 380px){
  .lp-nav .menu-btn { font-size: 0; padding: 8px 11px; }
  .lp-nav .menu-btn::before { content: '☰'; font-size: 15px; }
}

/* ---------- 히어로 (index) ---------- */
.hero { background: var(--navy); color: #fff; padding: 84px 0 90px; position: relative; overflow: hidden; }
/* 병원 건물 사진은 배경 레이어로 분리 — filter 는 개별 background 레이어에 걸 수 없어 ::before 사용.
   inset 을 음수로 빼서 blur 로 생기는 테두리 흐림이 섹션 경계에 보이지 않게 한다.
   블러를 1.4px 까지 낮추고 채도·대비를 살려 간판과 건물이 또렷하게 읽히도록 했다. */
.hero::before { content: ''; position: absolute; inset: -40px;
  background: url('../assets/hero-clinic.jpg') center 55% / cover no-repeat;
  filter: blur(1.4px) saturate(1.14) contrast(1.06) brightness(1.02); transform: scale(1.02); z-index: 0; }
/* 왼쪽(글자 영역)만 짙게 덮고 오른쪽은 크게 열어 두어 병원 간판이 선명히 보이게 한다.
   오른쪽 덮개를 24% → 8% 로 줄인 대신, 글자 가독성은 왼쪽 구간의 짙은 값으로 유지한다. */
.hero::after { content: ''; position: absolute; inset: 0; z-index: 1; background:
    linear-gradient(100deg, rgba(43,26,51,.92) 0%, rgba(43,26,51,.74) 38%, rgba(43,26,51,.3) 66%, rgba(43,26,51,.08) 100%),
    radial-gradient(1000px 460px at 88% -10%, rgba(224,52,139,.16), transparent),
    linear-gradient(to bottom, transparent 62%, rgba(43,26,51,.42) 100%); }
/* 모바일은 글자가 사진 위 전체를 덮으므로 오버레이를 다시 짙게 되돌린다 */
@media (max-width: 720px){
  .hero::after { background:
      linear-gradient(160deg, rgba(43,26,51,.9) 0%, rgba(43,26,51,.78) 55%, rgba(43,26,51,.6) 100%),
      radial-gradient(700px 340px at 88% -10%, rgba(224,52,139,.18), transparent); }
}
.hero .wrap { position: relative; z-index: 2; }
.hero .eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18); padding: 7px 15px; border-radius: 999px; font-size: 13px; font-weight: 600; }
.hero h1 { font-size: 48px; line-height: 1.15; font-weight: 800; letter-spacing: -1px; margin: 22px 0 18px; max-width: 780px; }
.hero h1 .grad { background: linear-gradient(90deg, #ff6fb0, #ffc2dd); -webkit-background-clip: text; background-clip: text; color: transparent; }
/* max-width 를 690px 로 넓혀 문장 끝 한 글자만 다음 줄로 떨어지는 것을 막는다 */
.hero p.lead { font-size: 18px; color: #e0cdda; max-width: 690px; line-height: 1.7; }
/* 두 번째 문단 — 인라인 style 대신 클래스로 두어 모바일에서 크기를 다시 줄일 수 있게 한다 */
.hero p.lead.sm { margin-top: 14px; font-size: 16px; color: #f0d8e6; }
.hero .cta { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
/* 모바일에서만 쓰는 줄바꿈 — 긴 제목이 어색하게 3줄로 끊기는 것을 막는다 */
.hero h1 .br-m { display: none; }
@media (max-width: 720px){
  .hero { padding: 54px 0 60px; }
  .hero h1 { font-size: 34px; letter-spacing: -.7px; margin: 18px 0 16px; }
  .hero h1 .br-m { display: inline; }
  .hero p.lead { font-size: 16px; line-height: 1.72; }
  .hero p.lead.sm { font-size: 15px; }
  .hero .cta { margin-top: 26px; gap: 10px; }
}
/* 버튼 3개가 어정쩡하게 2+1 로 끊기지 않게, 좁은 화면에서는 한 줄에 하나씩 꽉 채운다 */
@media (max-width: 560px){
  .hero { padding: 44px 0 50px; }
  .hero h1 { font-size: 28px; }
  .hero .eyebrow { font-size: 12px; padding: 6px 13px; }
  .hero .cta { display: grid; grid-template-columns: 1fr; gap: 9px; }
  .hero .cta .btn { width: 100%; padding: 13px 18px; font-size: 14.5px; }
}

/* ---------- 페이지 히어로 (독립 메뉴 페이지 공통) ---------- */
.page-hero { position: relative; overflow: hidden; color: #fff; padding: 58px 0 62px;
  background: radial-gradient(900px 420px at 88% -20%, rgba(224,52,139,.34), transparent 62%),
              linear-gradient(140deg, #2b1a33 0%, #40244a 52%, #23131f 100%); }
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero .crumb { font-size: 12.5px; color: #b39dab; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.page-hero .crumb a { color: #d9c5d2; }
.page-hero .crumb a:hover { color: #fff; }
.page-hero .crumb i { font-style: normal; color: #6e5764; }
.page-hero .eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  padding: 6px 14px; border-radius: 999px; font-size: 12.5px; font-weight: 700; }
.page-hero h1 { font-size: 36px; line-height: 1.22; font-weight: 800; letter-spacing: -.9px;
  margin: 16px 0 14px; max-width: 820px; }
.page-hero h1 em { font-style: normal;
  background: linear-gradient(90deg, #ff6fb0, #ffc2dd); -webkit-background-clip: text; background-clip: text; color: transparent; }
.page-hero p { font-size: 16px; color: #ddc9d7; max-width: 720px; line-height: 1.75; }
.page-hero .facts { display: flex; gap: 26px; margin-top: 30px; flex-wrap: wrap; }
.page-hero .facts .f b { font-size: 23px; font-weight: 800; color: #fff; display: block; }
.page-hero .facts .f span { font-size: 12.5px; color: #b39dab; }
@media (max-width: 720px){ .page-hero h1 { font-size: 27px; } }

/* ---------- 섹션 공통 ---------- */
section.blk { padding: 78px 0; }
section.blk.alt { background: var(--surface); }
section.blk.tight { padding: 58px 0; }
.kicker { color: var(--brand-dark); font-weight: 800; font-size: 13px; letter-spacing: .5px; text-transform: uppercase; }
.blk h2 { font-size: 32px; font-weight: 800; letter-spacing: -.6px; margin: 8px 0 12px; }
.blk h3 { font-size: 20px; font-weight: 800; letter-spacing: -.3px; margin: 0 0 12px; }
.blk .sub { color: var(--ink-2); font-size: 16px; max-width: 680px; margin-bottom: 40px; }
@media (max-width: 720px){ .blk h2 { font-size: 25px; } }

/* ---------- ORIGIN STORY ---------- */
section.origin { background:
    radial-gradient(900px 500px at 12% 0%, var(--brand-tint), transparent),
    linear-gradient(180deg, var(--bg), var(--surface)); }
/* 사진이 세로로 길어 사진 열을 좁히고, 글 열이 사진 높이를 따라가도록 위에서 정렬한다 */
.origin-grid { display: grid; grid-template-columns: .68fr 1.32fr; gap: 48px; align-items: start; }
@media (max-width: 900px){ .origin-grid { grid-template-columns: 1fr; gap: 32px; } }
.origin-photo { position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 24px 60px rgba(180,31,108,.24); border: 4px solid #fff; }
/* carol-full.jpg 는 원본 세로 사진 — 자르지 않고 비율 그대로 노출한다 */
.origin-photo img { width: 100%; height: auto; display: block; }
/* 모바일에서는 세로 사진이 화면을 다 잡아먹으므로 폭을 제한해 가운데 둔다 */
@media (max-width: 900px){ .origin-photo { max-width: 340px; margin: 0 auto; } }
.origin-photo .tag { position: absolute; left: 16px; bottom: 16px; z-index: 2;
  background: rgba(43,26,51,.72); backdrop-filter: blur(6px); color: #fff; padding: 8px 14px;
  border-radius: 999px; font-size: 12.5px; font-weight: 700; display: flex; align-items: center; gap: 7px;
  border: 1px solid rgba(255,255,255,.2); }
.origin-photo .tag .gold { color: var(--gold); }
.origin-body .kicker { display: flex; align-items: center; gap: 8px; }
.origin-body h2 { font-size: 30px; font-weight: 800; letter-spacing: -.6px; margin: 10px 0 8px; line-height: 1.25; }
.origin-body h2 em { font-style: normal; background: linear-gradient(90deg, var(--brand), var(--brand-glow)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.origin-lead { font-size: 15.5px; color: var(--ink-2); line-height: 1.8; margin-bottom: 22px; }
.origin-steps { display: grid; gap: 12px; }
.origin-step { display: flex; gap: 14px; padding: 16px 18px; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
  transition: transform .22s cubic-bezier(.2,.7,.3,1), box-shadow .22s, border-color .22s; }
.origin-step:hover { transform: translateX(4px); border-color: var(--brand-light); box-shadow: 0 14px 34px rgba(224,52,139,.15); }
.origin-step .ic { width: 40px; height: 40px; flex-shrink: 0; border-radius: 11px;
  background: linear-gradient(135deg, var(--brand-light), var(--accent-soft)); color: var(--brand-dark);
  display: grid; place-items: center; font-size: 19px; }
.origin-step h4 { font-size: 15px; margin-bottom: 3px; }
.origin-step p { font-size: 13.5px; color: var(--ink-2); line-height: 1.6; }
.origin-quote { margin-top: 24px; padding: 18px 22px; border-left: 3px solid var(--brand);
  background: var(--brand-tint); border-radius: 0 12px 12px 0; font-size: 14.5px; color: var(--ink);
  font-weight: 500; line-height: 1.7; }
.origin-quote cite { display: block; margin-top: 8px; font-size: 13px; color: var(--brand-dark); font-weight: 700; font-style: normal; }
.origin-wins { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.origin-wins span { font-size: 12px; font-weight: 700; color: var(--brand-dark);
  background: #fff; border: 1px solid var(--brand-light); border-radius: 999px; padding: 6px 12px;
  display: inline-flex; align-items: center; gap: 6px; box-shadow: 0 2px 8px rgba(224,52,139,.08); }

/* ---------- FEATURES ---------- */
.feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
@media (max-width: 900px){ .feat-grid { grid-template-columns: 1fr; } }
.feat { position: relative; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; background: linear-gradient(180deg, var(--surface), var(--surface-2)); box-shadow: var(--shadow); overflow: hidden;
  transition: transform .22s cubic-bezier(.2,.7,.3,1), box-shadow .22s, border-color .22s; }
.feat::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; opacity: 0; transition: .22s;
  background: linear-gradient(90deg, var(--brand), var(--brand-glow) 55%, var(--gold)); }
.feat:hover { transform: translateY(-4px); border-color: var(--brand-light); box-shadow: 0 18px 44px rgba(224,52,139,.16); }
.feat:hover::before { opacity: 1; }
.feat:hover .ico { background: linear-gradient(135deg, var(--brand), var(--brand-glow)); color: #fff; transform: scale(1.05); }
.feat .ico { width: 46px; height: 46px; border-radius: 12px; background: var(--brand-light); color: var(--brand-dark);
  display: grid; place-items: center; font-size: 22px; transition: .22s; }
.feat h4 { font-size: 17px; margin: 16px 0 8px; }
.feat p { font-size: 14px; color: var(--ink-2); }
.feat ul { margin: 12px 0 0; padding-left: 18px; font-size: 13.5px; color: var(--ink-2); }
.feat ul li { margin-bottom: 5px; }
.feat .more { display: inline-block; margin-top: 12px; font-size: 13px; font-weight: 700; color: var(--brand-dark); }

/* ---------- SAFETY ---------- */
.safety { background: var(--navy); color: #fff; }
.safety h2 { color: #fff; } .safety .sub { color: #c6d2e6; }
.safety-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.safety-grid.three { grid-template-columns: repeat(3,1fr); }
@media (max-width: 900px){ .safety-grid.three { grid-template-columns: 1fr; } }
@media (max-width: 720px){ .safety-grid { grid-template-columns: 1fr; } }
.safety-item { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 20px; }
.safety-item h4 { font-size: 15px; margin-bottom: 6px; display: flex; gap: 9px; align-items: center; }
.safety-item p { font-size: 13.5px; color: #b8c4db; }

/* ---------- 엑소좀 전용 ---------- */
.exo-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: 44px; align-items: start; }
@media (max-width: 900px){ .exo-grid { grid-template-columns: 1fr; gap: 30px; } }
.exo-def { font-size: 15.5px; color: var(--ink-2); line-height: 1.85; }
.exo-def b { color: var(--ink); }
.exo-def p { margin-bottom: 14px; }
.exo-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 22px 24px; box-shadow: var(--shadow); }
.exo-card h4 { font-size: 15.5px; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.exo-card.warn { background: var(--warn-bg); border-color: #f3d9a8; }
.exo-card.warn h4, .exo-card.warn li, .exo-card.warn p { color: #92400e; }
.exo-terms { display: grid; gap: 10px; }
.exo-terms .t { display: grid; grid-template-columns: 92px 1fr; gap: 12px; font-size: 13.5px;
  padding: 10px 0; border-bottom: 1px dashed var(--line); }
.exo-terms .t:last-child { border: none; }
.exo-terms .t b { color: var(--brand-dark); }
.exo-terms .t span { color: var(--ink-2); line-height: 1.6; }
@media (max-width: 560px){ .exo-terms .t { grid-template-columns: 1fr; gap: 3px; } }

/* ---------- 제휴병원 (clinics) — 로고 타일 + 호버 팝업 ---------- */
/* 페이지에는 로고만 노출하고, 상세 정보는 로고에 마우스를 올릴 때
   브라우저 창 모양 팝업으로 띄운다. 정보량이 많아 카드로 펼치면
   페이지가 길어지고 두 병원을 비교하기 어려워 타일 방식으로 바꿨다. */
.clinic-hub { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width: 860px){ .clinic-hub { grid-template-columns: 1fr; } }

/* 열린 타일을 형제보다 위로 올려, 팝업이 옆 타일에 가리지 않게 한다 */
.clinic-tile { position: relative; z-index: 1; display: grid; place-items: center; gap: 16px;
  min-height: 210px; padding: 34px 28px; cursor: pointer; outline: none;
  border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface);
  box-shadow: var(--shadow); transition: transform .22s cubic-bezier(.2,.7,.3,1), box-shadow .22s, border-color .22s; }
.clinic-tile:hover, .clinic-tile:focus-visible, .clinic-tile.on {
  z-index: 981; transform: translateY(-3px); border-color: var(--brand-light); box-shadow: 0 18px 44px rgba(224,52,139,.18); }
.clinic-tile .tile-logo { width: 100%; max-width: 240px; height: auto; }
/* 제이 동물의료센터 로고는 투명 PNG가 아니라 간판 사진이라 경계가 드러난다 — 라운드+그림자로 의도된 액자처럼 보이게 한다 */
.clinic-tile.j .tile-logo { border-radius: 10px; box-shadow: 0 6px 18px rgba(43,26,51,.16); }
.clinic-tile .tile-hint { font-size: 12.5px; font-weight: 700; color: var(--brand-dark);
  background: var(--brand-light); border-radius: 999px; padding: 6px 14px; transition: .2s; }
.clinic-tile:hover .tile-hint, .clinic-tile.on .tile-hint { background: var(--brand); color: #fff; }

/* 팝업 — 창(iframe) 느낌의 프레임. 타일 위에 겹쳐 뜬다. */
/* z-index 는 sticky 내비(50)·AI 상담 FAB(960/961) 보다 위에 와야 가려지지 않는다 */
.clinic-pop { position: absolute; left: 50%; top: calc(100% - 10px); transform: translate(-50%, 8px);
  width: min(92vw, 520px); z-index: 980; opacity: 0; visibility: hidden; pointer-events: none;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  box-shadow: 0 26px 70px rgba(43,26,51,.3); text-align: left; cursor: default;
  transition: opacity .2s, transform .2s, visibility .2s; }
.clinic-tile:hover .clinic-pop, .clinic-tile:focus-within .clinic-pop, .clinic-tile.on .clinic-pop {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); }
/* 두 번째 타일은 오른쪽 끝에 붙어 화면을 넘칠 수 있어 오른쪽 정렬로 뒤집는다 */
@media (min-width: 861px){
  .clinic-hub .clinic-tile:last-child .clinic-pop { left: auto; right: 0; transform: translate(0, 8px); }
  .clinic-hub .clinic-tile:last-child:hover .clinic-pop,
  .clinic-hub .clinic-tile:last-child:focus-within .clinic-pop,
  .clinic-hub .clinic-tile:last-child.on .clinic-pop { transform: translate(0, 0); }
}
.pop-bar { display: flex; align-items: center; gap: 7px; padding: 10px 14px;
  background: linear-gradient(135deg, var(--navy), var(--brand-dark)); }
.pop-bar i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.34); }
.pop-bar i:first-child { background: #ff6058; } .pop-bar i:nth-child(2) { background: #ffbd2e; }
.pop-bar i:nth-child(3) { background: #28c840; }
.pop-bar span { margin-left: 8px; font-size: 12px; font-weight: 700; color: #f0d5e4; }
.pop-bar .pop-x { margin-left: auto; background: 0; border: 0; color: #f0d5e4; font-size: 20px;
  line-height: 1; padding: 0 4px; cursor: pointer; border-radius: 6px; font-family: inherit; display: none; }
.pop-bar .pop-x:hover { background: rgba(255,255,255,.16); color: #fff; }
/* 팝업이 화면 아래로 넘칠 때 위쪽으로 뒤집는다 (JS 가 .up 을 붙인다) */
.clinic-tile.up .clinic-pop { top: auto; bottom: calc(100% - 10px); transform: translate(-50%, -8px); }
.clinic-tile.up:hover .clinic-pop, .clinic-tile.up:focus-within .clinic-pop,
.clinic-tile.up.on .clinic-pop { transform: translate(-50%, 0); }
@media (min-width: 861px){
  .clinic-hub .clinic-tile:last-child.up .clinic-pop { transform: translate(0, -8px); }
  .clinic-hub .clinic-tile:last-child.up:hover .clinic-pop,
  .clinic-hub .clinic-tile:last-child.up:focus-within .clinic-pop,
  .clinic-hub .clinic-tile:last-child.up.on .clinic-pop { transform: translate(0, 0); }
}
.pop-body { padding: 24px 26px; max-height: min(58vh, 460px); overflow-y: auto; }
.pop-body h3 { font-size: 20px; font-weight: 800; letter-spacing: -.4px;
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
.pop-body h3 .badge { font-size: 11.5px; font-weight: 700; color: var(--brand-dark);
  background: var(--brand-light); border-radius: 999px; padding: 4px 11px; }

/* 모바일 — 호버가 없으므로 탭하면 .on 이 붙고, 팝업을 화면 하단 시트로 띄운다 */
@media (max-width: 860px){
  .clinic-tile { min-height: 168px; padding: 26px 20px; gap: 13px; }
  .clinic-tile .tile-logo { max-width: 210px; }
  /* transform 이 걸린 조상은 position:fixed 의 기준(containing block)이 되어 하단 시트가 깨진다 —
     모바일에서는 타일을 들어올리는 효과를 쓰지 않는다. */
  .clinic-tile, .clinic-tile:hover, .clinic-tile:focus-visible, .clinic-tile.on { transform: none; }
  /* 터치기기의 sticky hover 로 팝업이 열린 채 남는 것을 막는다. 아래 .on 규칙이 이보다 뒤에 와야 한다. */
  .clinic-tile:hover .clinic-pop, .clinic-tile:focus-within .clinic-pop {
    opacity: 0; visibility: hidden; pointer-events: none; }
  .clinic-pop { position: fixed; left: 0; right: 0; bottom: 0; top: auto; width: 100%;
    transform: translateY(14px); border-radius: 18px 18px 0 0; border: 0;
    box-shadow: 0 -14px 50px rgba(43,26,51,.34); }
  .clinic-tile.on .clinic-pop { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
  .pop-bar { padding: 13px 16px; }
  .pop-bar .pop-x { display: block; }
  .pop-body { padding: 20px 18px 26px; max-height: 62vh; -webkit-overflow-scrolling: touch; }
  .pop-body h3 { font-size: 18px; }
  /* 시트 뒤를 덮는 딤 — 바깥을 눌러 닫는 영역이 시각적으로 드러난다 */
  body.pop-open::after { content: ''; position: fixed; inset: 0; z-index: 39;
    background: rgba(43,26,51,.5); animation: popFade .2s ease; }
  @keyframes popFade { from { opacity: 0 } to { opacity: 1 } }
  /* 시트가 열리면 AI 상담 FAB 이 겹치므로 숨긴다 */
  body.pop-open .tmm-ai { display: none; }
}
@media (prefers-reduced-motion: reduce){
  .clinic-tile, .clinic-pop { transition: opacity .2s, visibility .2s; }
  .clinic-tile:hover, .clinic-tile.on { transform: none; }
}
.clinic-lead { font-size: 14.5px; color: var(--ink-2); line-height: 1.75; margin-bottom: 20px; }
.clinic-info { display: grid; gap: 0; border-top: 1px solid var(--line); margin-bottom: 18px; }
.clinic-info .ci { display: grid; grid-template-columns: 86px 1fr; gap: 12px;
  padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 13.5px; }
.clinic-info .ci b { color: var(--brand-dark); font-weight: 700; }
.clinic-info .ci span { color: var(--ink-2); line-height: 1.6; }
.clinic-info .ci a { color: var(--brand-dark); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
/* 주소 아래 한국어 원문 — 내비·택시 입력용으로 어느 언어에서도 함께 보여준다 */
.ci-ko { display: block; margin-top: 3px; font-size: 12px; color: var(--ink-3); }
html[data-lang="ko"] .ci-ko { display: none; }
@media (max-width: 560px){ .clinic-info .ci { grid-template-columns: 1fr; gap: 3px; } }
.clinic-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.clinic-tags span { font-size: 12px; font-weight: 700; color: var(--ink-2);
  background: var(--surface-2); border: 1px solid var(--line); border-radius: 999px; padding: 6px 12px; }
.clinic-cta { display: flex; gap: 10px; flex-wrap: wrap; }

/* 협력병원 로고 그리드 — 로고를 누르면 공개 정보 팝업(js/partners.js)이 열린다 */
.partner-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.pg { display: grid; place-items: center; gap: 9px; padding: 18px 16px; min-height: 104px;
  font-family: inherit; text-align: center; cursor: pointer;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); transition: transform .2s cubic-bezier(.2,.7,.3,1), box-shadow .2s, border-color .2s; }
.pg:hover { transform: translateY(-3px); border-color: var(--brand-light); box-shadow: 0 14px 32px rgba(224,52,139,.14); }
.pg:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }
.pg img { width: 100%; max-width: 190px; height: auto; }
.pg-hint { font-size: 11.5px; font-weight: 700; color: var(--ink-3); transition: color .2s; }
.pg:hover .pg-hint, .pg:focus-visible .pg-hint { color: var(--brand-dark); }
@media (max-width: 900px){ .partner-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; } }
@media (max-width: 620px){ .partner-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .pg { padding: 14px 12px; min-height: 88px; } }

/* 협력병원 팝업 — 화면 중앙 모달(제휴병원 타일 팝업과 프레임 디자인을 공유한다) */
.pgm { position: fixed; inset: 0; z-index: 990; display: grid; place-items: center; padding: 20px; }
/* display 를 지정한 요소는 hidden 속성이 무시되므로 명시적으로 눌러 준다 */
.pgm[hidden], .pgm [hidden] { display: none; }
.pgm-dim { position: absolute; inset: 0; background: rgba(43,26,51,.55); animation: popFade .18s ease; }
.pgm-win { position: relative; width: min(94vw, 520px); background: #fff; border-radius: 14px;
  overflow: hidden; box-shadow: 0 26px 70px rgba(43,26,51,.34); text-align: left;
  animation: pgmIn .2s cubic-bezier(.2,.7,.3,1); }
@keyframes pgmIn { from { opacity: 0; transform: translateY(10px) } to { opacity: 1; transform: none } }
.pgm .pop-bar .pop-x { display: block; }
.pgm .pop-body { max-height: min(74vh, 560px); }
.pgm .clinic-lead { margin-bottom: 18px; }
.pgm .clinic-info { margin-bottom: 16px; }
.pgm-note { font-size: 12.5px; line-height: 1.7; color: #92400e;
  background: #fffbeb; border: 1px solid #fde68a; border-radius: 10px; padding: 11px 13px; margin-bottom: 16px; }
.pgm-src { font-size: 12px; line-height: 1.7; color: var(--ink-3); margin-top: 14px;
  padding-top: 12px; border-top: 1px solid var(--line); }
body.pgm-open { overflow: hidden; }
body.pgm-open .tmm-ai { display: none; }
@media (max-width: 560px){
  .pgm { padding: 0; place-items: end stretch; }
  .pgm-win { width: 100%; border-radius: 18px 18px 0 0; animation: none; }
  .pgm .pop-body { max-height: 66vh; }
}

/* ---------- CTA / 공통 알림 ---------- */
.cta-band { background: linear-gradient(135deg, var(--brand), var(--brand-glow)); color: #fff; padding: 60px 0; text-align: center; }
.cta-band h2 { color: #fff; font-size: 30px; } .cta-band p { font-size: 16px; opacity: .92; margin: 10px 0 26px; }
.cta-band .btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.disc { background: var(--warn-bg); border: 1px solid #f3d9a8; color: #92400e; border-radius: 12px;
  padding: 16px 18px; font-size: 13px; margin-top: 30px; line-height: 1.7; }
.disc b { color: #7c2d12; }

/* ---------- 푸터 ---------- */
footer.lp { position: relative; overflow: hidden;
  background: radial-gradient(1100px 400px at 15% -10%, rgba(224,52,139,.28), transparent 60%),
              linear-gradient(160deg, #2b1a33 0%, #3a2140 55%, #23131f 100%);
  color: #c9adbf; padding: 0; font-size: 13px; }
footer.lp .ft-top-line { height: 3px; background: linear-gradient(90deg, transparent, var(--brand), var(--gold), var(--brand-glow), transparent); }
/* 메뉴·소개문·배지를 모두 없애 로고만 남았으므로 여백을 줄인다 */
footer.lp .ft-main { padding: 36px 0 26px; }
footer.lp .ft-brand .ft-logo { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
footer.lp .ft-brand .ft-logo .brand-mark { height: 40px; width: auto; filter: brightness(0) invert(1); }
footer.lp .ft-brand .ft-logo b { color: #fff; font-size: 17px; letter-spacing: -.3px; display: block; }
footer.lp .ft-brand .ft-logo small { color: var(--gold); font-size: 11px; font-weight: 600; letter-spacing: .4px; }
footer.lp .ft-bar .cr a { color: #e6d5e0; text-decoration: underline; text-underline-offset: 2px; }
footer.lp .ft-bar .cr a:hover { color: #fff; }

footer.lp .ft-credit { border-top: 1px solid rgba(255,255,255,.09); padding: 22px 0 0;
  display: flex; flex-wrap: wrap; gap: 12px 40px; justify-content: space-between; align-items: center; }
footer.lp .ft-credit .cc { font-size: 13px; color: #b39dab; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
footer.lp .ft-credit .cc b { color: #fff; }
footer.lp .ft-credit .cc .role-tag { color: var(--gold); font-weight: 700; font-size: 11.5px;
  border: 1px solid rgba(202,162,90,.4); border-radius: 999px; padding: 3px 10px; }
footer.lp .ft-credit .cc .sep { color: #6e5764; }
/* 함께 운영하는 사이트 링크 줄 */
/* 오른쪽 정렬 — 본문 링크 목록과 구분되는 부가 정보 줄이므로 끝으로 몰아 둔다.
   좁은 화면에서 줄바꿈되면 각 줄도 오른쪽에 맞춰진다. */
footer.lp .ft-sites { border-top: 1px solid rgba(255,255,255,.09); padding: 18px 0 0;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 8px 14px; }
footer.lp .ft-sites .role-tag { color: var(--gold); font-weight: 700; font-size: 11.5px;
  border: 1px solid rgba(202,162,90,.4); border-radius: 999px; padding: 3px 10px; }
footer.lp .ft-sites a { font-size: 13px; font-weight: 600; color: #e6d5e0;
  border-bottom: 1px solid rgba(230,213,224,.35); padding-bottom: 1px; }
footer.lp .ft-sites a:hover { color: #fff; border-bottom-color: var(--brand-glow); }
footer.lp .ft-sites a::after { content: ' ↗'; font-size: 11px; color: var(--gold); }
footer.lp .ft-bar { border-top: 1px solid rgba(255,255,255,.09); padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
footer.lp .ft-bar .cr { font-size: 12.5px; color: #9a7d8f; }
footer.lp .ft-bar .cr b { color: #e6d5e0; }
footer.lp b { color: #fff; }
/* ---------- 모바일 공통 최적화 ---------- */
/* 섹션 여백·본문 크기를 한 곳에서 줄여 페이지 전체 리듬을 맞춘다.
   개별 컴포넌트 미디어쿼리는 위쪽에 두고, 여기서는 공통 간격만 다룬다. */
@media (max-width: 720px){
  .wrap { padding: 0 18px; }
  section.blk { padding: 54px 0; }
  section.blk.tight { padding: 42px 0; }
  .blk .sub { font-size: 15px; margin-bottom: 28px; }
  .page-hero { padding: 44px 0 48px; }
  .page-hero p { font-size: 15px; }
  .page-hero .facts { gap: 18px; margin-top: 22px; }
  .origin-body h2 { font-size: 23px; }
  .origin-lead { font-size: 14.5px; }
  .feat { padding: 22px; }
  .exo-def { font-size: 14.5px; }
  .cta-band { padding: 48px 0; }
  .cta-band h2 { font-size: 24px; }
  .cta-band p { font-size: 15px; }
  .cta-band .btns { display: grid; grid-template-columns: 1fr; gap: 9px; }
  .cta-band .btns .btn { width: 100%; }
  footer.lp .ft-credit { gap: 10px; }
  footer.lp .ft-bar { padding: 18px 0; }
}
@media (max-width: 560px){
  .wrap { padding: 0 16px; }
  section.blk { padding: 44px 0; }
  .blk h2 { font-size: 22px; }
  .origin-photo { border-width: 3px; }
  .disc { font-size: 12.5px; padding: 14px 15px; }
}

/* ---------- 본문 앵커 (#emergency · #ask) ---------- */
/* 상단 고정 내비(66px)를 피해 앵커 진입 시 제목이 가려지지 않게 한다 */
section[id] { scroll-margin-top: 90px; }
@media (max-width: 900px){ section[id] { scroll-margin-top: 20px; } }

/* ==========================================================================
   바이오 자료 (bio.html) — 가로 이동 슬라이드 뷰어
   PDF 인포그래픽을 이미지로 렌더해 좌우로 넘겨 본다.
   · 데스크탑: 이전/다음 버튼 + 키보드(←/→) + 점 인디케이터
   · 모바일  : scroll-snap 스와이프 (버튼도 그대로 동작)
   이미지가 본문이므로 스크롤 컨테이너는 세로로 자라지 않게 aspect-ratio 로 고정한다.
   ========================================================================== */
.deck { position: relative; }
.deck-stage { position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--navy); border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(180,31,108,.16); }

/* 트랙 — 가로 스크롤 + 스냅. 슬라이드는 100% 폭을 차지한다 */
.deck-track { display: flex; overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory; scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.deck-track::-webkit-scrollbar { display: none; }
.deck-slide { flex: 0 0 100%; scroll-snap-align: center; position: relative;
  display: flex; flex-direction: column; background: #fff; }
/* 이미지 자체가 클릭 대상(확대) — 인포그래픽 글자가 작아 확대가 필요하다 */
.deck-slide .shot { display: block; width: 100%; padding: 0; border: 0; background: #fff;
  cursor: zoom-in; }
.deck-slide .shot img { width: 100%; height: auto; display: block; }
.deck-slide .shot:focus-visible { outline: 2px solid var(--brand); outline-offset: -2px; }
/* 캡션은 이미지 위에 겹치지 않는다 — 자료 하단(로고·페이지번호)을 가리면 안 된다 */
.deck-slide figcaption { display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 11px 18px; font-size: 13px; font-weight: 700; color: #fff; background: var(--navy); }
.deck-slide figcaption .zoom { flex: none; font-size: 11.5px; font-weight: 700; color: #f6d9e8;
  border: 1px solid rgba(255,255,255,.28); border-radius: 999px; padding: 3px 10px; }
@media (max-width: 560px){
  .deck-slide figcaption { font-size: 11.5px; padding: 9px 12px; }
  .deck-slide figcaption .zoom { display: none; }
}

/* 확대 보기 — 가로형 A4 자료는 모바일 폭에서 글자가 작아 전체화면으로 띄운다.
   세로로 세우지 않고, 화면에 맞춰 키운 뒤 가로 스크롤로 훑어보게 한다. */
/* 배경은 반투명으로 두지 않는다 — 뒤 본문과 AI 상담 FAB 가 비쳐 자료가 읽히지 않는다 */
.deck-zoom { position: fixed; inset: 0; z-index: 1200; display: none;
  background: #1a0d1f; padding: 54px 0 20px; }
.deck-zoom.open { display: block; }
.deck-zoom .pane { width: 100%; height: 100%; overflow: auto; -webkit-overflow-scrolling: touch;
  display: flex; align-items: center; justify-content: center; }
/* 가로 화면 — object-fit:contain 으로 화면 안에 꼭 맞춘다. 화면보다 크게 띄우면
   중앙정렬 때문에 왼쪽으로 넘친 부분이 스크롤로도 닿지 않는다 */
.deck-zoom img { max-width: none; width: 100%; height: 100%; object-fit: contain; }
@media (orientation: portrait){
  /* 세로 화면 — 폭 기준으로 크게 키우고 가로 스크롤로 훑어본다(왼쪽 끝부터 시작) */
  .deck-zoom .pane { justify-content: flex-start; }
  .deck-zoom img { width: 240vw; max-width: 240vw; height: auto; object-fit: fill; }
}
.deck-zoom .zclose { position: absolute; top: 12px; right: 14px; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%; cursor: pointer; font-size: 19px; line-height: 1;
  color: var(--brand-dark); background: #fff; border: 0; box-shadow: 0 6px 20px rgba(0,0,0,.3); }
.deck-zoom .zcap { position: absolute; top: 18px; left: 18px; right: 66px; z-index: 2;
  font-size: 12.5px; font-weight: 700; color: #f3dae8; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
body.zoom-lock { overflow: hidden; }
/* 확대 중에는 AI 상담 FAB 를 감춘다 — position:fixed 라 overflow:hidden 으로는 사라지지 않고
   자료 위에 겹쳐 보인다(모바일에서 특히 자료의 오른쪽 아래를 가린다) */
body.zoom-lock .tmm-ai { display: none; }

/* 좌우 화살표 — 이미지 위에 겹친다. 첫/마지막에서는 disabled.
   설명문이 길어 스테이지가 세로로 크므로 top:50% 로 두면 화살표가 글 중앙에 떠버린다.
   자료 이미지(1930×1366 = 폭의 70.8%) 중앙, 즉 스테이지 폭의 35.4% 지점에 맞춘다. */
.deck-stage { container-type: inline-size; }
.deck-arrow { position: absolute; top: 50%; top: 35.4cqw; transform: translateY(-50%); z-index: 3;
  width: 46px; height: 46px; border-radius: 50%; cursor: pointer;
  display: grid; place-items: center; font-size: 20px; line-height: 1; color: var(--brand-dark);
  background: rgba(255,255,255,.92); border: 1px solid var(--line);
  box-shadow: 0 6px 20px rgba(43,26,51,.22); transition: .18s; }
.deck-arrow:hover:not(:disabled) { background: var(--brand); color: #fff; border-color: var(--brand); transform: translateY(-50%) scale(1.07); }
.deck-arrow:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }
.deck-arrow:disabled { opacity: .32; cursor: default; }
.deck-arrow.prev { left: 14px; } .deck-arrow.next { right: 14px; }
@media (max-width: 560px){
  .deck-arrow { width: 38px; height: 38px; font-size: 17px; }
  .deck-arrow.prev { left: 8px; } .deck-arrow.next { right: 8px; }
}

/* 하단 컨트롤 — 점 인디케이터 + 진행 표시 + 원본 PDF */
.deck-ctrl { display: flex; align-items: center; justify-content: center; gap: 16px;
  flex-wrap: wrap; margin-top: 18px; }
.deck-dots { display: flex; gap: 9px; }
.deck-dot { width: 10px; height: 10px; padding: 0; border-radius: 50%; cursor: pointer;
  border: 1px solid var(--brand-light); background: var(--brand-light); transition: .18s; }
.deck-dot:hover { background: var(--brand-glow); }
.deck-dot.on { background: linear-gradient(135deg, var(--brand), var(--brand-glow));
  border-color: var(--brand); width: 26px; border-radius: 999px; }
.deck-dot:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }
.deck-count { font-size: 13px; font-weight: 700; color: var(--ink-3); font-variant-numeric: tabular-nums; }
.deck-hint { text-align: center; margin-top: 10px; font-size: 12.5px; color: var(--ink-3); }

/* 슬라이드 제목 목록 — 어떤 장인지 미리 보고 바로 이동한다 */
.deck-nav { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 26px; }
@media (max-width: 900px){ .deck-nav { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .deck-nav { grid-template-columns: 1fr; } }
.deck-nav button { text-align: left; cursor: pointer; padding: 13px 15px; font-size: 13px;
  line-height: 1.5; font-weight: 700; color: var(--ink-2);
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px; transition: .18s; }
.deck-nav button:hover { border-color: var(--brand-light); color: var(--brand-dark); transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(224,52,139,.13); }
.deck-nav button.on { border-color: var(--brand); color: var(--brand-dark); background: var(--brand-tint); }
.deck-nav button .n { display: block; font-size: 11px; font-weight: 800; letter-spacing: .6px;
  color: var(--brand); margin-bottom: 4px; }

/* ---------- 슬라이드별 설명문 ---------- */
/* 인포그래픽은 요점만 담고 있어, 보호자가 읽을 문장 설명을 각 장 아래에 둔다.
   이미지와 함께 가로로 넘어가야 하므로 .deck-slide 안(캡션 아래)에 넣는다. */
.deck-slide .deck-note { padding: 20px 24px 22px; background: var(--surface-2);
  border-top: 1px solid var(--line); font-size: 14px; line-height: 1.85; color: var(--ink-2); }
.deck-slide .deck-note h3 { font-size: 15.5px; font-weight: 800; letter-spacing: -.2px;
  color: var(--ink); margin-bottom: 8px; }
.deck-slide .deck-note p { margin-bottom: 10px; }
.deck-slide .deck-note p:last-child { margin-bottom: 0; }
.deck-slide .deck-note b { color: var(--ink); }
/* 설명문은 자르지 않고 전문을 보여준다(영역 스크롤 없음).
   트랙이 flex row 라 슬라이드는 가장 긴 장의 높이로 함께 늘어나므로,
   장을 넘겨도 스테이지 높이가 변하지 않는다. 남는 공간은 설명 배경으로 채운다. */
.deck-slide .deck-note { flex: 1 1 auto; }
@media (max-width: 900px){
  .deck-slide .deck-note { font-size: 13.5px; padding: 16px 18px 18px; }
}
@media (max-width: 560px){
  .deck-slide .deck-note { font-size: 13px; line-height: 1.8; padding: 14px 15px 16px; }
  .deck-slide .deck-note h3 { font-size: 14.5px; }
}
