  * { margin: 0; padding: 0; box-sizing: border-box; }
  :root {
    --black: #111;
    --gray-900: #222;
    --gray-700: #555;
    --gray-500: #888;
    --gray-300: #d5d5d5;
    --gray-100: #f4f4f4;
    --gray-50: #fafafa;
    --accent: #c6a572;
    --accent-dark: #5c483f;
  }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Malgun Gothic', sans-serif;
    color: var(--black);
    line-height: 1.65;
    background: #fff;
    -webkit-font-smoothing: antialiased;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }
  ul { list-style: none; }
  .wrap { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

  /* ====== TOP UTILITY BAR ====== */
  .top-bar {
    border-bottom: 1px solid var(--gray-100);
    font-size: 15.6px; color: var(--gray-500);
  }
  .top-bar-inner {
    max-width: 1280px; margin: 0 auto; padding: 8px 20px;
    display: flex; justify-content: flex-end; gap: 18px;
  }
  .top-bar a:hover { color: var(--black); }

  /* ====== HEADER ====== */
  header {
    position: sticky; top: 0; z-index: 100;
    background: #fff;
    border-bottom: 1px solid var(--gray-100);
  }
  .header-inner {
    max-width: 1380px; margin: 0 auto; padding: 22px 20px;
    display: grid; grid-template-columns: 170px 1fr auto; align-items: center; gap: 18px;
  }
  .logo {
    display: inline-flex; align-items: center;
    color: var(--black);
  }
  .logo img {
    height: 38px; width: auto; display: block;
  }
  /* 텍스트 로고 잔존 시 fallback 스타일 (footer-brand 등에서 사용) */
  .logo em {
    display: block; font-style: normal; font-size: 14.3px; font-weight: 500;
    letter-spacing: 3px; color: var(--accent-dark); margin-top: 2px;
  }
  .gnb {
    display: flex; justify-content: center; gap: 28px;
    flex-wrap: nowrap;
  }
  .gnb > li > a {
    display: block; padding: 8px 0;
    font-size: 18.2px; font-weight: 600;
    transition: color 0.2s;
    white-space: nowrap;
  }
  .gnb > li > a:hover { color: var(--accent-dark); }
  .gnb > li.gnb-feat > a { position: relative; }
  .gnb-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #fff;
    background: var(--accent-dark);
    padding: 3px 10px;
    border-radius: 999px;
    white-space: nowrap;
    pointer-events: none;
    line-height: 1.2;
  }
  .header-right { display: flex; align-items: center; gap: 14px; }
  .sns-icons { display: flex; gap: 8px; }
  .sns-icons a {
    width: 30px; height: 30px; border-radius: 50%;
    background: var(--gray-100);
    display: flex; align-items: center; justify-content: center;
    font-size: 16.9px; transition: all 0.2s;
  }
  .sns-icons a:hover { background: var(--black); color: #fff; }
  /* 언어 전환 — 국기 버튼 */
  .lang-switch { display: flex; gap: 4px; align-items: center; }
  .lang-switch a {
    width: 28px; height: 28px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 20.8px; line-height: 1;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    text-decoration: none;
    transition: all 0.18s;
    overflow: hidden;
  }
  .lang-switch a:hover { background: #fff; border-color: var(--accent); transform: translateY(-1px); }
  .lang-switch a.active { background: var(--accent); border-color: var(--accent); }
  .menu-toggle { display: none; font-size: 33.8px; }

  /* ====== HERO SLIDER (3-up coverflow carousel) ====== */
  .hero {
    position: relative;
    overflow: hidden;
    background: #faf7f2;
    color: #fff;
    perspective: 1800px;
    padding: 30px 0;
  }
  .hero-track {
    display: flex;
    align-items: stretch;
    transition: transform 0.75s cubic-bezier(0.65, 0, 0.35, 1);
    will-change: transform;
    transform-style: preserve-3d;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y;
  }
  .hero-track.is-dragging { cursor: grabbing; }
  .hero-track.no-transition,
  .hero-track.no-transition .hero-card,
  .hero-track.is-dragging,
  .hero-track.is-dragging .hero-card { transition: none !important; }
  .hero-card {
    flex: 0 0 calc(100% / 3);
    aspect-ratio: 4 / 3;
    position: relative;
    display: flex; align-items: flex-end;
    padding: 50px 40px;
    text-decoration: none; color: inherit;
    background-color: #7a6b5c;
    background-size: cover; background-position: center;
    overflow: hidden;
    transform: scale(0.82);
    opacity: 0.7;
    filter: brightness(0.95);
    transform-origin: center center;
    transform-style: preserve-3d;
    border-radius: 4px;
    transition:
      transform 0.75s cubic-bezier(0.65, 0, 0.35, 1),
      opacity 0.75s cubic-bezier(0.65, 0, 0.35, 1),
      filter 0.75s ease,
      box-shadow 0.75s ease;
  }
  .hero-card.is-side-left {
    transform: scale(0.88) rotateY(-16deg) translateZ(-20px);
    opacity: 0.92;
    filter: brightness(0.92);
    z-index: 1;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  }
  .hero-card.is-side-right {
    transform: scale(0.88) rotateY(16deg) translateZ(-20px);
    opacity: 0.92;
    filter: brightness(0.92);
    z-index: 1;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  }
  .hero-card.is-center {
    transform: scale(1.02);
    opacity: 1;
    filter: brightness(1.05);
    z-index: 5;
    box-shadow: 0 35px 90px rgba(0,0,0,0.5), 0 0 0 1px rgba(232,212,176,0.2);
  }
  .hero-card::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.08) 55%, rgba(0,0,0,0) 100%);
    transition: background 0.4s;
  }
  .hero-card.is-center:hover::before {
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.25) 65%, rgba(0,0,0,0.05) 100%);
  }
  .hero-card-content { position: relative; z-index: 2; }
  .hero-card-eyebrow {
    display: inline-block;
    padding: 5px 14px; border: 1px solid rgba(255,255,255,0.4);
    border-radius: 20px; font-size: 14.3px;
    letter-spacing: 2.5px; margin-bottom: 18px;
    color: #e8d4b0;
  }
  .hero-card-title {
    font-size: 39px; font-weight: 800;
    line-height: 1.2; letter-spacing: -1px;
    margin-bottom: 10px;
  }
  .hero-card-title span { color: #e8d4b0; }
  .hero-card-sub {
    font-size: 18.2px; color: rgba(255,255,255,0.8);
    line-height: 1.55;
  }
  .hero-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 56px; height: 56px; border-radius: 50%;
    background: rgba(255,255,255,0.9); border: 1px solid rgba(60,40,20,0.12);
    color: #2a2420; font-size: 36.4px; line-height: 1;
    cursor: pointer; z-index: 4;
    box-shadow: 0 8px 24px rgba(60,40,20,0.12);
    transition: background 0.2s, border-color 0.2s, color 0.2s;
  }
  .hero-arrow:hover { background: #2a2420; color: #fff; border-color: #2a2420; }
  .hero-prev { left: 24px; }
  .hero-next { right: 24px; }
  .hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 15px 30px; border-radius: 3px;
    font-size: 18.2px; font-weight: 600; letter-spacing: 0.5px;
    transition: all 0.25s;
  }
  .btn-primary { background: var(--accent); color: #fff; }
  .btn-primary:hover { background: var(--accent-dark); }
  .btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.4); }
  .btn-ghost:hover { background: #fff; color: var(--black); }
  .hero-indicators {
    position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 8px; z-index: 4;
  }
  .hero-indicators span {
    width: 72px; height: 3px;
    background: rgba(60,40,20,0.18);
    cursor: pointer;
  }
  .hero-indicator-highlight {
    position: absolute;
    top: 0; left: 0;
    width: 72px; height: 3px;
    background: #2a2420;
    transition: transform 0.75s cubic-bezier(0.65, 0, 0.35, 1);
    pointer-events: none;
  }

  /* ====== SECTION COMMON ====== */
  section { padding: 90px 20px; }
  .sec-head {
    text-align: center; margin-bottom: 56px;
    position: relative; z-index: 1;
  }
  .sec-eyebrow {
    font-size: 15.6px; letter-spacing: 5px; color: var(--accent-dark);
    font-weight: 600; margin-bottom: 12px;
  }
  .sec-head h2 {
    font-size: 46.8px; font-weight: 800; letter-spacing: -1.5px;
    line-height: 1.3; margin-bottom: 14px;
  }
  .sec-head p { color: var(--gray-700); font-size: 19.5px; }

  /* ====== SIGNATURE SURGERIES ====== */
  .signature {
    background: var(--gray-50);
  }
  .signature-grid {
    max-width: 1280px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 240px 240px;
    gap: 14px;
  }
  .sig-card {
    position: relative; overflow: hidden;
    border-radius: 4px; cursor: pointer;
    color: #fff; text-decoration: none; padding: 28px;
    display: flex; flex-direction: column; justify-content: flex-end;
    transition: transform 0.4s;
  }
  .sig-card::before {
    content: ''; position: absolute; inset: 0; z-index: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.75));
  }
  .sig-card > * { position: relative; z-index: 1; }
  .sig-card:hover { transform: scale(1.015); }
  .sig-card:nth-child(1) {
    grid-row: 1 / 3; grid-column: 1 / 2;
    background: linear-gradient(135deg, #4a3a2a, #8a6d4a);
  }
  .sig-card:nth-child(2) { background: linear-gradient(135deg, #5a4a3a, #9a8a6a); }
  .sig-card:nth-child(3) { background: linear-gradient(135deg, #3a3a4a, #6a6d8a); }
  .sig-card:nth-child(4) { background: linear-gradient(135deg, #4a2a3a, #8a5a6a); }
  .sig-card:nth-child(5) { background: linear-gradient(135deg, #2a3a3a, #5a7a7a); }
  .sig-num {
    position: absolute; top: 24px; left: 28px;
    font-size: 16.9px; letter-spacing: 2px; opacity: 0.7;
  }
  .sig-card h3 {
    font-size: 33.8px; font-weight: 800; letter-spacing: -0.5px;
    margin-bottom: 6px;
  }
  .sig-card:first-child h3 { font-size: 44.2px; }
  .sig-card p { font-size: 16.9px; opacity: 0.85; }
  .sig-more {
    margin-top: 12px; font-size: 15.6px; letter-spacing: 2px;
    display: inline-block; padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.3); max-width: fit-content;
  }

  /* ====== DOCTOR / MEDICAL TEAM ====== */
  .doctor {
    background: #fff;
    position: relative;
    overflow: hidden;
  }
  .doctor::before {
    content: 'KNSY'; position: absolute;
    top: 40px; right: -20px;
    font-size: 312px; font-weight: 900;
    color: var(--gray-50); letter-spacing: -10px;
    z-index: 0; line-height: 1; pointer-events: none;
  }
  .doctor-lead {
    max-width: 1280px; margin: 0 auto 70px;
    display: grid; grid-template-columns: 1fr 1.3fr; gap: 70px;
    align-items: center; position: relative; z-index: 1;
  }
  .doctor-photo {
    aspect-ratio: 3/4;
    background: url('/ko/assets/doctors/choi.jpg?v=5') center top / cover, #2a2420;
    position: relative; overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
  }
  .doctor-badge {
    position: absolute; bottom: 30px; left: 30px;
    background: var(--accent); color: #fff;
    padding: 12px 20px; border-radius: 2px;
    font-size: 15.6px; letter-spacing: 3px; font-weight: 600;
  }
  .doctor-eyebrow {
    font-size: 15.6px; letter-spacing: 5px; color: var(--accent-dark);
    font-weight: 600; margin-bottom: 14px;
  }
  .doctor-name {
    font-size: 65px; font-weight: 800;
    letter-spacing: -2px; line-height: 1.1;
    margin-bottom: 10px;
  }
  .doctor-name span { color: var(--accent-dark); font-weight: 500; font-size: 26px; margin-left: 14px; letter-spacing: 0; }
  .doctor-title {
    font-size: 19.5px; color: var(--accent-dark); font-weight: 600;
    letter-spacing: 2px; margin-bottom: 26px;
  }
  .doctor-quote {
    font-size: 31.2px; font-weight: 300;
    line-height: 1.55; letter-spacing: -0.8px;
    color: var(--gray-900); margin-bottom: 30px;
    padding-left: 18px; border-left: 3px solid var(--accent);
  }
  .doctor-desc {
    font-size: 19.5px; color: var(--gray-700); line-height: 1.9;
  }
  .doctor-stats {
    max-width: 1280px; margin: 0 auto 70px;
    display: grid; grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    position: relative; z-index: 1;
  }
  .doctor-stats li {
    text-align: center; padding: 36px 20px;
    border-right: 1px solid var(--gray-100);
  }
  .doctor-stats li:last-child { border-right: none; }
  .doctor-stats strong {
    display: block; font-size: 52px; font-weight: 800;
    color: var(--accent-dark); letter-spacing: -1px;
    margin-bottom: 4px;
  }
  .doctor-stats strong small { font-size: 23.4px; font-weight: 600; color: var(--gray-500); margin-left: 2px; }
  .doctor-stats span { font-size: 16.9px; color: var(--gray-700); letter-spacing: 1px; }

  .doctor-creds {
    max-width: 1280px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
    position: relative; z-index: 1;
  }
  .cred-col h4 {
    font-size: 16.9px; letter-spacing: 3px;
    color: var(--accent-dark); font-weight: 700;
    padding-bottom: 14px; margin-bottom: 18px;
    border-bottom: 2px solid var(--black);
  }
  .cred-col ul li {
    font-size: 18.2px; color: var(--gray-900);
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
    display: flex; gap: 10px; line-height: 1.6;
  }
  .cred-col ul li::before {
    content: '·'; color: var(--accent);
    font-weight: 700; flex-shrink: 0;
  }
  .cred-col ul li:last-child { border-bottom: none; }

  /* Associate specialists row */
  .specialists {
    max-width: 1280px; margin: 80px auto 0;
    padding-top: 60px;
    border-top: 1px solid var(--gray-100);
    position: relative; z-index: 1;
  }
  .specialists-head {
    text-align: center; margin-bottom: 40px;
  }
  .specialists-head h3 {
    font-size: 33.8px; font-weight: 800;
    letter-spacing: -1px; margin-bottom: 8px;
  }
  .specialists-head p { font-size: 18.2px; color: var(--gray-700); }
  .specialists-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px;
  }
  .specialist-card {
    display: grid; grid-template-columns: 180px 1fr; gap: 30px;
    align-items: start; padding: 32px;
    background: var(--gray-50); border-radius: 4px;
    transition: all 0.3s;
  }
  .specialist-card:hover { background: #fff; box-shadow: 0 20px 50px rgba(0,0,0,0.08); }
  .specialist-photo {
    aspect-ratio: 3/4; border-radius: 2px;
    position: relative; overflow: hidden;
  }
  .specialist-photo.p1 { background: linear-gradient(135deg, #3a5050, #6a8585); }
  .specialist-photo.p2 { background: linear-gradient(135deg, #504540, #8a7570); }
  /* p1/p2 클래스에만 SVG 실루엣 표시 (실제 사진 클래스에는 표시 안 함) */
  .specialist-photo.p1::after,
  .specialist-photo.p2::after {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 180 240'><circle cx='90' cy='85' r='38' fill='rgba(255,255,255,0.15)'/><path d='M40 160 Q90 215 140 160 L140 240 L40 240 Z' fill='rgba(255,255,255,0.1)'/></svg>") center/cover;
  }
  /* 실제 의료진 사진 */
  .specialist-photo.doctor-img-hong,
  .specialist-photo.doctor-img-yang {
    aspect-ratio: 600/688;
  }
  .specialist-photo.doctor-img-hong {
    background: url('/ko/assets/doctors/hong.jpg?v=5') center center / cover, #f0ece5;
  }
  .specialist-photo.doctor-img-yang {
    background: url('/ko/assets/doctors/yang.jpg?v=5') center center / cover, #f0ece5;
  }
  .specialist-info h4 {
    font-size: 33.8px; font-weight: 800;
    letter-spacing: -1px; margin-bottom: 4px;
  }
  .specialist-info h4 small {
    font-size: 18.2px; font-weight: 500;
    color: var(--gray-500); margin-left: 10px; letter-spacing: 0;
  }
  .specialist-info .sp-title {
    display: inline-block; margin-top: 6px; margin-bottom: 18px;
    font-size: 15.6px; letter-spacing: 2px; font-weight: 700;
    color: var(--accent-dark);
    padding: 5px 12px; background: rgba(198,165,114,0.12);
    border-radius: 20px;
  }
  .specialist-info p.sp-role {
    font-size: 18.2px; color: var(--gray-900);
    line-height: 1.7; margin-bottom: 16px;
    font-weight: 500;
  }
  .specialist-info ul li {
    font-size: 16.9px; color: var(--gray-700);
    padding: 6px 0;
    display: flex; gap: 8px; line-height: 1.55;
  }
  .specialist-info ul li::before {
    content: '·'; color: var(--accent); font-weight: 700;
  }

  /* ====== DOCTOR'S NOTE (tabs) ====== */
  .dnote-tabs {
    display: flex; justify-content: center; gap: 10px;
    margin-bottom: 40px; flex-wrap: wrap;
  }
  .dnote-tab {
    padding: 10px 22px; border: 1px solid var(--gray-300);
    border-radius: 24px; font-size: 18.2px; font-weight: 500;
    transition: all 0.2s;
    display: inline-block; text-decoration: none; color: inherit;
    background: transparent; cursor: pointer;
  }
  .dnote-tab.active, .dnote-tab:hover {
    background: var(--black); color: #fff; border-color: var(--black);
  }
  /* DOCTOR'S COLUMN HERO — full-bleed surgery photo, toned down */
  .dnote-hero {
    position: relative; overflow: hidden;
    padding: 140px 20px 120px;
    color: #fff;
    background-color: #1a1714;
  }
  .dnote-hero::before {
    content: ''; position: absolute; inset: 0;
    background: url('/ko/assets/doctors/dnote-bg.jpg?v=2') center/cover no-repeat;
    filter: grayscale(0.35) brightness(0.55) contrast(0.95);
    z-index: 0;
  }
  .dnote-hero::after {
    content: ''; position: absolute; inset: 0;
    background:
      linear-gradient(180deg,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.35) 45%,
        rgba(0,0,0,0.65) 100%),
      radial-gradient(ellipse at 50% 40%,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,0.25) 70%,
        rgba(0,0,0,0.5) 100%);
    z-index: 1;
  }
  .dnote-hero .dnote-inner {
    position: relative; z-index: 2;
    max-width: 1100px; margin: 0 auto;
    text-align: center;
  }
  .dnote-hero .sec-head { margin-bottom: 44px; }
  .dnote-hero .sec-eyebrow {
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.22em;
  }
  .dnote-hero .sec-head h2 {
    color: #fff;
    text-shadow: 0 2px 16px rgba(0,0,0,0.4);
    font-size: clamp(48px, 6.5vw, 72px);
    line-height: 1.15;
    letter-spacing: -2.5px;
    font-weight: 500;
  }
  .dnote-hero .sec-head p {
    color: rgba(255,255,255,0.82);
  }
  .dnote-hero .dnote-tagline {
    font-size: 24.7px;
    font-weight: 500;
    color: rgba(255,255,255,0.95) !important;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.35);
  }
  /* 해시태그 탭 — 어두운 배경에 어울리게 라이트 톤 */
  .dnote-hero .dnote-tabs {
    margin-bottom: 0;
  }
  .dnote-hero .dnote-tab {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.32);
    color: #fff;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
  .dnote-hero .dnote-tab:hover,
  .dnote-hero .dnote-tab.active {
    background: #fff; color: var(--black); border-color: #fff;
  }
  .dnote-hero .dnote-foot {
    margin-top: 40px;
  }
  .dnote-hero .dnote-foot .btn-ghost {
    border-color: rgba(255,255,255,0.6); color: #fff;
    background: transparent;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
  .dnote-hero .dnote-foot .btn-ghost:hover {
    background: #fff; color: var(--black); border-color: #fff;
  }
  @media (max-width: 760px) {
    .dnote-hero { padding: 90px 16px 80px; }
    .dnote-hero::before { background-position: center; }
  }
  .dnote-grid {
    max-width: 1280px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  }
  .dnote-card {
    background: #fff; border: 1px solid var(--gray-100);
    overflow: hidden; transition: all 0.3s; cursor: pointer;
  }
  .dnote-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  }
  .dnote-thumb {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #faf6f0, #e8dcc5) center/cover no-repeat;
    position: relative;
  }
  .dnote-card { text-decoration: none; color: inherit; }
  .dnote-cat {
    position: absolute; top: 14px; left: 14px;
    background: rgba(0,0,0,0.7); color: #fff;
    font-size: 14.3px; padding: 4px 10px; border-radius: 2px;
    letter-spacing: 1px;
  }
  .dnote-body { padding: 22px; }
  .dnote-body h4 {
    font-size: 22.1px; font-weight: 700; margin-bottom: 8px;
    line-height: 1.4; letter-spacing: -0.3px;
  }
  .dnote-body p { font-size: 16.9px; color: var(--gray-700); line-height: 1.6; }
  .dnote-meta {
    margin-top: 14px; padding-top: 14px;
    border-top: 1px solid var(--gray-100);
    font-size: 15.6px; color: var(--gray-500);
    display: flex; justify-content: space-between;
  }
  .dnote-meta span:last-child { color: var(--accent); font-weight: 700; }
  .dnote-foot {
    text-align: center;
    margin-top: 36px;
  }
  .dnote-empty {
    grid-column: 1 / -1;
    text-align: center; padding: 60px 20px;
    color: var(--gray-500); font-size: 18.2px;
  }

  /* ====== BEFORE / AFTER ====== */
  .ba { background: var(--gray-50); }
  .ba-grid {
    max-width: 1280px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  }
  .ba-card {
    background: #fff; overflow: hidden;
    transition: transform 0.3s;
  }
  .ba-card:hover { transform: translateY(-4px); }
  .ba-thumb {
    aspect-ratio: 4/5; position: relative;
    background: linear-gradient(135deg, #d8c4a8, #a88a6a);
    overflow: hidden;
  }
  .ba-thumb::before {
    content: 'BEFORE';
    position: absolute; top: 14px; left: 14px; z-index: 2;
    background: rgba(0,0,0,0.65); color: #fff;
    padding: 4px 10px; font-size: 14.3px; letter-spacing: 2px;
  }
  .ba-thumb::after {
    content: 'AFTER';
    position: absolute; top: 14px; right: 14px; z-index: 2;
    background: var(--accent); color: #fff;
    padding: 4px 10px; font-size: 14.3px; letter-spacing: 2px;
  }
  .ba-split {
    position: absolute; inset: 0;
    display: grid; grid-template-columns: 1fr 1fr;
  }
  .ba-split > div:first-child {
    background: linear-gradient(135deg, #b8a890, #8a7a5a);
  }
  .ba-split > div:last-child {
    background: linear-gradient(135deg, #e8dcc0, #c6a572);
  }
  .ba-body { padding: 22px; }
  .ba-body h4 { font-size: 20.8px; font-weight: 700; margin-bottom: 4px; }
  .ba-body span { font-size: 15.6px; color: var(--gray-500); }
  .ba-play {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%); z-index: 2;
    width: 56px; height: 56px; border-radius: 50%;
    background: rgba(255,255,255,0.9); color: var(--black);
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; padding-left: 4px;
  }

  /* ====== PROGRESS (경과) ====== */
  .progress-grid {
    max-width: 1280px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  }
  .progress-card {
    position: relative; aspect-ratio: 3/4;
    overflow: hidden; cursor: pointer;
    background: #222;
  }
  .progress-card::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.8));
  }
  .progress-thumb {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #a89080, #5a4a3a);
  }
  .progress-info {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 24px; color: #fff; z-index: 2;
  }
  .progress-tag {
    display: inline-block; padding: 3px 10px;
    background: var(--accent); font-size: 14.3px;
    letter-spacing: 1px; margin-bottom: 10px;
  }
  .progress-info h4 { font-size: 26px; font-weight: 700; margin-bottom: 6px; }
  .progress-info p { font-size: 16.9px; opacity: 0.85; }

  /* 회복 경과 — YouTube Shorts 임베드 카드 */
  .progress-video { background: #000; }
  .progress-play {
    position: absolute;
    top: 44%; left: 50%;
    transform: translate(-50%, -50%);
    width: 70px; height: 70px;
    border: 0; border-radius: 50%;
    background: rgba(0,0,0,0.55);
    color: #fff; font-size: 28.6px;
    cursor: pointer; z-index: 3;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
    backdrop-filter: blur(4px);
  }
  .progress-video:hover .progress-play {
    background: var(--accent);
    transform: translate(-50%, -50%) scale(1.1);
  }
  .progress-video.playing .progress-thumb,
  .progress-video.playing .progress-play,
  .progress-video.playing .progress-info,
  .progress-video.playing::after { display: none; }
  .progress-iframe {
    width: 100%; height: 100%;
    border: 0; display: block;
  }

  /* ====== STORY ====== */
  .story { background: var(--black); color: #fff; }
  .story .sec-head h2 { color: #fff; }
  .story .sec-head p { color: rgba(255,255,255,0.6); }
  .story-grid {
    max-width: 1280px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  }
  .story-card {
    position: relative; aspect-ratio: 9/14;
    overflow: hidden; cursor: pointer;
    background: linear-gradient(135deg, #5a4a3a, #8a7a6a);
  }
  .story-card::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.85));
  }
  .story-body {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 24px;
    z-index: 2;
  }
  .story-body small {
    font-size: 14.3px; letter-spacing: 2px; opacity: 0.8;
    display: block; margin-bottom: 6px;
  }
  .story-body h4 { font-size: 24.7px; font-weight: 700; line-height: 1.35; }

  /* ====== SURGERY TV ====== */
  .tv-grid {
    max-width: 1280px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 20px;
  }
  .tv-card {
    position: relative; overflow: hidden;
    cursor: pointer; background: #000;
  }
  .tv-card:first-child { grid-row: span 2; aspect-ratio: 16/11; }
  .tv-card:not(:first-child) { aspect-ratio: 16/10; }
  .tv-thumb {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #3a3a3a, #6a6a6a);
  }
  .tv-card::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.8));
  }
  .tv-info {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 20px; color: #fff; z-index: 2;
  }
  .tv-info h4 { font-size: 20.8px; font-weight: 700; line-height: 1.4; }
  .tv-card:first-child .tv-info h4 { font-size: 31.2px; }
  .tv-play-big {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%); z-index: 2;
    width: 70px; height: 70px; border-radius: 50%;
    background: rgba(255,255,255,0.15); border: 2px solid #fff;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 31.2px; padding-left: 5px;
    backdrop-filter: blur(8px);
  }

  /* ====== REVIEWS GALLERY ====== */
  .reviews { background: var(--gray-50); }
  .review-grid {
    max-width: 1280px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  }
  .review-card {
    background: #fff; overflow: hidden;
    border: 1px solid var(--gray-100);
    transition: all 0.25s;
  }
  .review-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.06); }
  .review-thumb {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #e5d5b8, #b8a07a);
  }
  .review-body { padding: 18px; }
  .review-body h5 { font-size: 18.2px; font-weight: 700; margin-bottom: 4px; }
  .review-body small { font-size: 15.6px; color: var(--gray-500); }
  .review-stars { color: #d4a94e; font-size: 15.6px; letter-spacing: 1px; margin-top: 8px; }

  /* ====== EVENTS ====== */
  .event-grid {
    max-width: 1280px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  }
  .event-card {
    aspect-ratio: 3/4; position: relative;
    overflow: hidden; cursor: pointer;
    border-radius: 4px;
  }
  .event-card > img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
    z-index: 0;
  }
  .event-card:nth-child(1) { background: linear-gradient(135deg, #1a1a1a, #3a2a1a); }
  .event-card:nth-child(2) { background: linear-gradient(135deg, #2a1a2a, #5a3a4a); }
  .event-card:nth-child(3) { background: linear-gradient(135deg, #1a2a2a, #3a5a5a); }
  .event-card:nth-child(4) { background: linear-gradient(135deg, #3a2a1a, #8a6a4a); }
  .event-card::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7));
  }
  .event-info {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 24px;
    color: #fff; z-index: 2;
  }
  .event-info small {
    display: inline-block; background: var(--accent);
    padding: 3px 10px; font-size: 14.3px; letter-spacing: 1px;
    margin-bottom: 10px;
  }
  .event-info h4 { font-size: 24.7px; font-weight: 700; line-height: 1.35; margin-bottom: 6px; }
  .event-info p { font-size: 15.6px; opacity: 0.85; }

  /* ====== PRESS ====== */
  .press-list {
    max-width: 1080px; margin: 0 auto;
  }
  .press-item {
    display: grid; grid-template-columns: 100px 1fr auto; gap: 24px;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid var(--gray-100);
    transition: all 0.2s;
    text-decoration: none;
    color: inherit;
  }
  .press-item:hover {
    background: #fff;
    padding-left: 20px; padding-right: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  }
  .press-item:hover .press-title { color: var(--accent-dark); }
  .press-date {
    font-size: 16.9px; color: var(--gray-500); letter-spacing: 1px;
  }
  .press-title {
    font-size: 20.8px; font-weight: 600; letter-spacing: -0.3px;
  }
  .press-source {
    font-size: 15.6px; color: var(--accent-dark);
    padding: 4px 10px; border: 1px solid var(--accent);
    border-radius: 20px;
  }

  /* ====== QUICK CONSULT ====== */
  .consult {
    background: linear-gradient(135deg, #1a1612, #2e2620);
    color: #fff;
  }
  .consult .sec-head h2 { color: #fff; }
  .consult .sec-head p { color: rgba(255,255,255,0.65); }
  .consult-wrap {
    max-width: 860px; margin: 0 auto;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 50px; border-radius: 6px;
    backdrop-filter: blur(10px);
  }
  .form-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
    margin-bottom: 16px;
  }
  .form-field label {
    display: block; font-size: 15.6px; letter-spacing: 2px;
    margin-bottom: 8px; color: rgba(255,255,255,0.7);
  }
  .form-field input,
  .form-field select,
  .form-field textarea {
    width: 100%; padding: 14px 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff; font-size: 18.2px; font-family: inherit;
    border-radius: 3px;
  }
  .form-field select { color: rgba(255,255,255,0.6); }
  .form-field select option { color: var(--black); }
  .form-field textarea { resize: vertical; min-height: 100px; }
  .form-field input::placeholder,
  .form-field textarea::placeholder { color: rgba(255,255,255,0.4); }
  .form-field.full { grid-column: 1 / -1; }
  .form-consent {
    font-size: 15.6px; color: rgba(255,255,255,0.7);
    display: flex; align-items: center; gap: 10px;
    margin: 20px 0 28px;
  }
  .form-consent input { width: 16px; height: 16px; accent-color: var(--accent); }
  .form-submit {
    width: 100%; padding: 18px;
    background: var(--accent); color: #fff;
    font-size: 19.5px; font-weight: 700; letter-spacing: 3px;
    border-radius: 3px; transition: background 0.2s;
  }
  .form-submit:hover { background: var(--accent-dark); }

  /* ====== CONTACT / MAP ====== */
  .contact-grid {
    max-width: 1280px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1.3fr; gap: 50px;
    align-items: start;
  }
  .contact-info h3 {
    font-size: 36.4px; font-weight: 800;
    letter-spacing: -1px; margin-bottom: 14px;
  }
  .contact-info > p {
    color: var(--gray-700); margin-bottom: 32px; font-size: 19.5px;
  }
  .contact-list { display: grid; gap: 18px; }
  .contact-list li {
    display: grid; grid-template-columns: 90px 1fr; gap: 16px;
    padding: 16px 0; border-bottom: 1px solid var(--gray-100);
  }
  .contact-list strong {
    font-size: 15.6px; letter-spacing: 2px; color: var(--accent-dark);
    font-weight: 700;
  }
  .contact-list p { font-size: 18.2px; color: var(--gray-900); }
  .contact-list p b { font-size: 26px; font-weight: 800; color: var(--black); }
  .map-box {
    aspect-ratio: 4/3;
    position: relative; overflow: hidden;
    border-radius: 4px;
    background: #f4ede0;
  }
  .map-box iframe { width: 100%; height: 100%; border: 0; display: block; }

  /* ====== FOOTER ====== */
  footer {
    background: #0e0c0a; color: rgba(255,255,255,0.55);
    padding: 60px 20px 30px;
    font-size: 16.9px;
  }
  .footer-top {
    max-width: 1280px; margin: 0 auto;
    padding-bottom: 0;
  }
  .footer-brand { font-size: 28.6px; font-weight: 800; color: #fff; margin-bottom: 16px; letter-spacing: -1px; }
  .footer-brand em { display: block; font-style: normal; font-size: 14.3px; letter-spacing: 3px; color: var(--accent); font-weight: 500; margin-top: 4px; }
  .footer-info { line-height: 1.9; }
  .footer-menus {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
  }
  .footer-menus h5 { color: #fff; font-size: 16.9px; font-weight: 700; margin-bottom: 14px; }
  .footer-menus li { margin-bottom: 6px; }
  .footer-menus a:hover { color: var(--accent); }
  .footer-bottom {
    max-width: 1280px; margin: 0 auto;
    padding-top: 26px;
    display: flex; flex-wrap: wrap; gap: 14px;
    justify-content: space-between; font-size: 15.6px;
    color: rgba(255,255,255,0.4);
  }
  .footer-bottom strong { color: rgba(255,255,255,0.7); }

  /* ====== FLOATING SIDEBAR (right) ====== */
  .float-side {
    position: fixed; right: 18px; top: 50%;
    transform: translateY(-50%); z-index: 90;
    display: flex; flex-direction: column; gap: 6px;
  }
  .float-btn {
    width: 72px; padding: 14px 8px;
    background: #fff; border: 1px solid var(--gray-100);
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    font-size: 14.3px; font-weight: 600; color: var(--gray-700);
    text-align: center; border-radius: 4px;
    transition: all 0.2s; box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  }
  .float-btn:hover {
    background: var(--black); color: #fff; border-color: var(--black);
  }
  .float-btn.kakao { background: #FEE500; color: #3a2929; }
  .float-btn.kakao:hover { background: #e8d100; color: #3a2929; }
  .float-btn.tel { background: var(--accent); color: #fff; border-color: var(--accent); }
  .float-btn.tel:hover { background: var(--accent-dark); }
  .float-icon { font-size: 26px; line-height: 1; }
  .float-top {
    margin-top: 10px;
    width: 72px; height: 44px; background: var(--black); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 16.9px; font-weight: 700; border-radius: 4px;
  }

  /* ====== RESPONSIVE ====== */
  @media (max-width: 1024px) {
    .gnb { gap: 20px; }
    .gnb > li > a { font-size: 18.2px; }
    .signature-grid {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 220px 220px 220px;
    }
    .signature-grid .sig-card:nth-child(1) { grid-row: auto; grid-column: 1 / -1; }
    .dnote-grid, .ba-grid, .progress-grid, .story-grid { grid-template-columns: repeat(2, 1fr); }
    .review-grid, .event-grid { grid-template-columns: repeat(2, 1fr); }
    .tv-grid { grid-template-columns: 1fr 1fr; }
    .tv-card:first-child { grid-row: auto; grid-column: 1 / -1; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 30px; }
  }
  @media (max-width: 1024px) {
    .doctor-lead { grid-template-columns: 1fr; gap: 40px; }
    .doctor-stats { grid-template-columns: repeat(2, 1fr); }
    .doctor-stats li:nth-child(2) { border-right: none; }
    .doctor-stats li:nth-child(1), .doctor-stats li:nth-child(2) { border-bottom: 1px solid var(--gray-100); }
    .doctor-creds { grid-template-columns: 1fr; gap: 30px; }
    .doctor::before { font-size: 208px; top: 30px; right: -10px; letter-spacing: -6px; }
  }
  @media (max-width: 1024px) {
    .specialists-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 720px) {
    .doctor-name { font-size: 44.2px; }
    .doctor-name span { display: block; margin-left: 0; margin-top: 6px; font-size: 20.8px; }
    .doctor-quote { font-size: 23.4px; }
    .doctor-stats { grid-template-columns: 1fr 1fr; }
    .doctor-stats strong { font-size: 39px; }
    .specialist-card { grid-template-columns: 1fr; gap: 20px; padding: 24px; }
    .specialist-photo { max-width: 200px; }
    .doctor::before { font-size: 114.4px; top: 18px; right: -6px; letter-spacing: -3px; }
    .top-bar, .sns-icons, .lang-switch, .gnb { display: none; }
    .menu-toggle { display: block; }
    .header-inner { grid-template-columns: 1fr auto; padding: 18px 16px; }
    .header-right { justify-self: end; }
    .menu-toggle { padding: 4px 0 4px 8px; }
    .hero { padding: 0; }
    .hero-card { flex: 0 0 100%; padding: 40px 24px; }
    .hero-card-title { font-size: 33.8px; }
    .hero-card-sub { font-size: 16.9px; }
    .hero-arrow { width: 40px; height: 40px; font-size: 28.6px; }
    .hero-prev { left: 8px; }
    .hero-next { right: 8px; }
    .hero-indicators span { width: 22px; }
    section { padding: 60px 20px; }
    .sec-head h2 { font-size: 33.8px; }
    .signature-grid { grid-template-columns: 1fr; grid-template-rows: repeat(5, 200px); }
    .signature-grid .sig-card:nth-child(1) { grid-row: auto; }
    .dnote-grid, .ba-grid, .progress-grid, .story-grid,
    .review-grid, .event-grid, .tv-grid { grid-template-columns: 1fr; }
    .tv-card:first-child { grid-row: auto; grid-column: auto; }
    .form-row { grid-template-columns: 1fr; }
    .consult-wrap { padding: 30px 20px; }
    .footer-menus { grid-template-columns: 1fr 1fr; }
    .press-item { grid-template-columns: 1fr; gap: 6px; padding: 18px 0; }
    .float-side { right: 10px; }
    .float-btn, .float-top { width: 56px; font-size: 13px; padding: 10px 4px; }
  }

/* ====== SUB-PAGE STYLES ====== */
.subhero {
  position: relative;
  height: 380px;
  background: linear-gradient(135deg, #1a1612 0%, #2e2620 100%);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
}
.subhero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(198,165,114,0.22), transparent 55%),
    radial-gradient(circle at 15% 80%, rgba(198,165,114,0.12), transparent 60%);
}
.subhero-inner { position: relative; z-index: 1; padding: 0 20px; max-width: 900px; }
.subhero-eyebrow {
  font-size: 15.6px; letter-spacing: 5px; color: var(--accent);
  font-weight: 600; margin-bottom: 14px;
}
.subhero h1 {
  font-size: 65px; font-weight: 800;
  letter-spacing: -2px; line-height: 1.15; margin-bottom: 18px;
}
.subhero p { font-size: 22.1px; color: rgba(255,255,255,0.8); line-height: 1.7; }

.breadcrumb {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
  font-size: 15.6px; color: var(--gray-500); letter-spacing: 1px;
}
.breadcrumb-inner {
  max-width: 1280px; margin: 0 auto; padding: 14px 20px;
  display: flex; gap: 10px; align-items: center;
}
.breadcrumb a { transition: color 0.2s; }
.breadcrumb a:hover { color: var(--black); }
.breadcrumb b { color: var(--black); font-weight: 600; }

/* About 페이지 - 메인 비주얼 */
.about-hero {
  padding: 0 !important;
  background: #000;
}
.about-hero-img {
  max-width: 1200px; margin: 0 auto;
  aspect-ratio: 1200/730;
  overflow: hidden;
}
.about-hero-img img {
  width: 100%; height: 100%; display: block;
  object-fit: cover;
}

.intro-eyebrow {
  display: inline-block;
  font-size: 14.3px; letter-spacing: 4px; font-weight: 700;
  color: var(--accent);
  margin-bottom: 18px;
}

/* About 페이지 - 인테리어 갤러리 */
.interior-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}
.interior-item {
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 6px;
  background: var(--gray-50, #f5f5f3);
  transition: transform 0.3s, box-shadow 0.3s;
}
.interior-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.interior-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}
.interior-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .interior-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .interior-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .about-hero-img { aspect-ratio: 16/10; }
}

/* Page intro block */
.intro-block {
  max-width: 980px; margin: 0 auto;
  text-align: center; padding: 0 20px;
}
.intro-block h2 {
  font-size: 46.8px; font-weight: 800;
  letter-spacing: -1.5px; line-height: 1.3; margin-bottom: 24px;
}
.intro-block h2 em { font-style: normal; color: var(--accent-dark); }
.intro-block p {
  font-size: 20.8px; color: var(--gray-700); line-height: 1.9;
}
.intro-quote {
  font-size: 28.6px; font-weight: 300; line-height: 1.55;
  letter-spacing: -0.5px; color: var(--gray-900);
  padding: 30px 20px; margin: 30px auto;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  max-width: 720px;
}

/* Procedure cards (used on procedure pages) */
.proc-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.proc-card {
  background: #fff;
  border: 1px solid var(--gray-100);
  padding: 36px 28px;
  transition: all 0.3s;
  cursor: pointer; position: relative;
}
.proc-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
.proc-num {
  font-size: 16.9px; letter-spacing: 3px;
  color: var(--accent-dark); font-weight: 700;
  margin-bottom: 16px;
}
.proc-card h3 {
  font-size: 28.6px; font-weight: 800;
  letter-spacing: -0.5px; margin-bottom: 12px;
}
.proc-card p {
  font-size: 18.2px; color: var(--gray-700); line-height: 1.7;
  margin-bottom: 18px;
}
.proc-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  padding-top: 18px; border-top: 1px solid var(--gray-100);
}
.proc-tags span {
  font-size: 14.3px; padding: 4px 10px;
  background: var(--gray-50); color: var(--gray-700);
  border-radius: 20px;
}

/* 5열 변형 (눈성형 메인 등) */
.proc-grid.proc-grid-5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1280px) {
  .proc-grid.proc-grid-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  .proc-grid.proc-grid-5 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .proc-grid.proc-grid-5 { grid-template-columns: 1fr; }
}

/* Why us 4-column */
.why-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.why-item { text-align: center; padding: 30px 16px; }
.why-num {
  font-size: 49.4px; font-weight: 900;
  color: var(--accent); letter-spacing: -2px;
  margin-bottom: 14px;
}
.why-item h4 {
  font-size: 22.1px; font-weight: 800;
  margin-bottom: 10px; letter-spacing: -0.3px;
}
.why-item p { font-size: 16.9px; color: var(--gray-700); line-height: 1.7; }

/* Process timeline */
.timeline {
  max-width: 980px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px;
  position: relative;
}
.timeline::before {
  content: ''; position: absolute;
  top: 30px; left: 8%; right: 8%; height: 1px;
  background: var(--gray-300); z-index: 0;
}
.timeline-step { text-align: center; position: relative; z-index: 1; }
.timeline-num {
  width: 60px; height: 60px; border-radius: 50%;
  background: #fff; border: 2px solid var(--accent);
  color: var(--accent-dark); font-weight: 800; font-size: 20.8px;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
}
.timeline-step h5 {
  font-size: 18.2px; font-weight: 700; margin-bottom: 6px;
}
.timeline-step p { font-size: 15.6px; color: var(--gray-700); line-height: 1.5; }

/* FAQ */
.faq-list { max-width: 980px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--gray-100);
  padding: 22px 0;
}
.faq-q {
  font-size: 20.8px; font-weight: 700; letter-spacing: -0.3px;
  display: flex; gap: 18px; align-items: flex-start;
  cursor: pointer; padding-right: 20px;
}
.faq-q::before {
  content: 'Q'; color: var(--accent-dark);
  font-size: 23.4px; font-weight: 800; flex-shrink: 0;
}
.faq-a {
  display: none; padding: 16px 0 4px 36px;
  font-size: 18.2px; color: var(--gray-700);
  line-height: 1.85;
}
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-q { color: var(--accent-dark); }

/* Notice / Caution box */
.notice {
  max-width: 1080px; margin: 60px auto 0;
  padding: 26px 30px;
  background: var(--gray-50);
  border-left: 3px solid var(--accent);
  font-size: 16.9px; color: var(--gray-700);
  line-height: 1.85;
}
.notice strong { display: block; color: var(--black); font-size: 16.9px; letter-spacing: 1px; margin-bottom: 8px; }

@media (max-width: 1024px) {
  .proc-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(5, 1fr); gap: 6px; }
  .timeline::before { display: none; }
}
@media (max-width: 720px) {
  .subhero { height: 280px; }
  .subhero h1 { font-size: 39px; }
  .subhero p { font-size: 18.2px; }
  .intro-block h2 { font-size: 31.2px; }
  .intro-quote { font-size: 22.1px; }
  .proc-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; gap: 20px 12px; }
}

/* ====== BEFORE/AFTER COMPARE SLIDER ====== */
.compare-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.compare-card {
  background: #fff; border: 1px solid var(--gray-100);
  overflow: hidden; transition: transform 0.3s;
}
.compare-card:hover { transform: translateY(-4px); }
.compare {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  touch-action: none;
  background: #d8c4a8;
}
.compare-layer {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  /* 눈/재수술/동안 사진은 600x600 + 하단 25% 워터마크 → cover+top 으로 워터마크 잘라내고 얼굴/눈 영역만 표시 */
  object-fit: cover;
  object-position: center top;
  display: block;
}
/* 코 사진 — 정면 vs 옆모습(프로필)에 따라 정렬 기준이 다름 */
/* 정면: 정사각형으로 풀샷, 눈썹을 위쪽 8% 지점에 고정 */
.compare-card[data-cat="nose"] .compare {
  aspect-ratio: 1/1;
}
.compare-card[data-cat="nose"] .compare-layer {
  object-fit: cover;
  object-position: center 8%;
}
/* 옆모습(profile-pair-card): 좌측 BEFORE / 우측 AFTER 나란히 배치.
   슬라이더 없음. 원본 600x600 두 장이 1200x600 형태 (그리드 안에서 비율 유지하며 축소) */
.compare-card.profile-pair-card { cursor: default; }
.profile-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  aspect-ratio: 2/1;
  background: #1a1a1a;
  overflow: hidden;
}
.profile-pair-img {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #d8c4a8;
}
.profile-pair-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.profile-pair-label {
  position: absolute;
  top: 14px;
  z-index: 2;
  font-size: 14.3px;
  letter-spacing: 3px;
  font-weight: 700;
  padding: 5px 12px;
  pointer-events: none;
}
.profile-pair-img:first-child .profile-pair-label {
  left: 14px;
  background: rgba(0,0,0,0.7);
  color: #fff;
}
.profile-pair-img:last-child .profile-pair-label {
  right: 14px;
  background: var(--accent);
  color: #fff;
}
/* 그리드 안에서 가로로 길어진 카드는 두 칸 차지하면 더 보기 좋음 */
.compare-grid > .profile-pair-card { grid-column: span 2; }
@media (max-width: 1024px) {
  .compare-grid > .profile-pair-card { grid-column: span 2; }
}
@media (max-width: 720px) {
  .compare-grid > .profile-pair-card { grid-column: span 1; }
}
/* BEFORE: 베이스 레이어 (왼쪽에 노출) */
.compare-before {
  z-index: 1;
}
/* AFTER: 위에 깔리는 오버레이 — 우측만 보이도록 좌측을 잘라냄 */
.compare-after {
  z-index: 2;
  clip-path: inset(0 0 0 50%);
  -webkit-clip-path: inset(0 0 0 50%);
  will-change: clip-path;
}
.compare-divider {
  position: absolute; top: 0; bottom: 0;
  left: 50%; width: 2px;
  background: #fff;
  z-index: 5;
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 14px rgba(0,0,0,0.4);
}
.compare-handle {
  position: absolute; top: 50%; left: 50%;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: #fff;
  z-index: 6;
  transform: translate(-50%, -50%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  pointer-events: none;
  font-size: 23.4px; color: var(--accent-dark);
  font-weight: 700;
  letter-spacing: -2px;
}
.compare-label {
  position: absolute; top: 14px;
  z-index: 4;
  font-size: 14.3px; letter-spacing: 3px; font-weight: 700;
  padding: 5px 12px;
  pointer-events: none;
}
.compare-label.before {
  left: 14px;
  background: rgba(0,0,0,0.7); color: #fff;
}
.compare-label.after {
  right: 14px;
  background: var(--accent); color: #fff;
}
.compare-card .ba-body { padding: 22px; }
.compare-card .ba-body h4 { font-size: 20.8px; font-weight: 700; margin-bottom: 4px; letter-spacing: -0.3px; }
.compare-card .ba-body span { font-size: 15.6px; color: var(--gray-500); }
.compare-hint {
  text-align: center; font-size: 15.6px; color: var(--gray-500);
  letter-spacing: 1.5px; margin-bottom: 30px;
}
.compare-hint span {
  display: inline-block;
  padding: 8px 18px; border-radius: 20px;
  background: var(--gray-50); border: 1px solid var(--gray-100);
}

@media (max-width: 1024px) {
  .compare-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .compare-grid { grid-template-columns: 1fr; }
  .compare-handle { width: 38px; height: 38px; font-size: 19.5px; }
}

/* 해시태그 (사진과 수술명 사이) */
.hashtags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 10px;
}
.hashtags .ht {
  display: inline-block;
  font-size: 14.3px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: var(--accent-dark);
  background: rgba(198, 165, 114, 0.10);
  padding: 4px 9px;
  border-radius: 30px;
  line-height: 1.2;
  border: 1px solid rgba(198, 165, 114, 0.25);
  transition: all 0.15s;
}
.hashtags .ht:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* ====== SUB-NAV (시술 하위 메뉴) ====== */
.sub-nav-wrap {
  background: #fff;
  border-bottom: 1px solid var(--gray-100);
  position: sticky;
  top: 71px;
  z-index: 50;
}
.sub-nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.sub-nav-item {
  flex-shrink: 0;
  padding: 16px 20px;
  font-size: 18.2px;
  font-weight: 600;
  color: var(--gray-700);
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
}
.sub-nav-item:hover { color: var(--accent-dark); }
.sub-nav-item.active {
  color: var(--black);
  border-bottom-color: var(--accent);
}

/* 인트로 블록 안의 태그 줄 */
.proc-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 24px;
}
.proc-tags-row span {
  font-size: 16.9px;
  font-weight: 600;
  color: var(--accent-dark);
  background: rgba(198, 165, 114, 0.10);
  border: 1px solid rgba(198, 165, 114, 0.3);
  padding: 6px 14px;
  border-radius: 22px;
}

@media (max-width: 720px) {
  .sub-nav-wrap { top: 0; }
  .sub-nav-item { padding: 12px 14px; font-size: 16.9px; }
}

/* ====== GNB DROPDOWN ====== */
.gnb > li {
  position: relative;
  /* hover 영역 확장: li 아래쪽 14px padding 으로 dropdown 까지 마우스가 끊기지 않게 */
  padding-bottom: 14px;
  margin-bottom: -14px;
}
.gnb .dropdown {
  position: absolute;
  /* gap 없이 li 바로 아래 부착 (시각 갭은 dropdown 자체의 padding-top + ::before 화살표로 대체) */
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--gray-100);
  box-shadow: 0 12px 28px rgba(0,0,0,0.10);
  /* 위쪽 padding 을 두텁게 → 시각 간격 + hover bridge */
  padding: 18px 0 10px;
  border-radius: 4px;
  list-style: none;
  z-index: 110;
  /* opacity + visibility 로 hover 시 부드럽게, hover 영역 유지 */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease, visibility 0.15s;
}
/* li 가 hover, focus, 또는 클릭으로 .pinned 가 적용되면 표시 유지 */
.gnb > li:hover > .dropdown,
.gnb > li:focus-within > .dropdown,
.gnb > li.pinned > .dropdown,
.gnb .dropdown:hover {
  opacity: 1;
  visibility: visible;
}
/* pinned 상태일 때 상위 메뉴도 강조 */
.gnb > li.pinned > a {
  color: var(--accent-dark);
}
.gnb .dropdown::before {
  content: '';
  position: absolute;
  /* dropdown 의 padding-top 18px 안쪽에 화살표 위치 */
  top: 4px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px;
  background: #fff;
  border-left: 1px solid var(--gray-100);
  border-top: 1px solid var(--gray-100);
}
.gnb .dropdown li a {
  display: block;
  padding: 11px 22px;
  font-size: 18.2px;
  font-weight: 500;
  color: var(--gray-900);
  white-space: nowrap;
  transition: all 0.15s;
}
.gnb .dropdown li a:hover {
  background: var(--gray-50);
  color: var(--accent-dark);
  padding-left: 26px;
}

@media (max-width: 720px) {
  .gnb .dropdown { display: none !important; }
}

/* ====== ENHANCED PROCEDURE PAGE SECTIONS ====== */
.proc-target {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.proc-target li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 22px;
  background: var(--gray-50);
  border-left: 3px solid var(--accent);
  font-size: 19.5px;
  line-height: 1.6;
}
.proc-target li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 800;
  font-size: 23.4px;
  flex-shrink: 0;
}
.proc-method {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.proc-method-item {
  background: #fff;
  border: 1px solid var(--gray-100);
  padding: 32px 24px;
  border-radius: 4px;
}
.proc-method-item h4 {
  font-size: 23.4px; font-weight: 800;
  color: var(--accent-dark);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.proc-method-item p {
  font-size: 18.2px;
  color: var(--gray-700);
  line-height: 1.75;
}
.proc-recovery {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.proc-recovery-item {
  text-align: center;
  padding: 28px 18px;
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: 4px;
}
.proc-recovery-item .day {
  font-size: 18.2px; font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent-dark);
  margin-bottom: 8px;
}
.proc-recovery-item h5 {
  font-size: 20.8px; font-weight: 800;
  margin-bottom: 8px;
}
.proc-recovery-item p {
  font-size: 16.9px; color: var(--gray-700);
  line-height: 1.6;
}

@media (max-width: 720px) {
  .proc-target { grid-template-columns: 1fr; }
  .proc-method { grid-template-columns: 1fr; }
  .proc-recovery { grid-template-columns: 1fr 1fr; }
}

/* ====== VIDEO CARD (공통) ====== */
.video-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.video-card {
  background: #fff;
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: all 0.25s;
}
.video-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #2a2420, #5a4a3a);
  overflow: hidden;
  cursor: pointer;
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-thumb iframe { width: 100%; height: 100%; border: 0; display: block; }
.video-thumb.playing img,
.video-thumb.playing .video-play { display: none; }
.video-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-dark); font-size: 26px; padding-left: 4px;
  pointer-events: none;
}
.video-body { padding: 18px; }
.video-body h4 {
  font-size: 18.2px; font-weight: 700;
  margin-bottom: 6px; letter-spacing: -0.3px;
  line-height: 1.45;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.video-body small { font-size: 14.3px; color: var(--gray-500); letter-spacing: 1px; }
@media (max-width: 1024px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) { .video-grid { grid-template-columns: 1fr; } }

/* KNSY TV 동적 카드 보강 */
.tv-card { cursor: pointer; }
.tv-card .tv-thumb { transition: transform 0.4s; }
.tv-card:hover .tv-thumb { transform: scale(1.03); }

/* ====== KNSY TV 캐러셀 (가로 스크롤) ====== */
.tv-carousel {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;  /* 좌우 화살표 공간 */
}
.tv-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 4px 24px;
  margin: -8px -4px 0;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--gray-100);
}
.tv-track::-webkit-scrollbar { height: 8px; }
.tv-track::-webkit-scrollbar-track { background: var(--gray-100); border-radius: 4px; }
.tv-track::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 4px; }

.tv-slide {
  flex: 0 0 calc((100% - 40px) / 3);  /* 처음에 정확히 3개 보이도록 (gap 20px × 2) */
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform 0.25s;
  background: #fff;
  border: 1px solid var(--gray-100);
  overflow: hidden;
}
.tv-slide:hover { transform: translateY(-4px); }
.tv-slide-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background-color: #1a1a1a;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.tv-slide-thumb iframe {
  width: 100%; height: 100%; border: 0; position: absolute; inset: 0;
}
.tv-slide-thumb.playing { background-color: #000; }
.tv-slide-thumb.playing .tv-slide-play { display: none; }
.tv-slide-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-dark); font-size: 28.6px; padding-left: 4px;
  pointer-events: none;
  transition: transform 0.2s;
}
.tv-slide:hover .tv-slide-play { transform: translate(-50%, -50%) scale(1.1); }
.tv-slide-info {
  padding: 18px 20px 20px;
}
.tv-slide-num {
  font-size: 14.3px; letter-spacing: 3px;
  color: var(--accent-dark); font-weight: 700;
  margin-bottom: 8px;
}
.tv-slide-info h4 {
  font-size: 19.5px; font-weight: 700;
  letter-spacing: -0.3px; line-height: 1.45;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  min-height: 2.9em;
}

.tv-arrow {
  position: absolute; top: calc(50% - 30px);
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--gray-100);
  box-shadow: 0 6px 20px rgba(0,0,0,0.10);
  font-size: 28.6px; font-weight: 800;
  color: var(--accent-dark);
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s;
}
.tv-arrow:hover:not(:disabled) {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.tv-arrow:disabled {
  opacity: 0.3; cursor: not-allowed;
}
.tv-arrow.prev { left: 8px; }
.tv-arrow.next { right: 8px; }

.tv-counter {
  text-align: center;
  margin-top: 12px;
  font-size: 16.9px; letter-spacing: 2px;
  color: var(--gray-500);
  font-weight: 600;
}

/* 반응형: 화면 좁아지면 한 화면에 보이는 카드 수 변화 */
@media (max-width: 1024px) {
  .tv-carousel { padding: 0 50px; }
  .tv-slide { flex: 0 0 calc((100% - 20px) / 2); }  /* 2개 보이게 */
}
@media (max-width: 720px) {
  .tv-carousel { padding: 0 16px; }
  .tv-slide { flex: 0 0 85%; }  /* 1개 + 다음 카드 살짝 보이게 */
  .tv-arrow { width: 40px; height: 40px; font-size: 23.4px; }
  .tv-arrow.prev { left: -4px; }
  .tv-arrow.next { right: -4px; }
}

/* ====== GOOGLE REVIEWS ====== */
#google-reviews { padding-bottom: 50px; }
.g-rating-card {
  max-width: 720px; margin: 0 auto;
  background: linear-gradient(135deg, #fff, var(--gray-50));
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  padding: 50px 30px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}
.g-rating-num {
  font-size: 93.6px; font-weight: 900;
  color: var(--accent-dark);
  letter-spacing: -3px; line-height: 1;
  margin-bottom: 10px;
}
.g-rating-stars {
  font-size: 41.6px; color: #fbbc04;
  letter-spacing: 4px; margin-bottom: 14px;
}
.g-rating-meta {
  font-size: 18.2px; color: var(--gray-700);
  margin-bottom: 26px;
}
.g-rating-actions {
  display: flex; justify-content: center; gap: 10px; flex-wrap: wrap;
}
.g-rating-actions .btn {
  padding: 14px 26px; font-size: 18.2px;
}
.g-write { color: var(--accent-dark) !important; border-color: var(--accent) !important; }
.google-map-embed {
  max-width: 1080px; margin: 50px auto 0;
  aspect-ratio: 16/9;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  border-radius: 4px;
}
.google-map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 720px) {
  .g-rating-num { font-size: 72.8px; }
  .g-rating-stars { font-size: 33.8px; }
  .google-map-embed { aspect-ratio: 4/3; }
}

/* google-map-embed safety: iframe 명시적 높이 한계 */
.google-map-embed {
  height: 480px;
  max-height: 60vh;
}
.google-map-embed iframe { height: 100% !important; }

/* ====== REAL SELFIE 갤러리 (리얼스토리 페이지) ====== */
.real-selfie {
  max-width: 1280px;
  margin: 0 auto;
}
.real-selfie-head { text-align: center; margin-bottom: 40px; color: #fff; }
.real-selfie-eyebrow {
  display: inline-block;
  font-size: 15.6px; letter-spacing: 5px; font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}
.real-selfie-head h3 {
  font-size: 33.8px; font-weight: 800;
  letter-spacing: -1px; margin-bottom: 8px;
  color: #fff;
}
.real-selfie-head p {
  font-size: 18.2px; color: rgba(255, 255, 255, 0.6);
}
.real-selfie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.real-selfie-card {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 4px;
  background: #1a1a1a;
  transition: transform 0.3s;
  cursor: pointer;
}
.real-selfie-card:hover { transform: scale(1.02); }
.real-selfie-card img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
@media (max-width: 1024px) { .real-selfie-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px)  { .real-selfie-grid { grid-template-columns: 1fr; } }



/* ====== FLOAT-SIDE 통합 사이드바 (knsy SNS 링크 포함) ====== */
.float-side {
  position: fixed; right: 16px; top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex; flex-direction: column; gap: 6px;
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: 6px;
  padding: 10px 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.10);
}
.float-btn {
  display: flex; flex-direction: column;
  align-items: center; gap: 5px;
  width: 70px; padding: 10px 6px;
  border-radius: 6px;
  text-align: center;
  font-size: 14.3px; font-weight: 600;
  color: var(--gray-900);
  background: transparent;
  border: 0;
  transition: all 0.15s;
  text-decoration: none;
  line-height: 1.3;
}
.float-btn:hover { background: var(--gray-50); color: var(--accent-dark); transform: translateX(-2px); }
.float-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 19.5px;
  background: var(--gray-50);
  color: var(--accent-dark);
  font-weight: 700;
}
.float-icon svg, .float-l-icon svg { width: 18px; height: 18px; display: block; }
/* 차분한 모노톤 — 모든 아이콘 회색 베이스, 호버 시에만 액센트 활성화 */
.float-btn .float-icon {
  background: var(--gray-50);
  color: var(--gray-700);
  font-weight: 600;
}
.float-btn:hover .float-icon { background: var(--accent); color: #fff; }
/* CTA만 살짝 구분 (카톡/전화는 기본 상태에서도 액센트) */
.float-btn.kakao .float-icon,
.float-btn.tel .float-icon { background: var(--gray-700); color: #fff; }
.float-btn.kakao:hover .float-icon,
.float-btn.tel:hover .float-icon { background: var(--accent); }
.float-top {
  margin-top: 4px; padding-top: 8px;
  border-top: 1px solid var(--gray-100);
  width: 100%; height: 32px;
  background: var(--black); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 14.3px; font-weight: 700; letter-spacing: 1px;
  border-radius: 4px;
  text-decoration: none;
}
.float-top:hover { background: var(--accent-dark); }

@media (max-width: 1024px) {
  .float-side { right: 8px; padding: 6px 5px; }
  .float-btn { width: 58px; font-size: 13px; padding: 6px 3px; }
  .float-icon { width: 28px; height: 28px; font-size: 16.9px; }
}
@media (max-width: 720px) {
  .float-side {
    flex-direction: row; gap: 2px;
    bottom: 0; top: auto; right: 0; left: 0; width: 100%;
    transform: none;
    border-radius: 0;
    border: 0; border-top: 1px solid var(--gray-100);
    padding: 4px 2px;
    justify-content: space-around;
    overflow-x: auto;
  }
  .float-btn { width: auto; flex: 1; min-width: 50px; padding: 4px 2px; font-size: 11.7px; }
  .float-icon { width: 24px; height: 24px; font-size: 14.3px; }
  .float-top { display: none; }
}

/* ====== 좌측 고정 사이드바 (빠른상담·휴진표·오시는길·전체메뉴) ====== */
.float-side-left {
  position: fixed;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 60;
  display: flex; flex-direction: column;
  gap: 8px;
}
.float-btn-l {
  width: 64px;
  padding: 10px 4px;
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: 10px;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  font-size: 14.3px; font-weight: 700;
  letter-spacing: -0.3px;
  text-decoration: none;
  color: var(--black);
  text-align: center;
  line-height: 1.3;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: all 0.2s;
}
.float-btn-l .float-l-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18.2px; font-weight: 700;
  background: var(--gray-50);
  color: var(--accent-dark);
  margin-bottom: 2px;
}
.float-btn-l:hover {
  background: var(--gray-50);
  color: var(--accent-dark);
  border-color: var(--accent);
  transform: translateX(2px);
  box-shadow: 0 6px 20px rgba(193, 124, 84, 0.18);
}
/* 차분한 모노톤 — 좌측 SNS 아이콘도 동일 톤 */
.float-btn-l .float-l-icon {
  background: var(--gray-50);
  color: var(--gray-700);
}
.float-btn-l:hover .float-l-icon { background: var(--accent); color: #fff; }
.float-btn-l.consult { background: var(--accent); color: #fff; border-color: var(--accent); }
.float-btn-l.consult .float-l-icon { background: rgba(255,255,255,0.22); color: #fff; }
.float-btn-l.consult:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: #fff; }

@media (max-width: 1280px) {
  .float-side-left { left: 8px; }
  .float-btn-l { width: 56px; font-size: 13.7px; }
  .float-btn-l .float-l-icon { font-size: 20.8px; }
}
@media (max-width: 720px) {
  /* 모바일: 좌측 사이드바 숨김 (상단 메뉴 / 우측 float-side 로 충분) */
  .float-side-left { display: none; }
}

/* 상단 검정 유틸리티 바 — 좌측 사이드바로 대체되어 사용 안 함 */
.top-bar { display: none !important; }

/* ====== POLICY 페이지 (이용약관 / 개인정보취급방침 / 수가표 / 제증명) ====== */
.policy-section { padding-bottom: 80px; }
.policy-doc {
  max-width: 880px; margin: 0 auto;
  line-height: 1.85;
  color: var(--gray-800);
}
.policy-doc .policy-title {
  font-size: 36.4px; font-weight: 800;
  letter-spacing: -1px;
  text-align: center; margin: 0 0 36px;
  padding-bottom: 22px;
  border-bottom: 2px solid var(--accent);
}
.policy-doc .policy-lead {
  text-align: center; font-size: 19.5px;
  color: var(--gray-700); margin: 0 0 32px;
}
.policy-doc h3 {
  font-size: 23.4px; font-weight: 800;
  margin: 38px 0 14px; padding-top: 18px;
  border-top: 1px solid var(--gray-100);
  letter-spacing: -0.4px; color: var(--gray-900);
}
.policy-doc h4 {
  font-size: 19.5px; font-weight: 700;
  margin: 22px 0 8px;
  color: var(--accent-dark); letter-spacing: -0.2px;
}
.policy-doc p {
  font-size: 18.9px; color: var(--gray-700);
  margin: 8px 0;
}
.policy-doc p strong { color: var(--gray-900); font-weight: 700; }
.policy-doc small { font-size: 16.9px; color: var(--gray-500); }
.policy-doc ul, .policy-doc ol {
  padding-left: 24px; margin: 12px 0;
}
.policy-doc li {
  font-size: 18.9px; line-height: 1.9;
  color: var(--gray-700);
}
.policy-doc .policy-toc {
  margin: 0 0 30px; padding: 22px 28px;
  background: var(--gray-50);
  border-radius: 8px;
  list-style-position: inside;
}
.policy-doc .policy-toc li { font-weight: 500; padding: 2px 0; }
.policy-table {
  width: 100%; margin: 28px 0;
  border-collapse: collapse;
  font-size: 18.9px;
  border: 1px solid var(--gray-100);
  border-radius: 8px; overflow: hidden;
}
.policy-table thead th {
  background: var(--accent-dark); color: #fff;
  padding: 14px 16px; font-weight: 700;
  text-align: center; font-size: 18.2px;
  letter-spacing: -0.2px;
}
.policy-table tbody td {
  padding: 14px 16px; text-align: center;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-800);
}
.policy-table tbody tr:nth-child(even) { background: var(--gray-50); }
.policy-table tbody tr:last-child td { border-bottom: 0; }
.policy-doc .policy-note {
  margin-top: 30px; padding: 16px 20px;
  background: var(--gray-50); border-radius: 8px;
  font-size: 16.9px; color: var(--gray-600);
  line-height: 1.8;
}
.policy-doc .policy-note a { color: var(--accent-dark); font-weight: 700; }
@media (max-width: 720px) {
  .policy-doc { font-size: 18.2px; }
  .policy-doc .policy-title { font-size: 28.6px; }
  .policy-doc h3 { font-size: 20.8px; }
  .policy-doc h4 { font-size: 18.2px; }
  .policy-table { font-size: 16.9px; }
  .policy-table thead th, .policy-table tbody td { padding: 10px 8px; }
}

/* ====== FOOTER 보강 (knsy.co.kr 푸터 콘텐츠 + 우리 디자인 톤) ====== */
.footer-brand-col { display: flex; flex-direction: column; }
.footer-hours { margin: 18px 0 12px; }
.footer-hours li {
  display: flex; gap: 14px;
  padding: 4px 0; font-size: 16.9px;
  color: rgba(255,255,255,0.55);
}
.footer-hours strong {
  color: rgba(255,255,255,0.85); font-weight: 600;
  min-width: 64px; letter-spacing: -0.3px;
}
.footer-tel {
  margin: 6px 0 18px; font-size: 26px;
  color: #fff; font-weight: 800; letter-spacing: -0.5px;
}
.footer-tel small {
  display: inline-block; font-size: 14.3px;
  color: rgba(255,255,255,0.4); letter-spacing: 2px;
  font-weight: 600; margin-right: 8px;
}
.footer-tel a { color: #fff; text-decoration: none; }
.footer-tel a:hover { color: var(--accent); }
.footer-sns {
  display: flex; gap: 10px; margin-top: 4px;
}
.footer-sns a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all .2s;
}
.footer-sns a:hover {
  background: var(--accent); color: #0e0c0a;
  border-color: var(--accent);
}
.footer-sns svg { width: 16px; height: 16px; display: block; }

/* 우측 하단 통합 컨테이너 (메뉴 + 서브링크 + 면책 + 사업자정보) */
.footer-right { display: flex; flex-direction: column; gap: 22px; }

.footer-sub-links {
  margin: 0; padding: 18px 0 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-wrap: wrap; gap: 6px 22px;
  font-size: 15.6px; line-height: 1.7;
  justify-content: center;
}
.footer-sub-links a {
  color: rgba(255,255,255,0.55);
  position: relative;
  text-decoration: none;
}
.footer-sub-links a::after {
  content: ''; position: absolute;
  right: -12px; top: 50%; transform: translateY(-50%);
  width: 1px; height: 10px;
  background: rgba(255,255,255,0.15);
}
.footer-sub-links a:last-child::after { display: none; }
.footer-sub-links a:hover { color: var(--accent); }

.footer-disclaimer {
  margin: 0;
  padding: 14px 16px;
  font-size: 15px; line-height: 1.7;
  color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.03);
  text-align: center;
}

.footer-business-block {
  display: flex; flex-direction: column; gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.footer-business {
  display: flex; flex-wrap: wrap; gap: 4px 14px;
  font-size: 15.6px;
  justify-content: center;
}
.footer-business span { color: rgba(255,255,255,0.45); }
.footer-business strong { color: rgba(255,255,255,0.7); font-weight: 600; }
.footer-copy {
  font-size: 15.6px; color: rgba(255,255,255,0.35);
  letter-spacing: 0.3px;
  text-align: center;
}

@media (max-width: 720px) {
  .footer-hours li { font-size: 16.2px; }
  .footer-tel { font-size: 23.4px; }
  .footer-sns a { width: 34px; height: 34px; }
  .footer-sub-links { font-size: 15px; gap: 4px 16px; }
  .footer-sub-links a::after { right: -9px; }
  .footer-disclaimer { font-size: 14.3px; }
  .footer-business { font-size: 15px; }
}

/* ====== 휴진표 페이지 ====== */
.subhero-clinic {
  background: linear-gradient(135deg, #3a2820 0%, #5a3a22 50%, #8a5a36 100%);
}
.hours-card {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.hours-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid var(--gray-100);
}
.hours-row:last-of-type { border-bottom: 0; }
.hours-day {
  font-size: 19.5px; font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--black);
}
.hours-time {
  font-size: 20.8px; font-weight: 600;
  letter-spacing: -0.3px;
  color: var(--accent-dark);
}
.hours-row-off .hours-time { color: var(--gray-700); }
.hours-note {
  padding: 18px 28px;
  background: var(--gray-50, #faf6f0);
  font-size: 16.9px; color: var(--gray-700);
  text-align: center;
  margin: 0;
}
.hours-note a { color: var(--accent-dark); font-weight: 700; text-decoration: none; }
.hours-note a:hover { text-decoration: underline; }

/* 베이지~브라운 톤 휴진 달력 */
.closure-section {
  background: linear-gradient(180deg, #faf6f0 0%, #f5ebd9 100%);
}
.cal-legend {
  display: flex; justify-content: center; gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  font-size: 16.9px; color: #6b5638;
  font-weight: 600;
}
.cal-legend-item { display: inline-flex; align-items: center; gap: 8px; }
.cal-swatch {
  display: inline-block;
  width: 18px; height: 18px;
  border-radius: 4px;
  border: 1px solid rgba(0,0,0,0.08);
}
.cal-sw-open { background: #fff; }
.cal-sw-sun { background: #efe1c8; }
.cal-sw-closed { background: #8a5a36; }

.cal-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}
.cal-month {
  background: #fff;
  border: 1px solid #e6d6b5;
  border-radius: 12px;
  padding: 18px 18px 20px;
  box-shadow: 0 4px 16px rgba(122, 86, 50, 0.06);
}
.cal-month-head {
  display: flex; align-items: baseline; gap: 4px;
  padding: 4px 6px 14px;
  border-bottom: 1.5px solid #e6d6b5;
  margin-bottom: 12px;
}
.cal-num {
  font-size: 41.6px; font-weight: 800;
  letter-spacing: -1.5px; line-height: 1;
  color: #6a3f1c;
  font-family: 'Georgia', serif;
}
.cal-mo {
  font-size: 18.2px; font-weight: 700;
  color: #8a6a4a;
  letter-spacing: -0.3px;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-dow {
  margin-bottom: 6px;
}
.cal-dow > div {
  text-align: center;
  font-size: 14.3px; font-weight: 700;
  letter-spacing: 0.5px;
  color: #8a7458;
  padding: 6px 0;
}
.cal-dow .dow-sun { color: #b85a3a; }
.cal-dow .dow-sat { color: #4a6a8a; }

.cal-cell {
  position: relative;
  aspect-ratio: 1/1;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
  padding: 5px 0 0;
  border-radius: 6px;
  font-size: 16.9px; font-weight: 600;
  color: #2a1f12;
  background: #fff;
  transition: background 0.15s;
  overflow: hidden;
}
.cal-empty { visibility: hidden; }
.cal-cell.cal-sun {
  background: #efe1c8;
  color: #8a4a30;
}
.cal-cell.cal-sat {
  color: #4a6a8a;
}
.cal-cell.cal-closed {
  background: #8a5a36;
  color: #fff;
  font-weight: 700;
}
.cal-cell.cal-closed.cal-sun {
  background: #6a3f1c;
}
.cal-cell.cal-today {
  outline: 2px solid #c17c54;
  outline-offset: -2px;
}
.cal-d {
  display: block;
  font-variant-numeric: tabular-nums;
}
.cal-tag {
  display: block;
  font-size: 11.7px; font-weight: 600;
  letter-spacing: -0.2px;
  margin-top: 2px;
  padding: 0 3px;
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  opacity: 0.92;
}

.closure-notice {
  max-width: 1180px;
  margin: 40px auto 0;
  padding: 24px 28px;
  background: #fff;
  border: 1px solid #e6d6b5;
  border-radius: 12px;
}
.closure-notice h4 {
  font-size: 19.5px; font-weight: 800;
  letter-spacing: -0.3px;
  margin-bottom: 14px;
  color: #6a3f1c;
}
.closure-notice ul {
  list-style: none; padding: 0; margin: 0;
}
.closure-notice li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  font-size: 16.9px; color: #5a4636;
  line-height: 1.7;
}
.closure-notice li::before {
  content: '·'; position: absolute;
  left: 6px; top: 0; font-weight: 800;
  color: #8a5a36;
}
.closure-notice a { color: #6a3f1c; font-weight: 700; }

.closure-cta {
  display: flex; gap: 14px; justify-content: center;
  flex-wrap: wrap;
}
.closure-cta .btn {
  font-size: 20.8px; padding: 14px 28px;
}

@media (max-width: 1024px) {
  .cal-wrap { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .cal-wrap { grid-template-columns: 1fr; gap: 14px; }
  .hours-row { padding: 16px 20px; flex-direction: column; align-items: flex-start; gap: 4px; }
  .hours-time { font-size: 19.5px; }
  .cal-num { font-size: 33.8px; }
  .cal-tag { font-size: 11.1px; }
}

/* ====== EYE SUB-PAGE ENHANCEMENTS (눈성형 시술 페이지 디자인) ====== */
/* Subhero 변형 (눈성형) */
.subhero-eye {
  background: linear-gradient(135deg, #2a1f1a 0%, #4a342a 50%, #6a4a3a 100%);
}
.subhero-nose {
  background: linear-gradient(135deg, #1f2530 0%, #2c3a4f 50%, #44597a 100%);
}
.subhero-anti {
  background: linear-gradient(135deg, #2a1a25 0%, #4a2c3f 50%, #7a4a66 100%);
}
.subhero-skin {
  background: linear-gradient(135deg, #1a2a28 0%, #2c4a45 50%, #4a7a72 100%);
}
/* 코성형 페이지 — 헤더 블루 그라데이션 톤으로 전체 테마 통일 */
body:has(.subhero-nose) {
  --accent: #5e7da9;
  --accent-dark: #2c3a4f;
}
body:has(.subhero-nose) section:has(.target-num-list) {
  background: linear-gradient(165deg, #3c4f6e 0%, #20283a 100%) !important;
}
/* 동안성형 페이지 — 헤더 퍼플 그라데이션 톤으로 전체 테마 통일 */
body:has(.subhero-anti) {
  --accent: #9a6a86;
  --accent-dark: #4a2c3f;
}
body:has(.subhero-anti) section:has(.target-num-list) {
  background: linear-gradient(165deg, #56374c 0%, #281a23 100%) !important;
}
/* 피부레이저 페이지 — 헤더 그린 그라데이션 톤으로 통일 */
body:has(.subhero-skin) {
  --accent: #5a8a82;
  --accent-dark: #2c4a45;
}
body:has(.subhero-skin) section:has(.target-num-list) {
  background: linear-gradient(165deg, #3a5e58 0%, #18272a 100%) !important;
}
/* .textured-bg 섹션 — 카테고리별 거친 질감 배경 */
body:has(.subhero-skin) section.textured-bg,
body:has(.subhero-skin) section.green-textured {
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='320' height='320'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='2.2' numOctaves='4' seed='9'/><feColorMatrix values='0 0 0 0 0.65  0 0 0 0 1  0 0 0 0 0.82  0 0 0 0.55 0'/></filter><rect width='320' height='320' filter='url(%23n)'/></svg>"),
    linear-gradient(135deg, #143028 0%, #1f4a40 45%, #346a5c 100%) !important;
  background-size: 320px 320px, cover !important;
}
body:has(.subhero-eye) section.textured-bg {
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='320' height='320'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='2.2' numOctaves='4' seed='9'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 0.78  0 0 0 0 0.55  0 0 0 0.55 0'/></filter><rect width='320' height='320' filter='url(%23n)'/></svg>"),
    linear-gradient(135deg, #221610 0%, #3b2818 45%, #5a3f24 100%) !important;
  background-size: 320px 320px, cover !important;
}
body:has(.subhero-nose) section.textured-bg {
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='320' height='320'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='2.2' numOctaves='4' seed='9'/><feColorMatrix values='0 0 0 0 0.65  0 0 0 0 0.82  0 0 0 0 1  0 0 0 0.55 0'/></filter><rect width='320' height='320' filter='url(%23n)'/></svg>"),
    linear-gradient(135deg, #11192a 0%, #1d2c46 45%, #2f4870 100%) !important;
  background-size: 320px 320px, cover !important;
}
body:has(.subhero-anti) section.textured-bg {
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='320' height='320'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='2.2' numOctaves='4' seed='9'/><feColorMatrix values='0 0 0 0 0.94  0 0 0 0 0.7  0 0 0 0 0.86  0 0 0 0.55 0'/></filter><rect width='320' height='320' filter='url(%23n)'/></svg>"),
    linear-gradient(135deg, #20141e 0%, #3a2336 45%, #563350 100%) !important;
  background-size: 320px 320px, cover !important;
}
section.textured-bg .sec-eyebrow, section.green-textured .sec-eyebrow { color: rgba(255,255,255,.6); }
section.textured-bg .sec-head h2, section.green-textured .sec-head h2 { color: #fff; }
section.textured-bg .sec-head p, section.green-textured .sec-head p { color: rgba(255,255,255,.82); }

/* Hero Quote 블록 (원장 메시지) */
.hero-quote-block {
  padding: 70px 20px;
  background: linear-gradient(180deg, #fff 0%, #faf6f0 100%);
}
.hero-quote-inner {
  max-width: 780px; margin: 0 auto; text-align: center;
  position: relative;
}
.hero-quote-mark {
  font-size: 117px; line-height: 0.6;
  color: var(--accent);
  font-family: Georgia, serif;
  margin-bottom: 10px;
  opacity: 0.5;
}
.hero-quote-block h2 {
  font-size: 39px; font-weight: 800;
  letter-spacing: -1px; line-height: 1.4;
  margin-bottom: 22px;
  color: var(--black);
}
.hero-quote-dr {
  font-size: 22.1px; font-weight: 500;
  color: var(--gray-900);
  line-height: 1.7; margin-bottom: 14px;
  font-style: italic;
}
.hero-quote-name {
  font-size: 16.9px; letter-spacing: 3px;
  color: var(--accent-dark); font-weight: 700;
}

/* 비교 테이블 */
.cmp-table-wrap {
  max-width: 980px; margin: 0 auto;
  overflow-x: auto;
  border: 1px solid var(--gray-100);
  border-radius: 4px;
}
.cmp-table {
  width: 100%; border-collapse: collapse;
  font-size: 18.2px;
}
.cmp-table thead {
  background: var(--gray-50);
}
.cmp-table th {
  padding: 16px 18px; text-align: left;
  font-size: 16.9px; letter-spacing: 1px; font-weight: 700;
  color: var(--accent-dark);
  border-bottom: 2px solid var(--accent);
}
.cmp-table td {
  padding: 18px 18px;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-900); line-height: 1.6;
}
.cmp-table td strong { color: var(--black); font-weight: 700; }
.cmp-table tbody tr:last-child td { border-bottom: 0; }
.cmp-table tbody tr:last-child {
  background: rgba(198, 165, 114, 0.06);
}
.cmp-table tbody tr:last-child td strong { color: var(--accent-dark); }

/* 시술 진행 단계 (number + body) */
.proc-steps {
  max-width: 1080px; margin: 0 auto;
  display: grid; gap: 14px;
}
.proc-step-item {
  display: grid; grid-template-columns: 70px 1fr; gap: 24px;
  align-items: center;
  padding: 24px 28px;
  background: #fff;
  border-radius: 6px;
  border: 1px solid var(--gray-100);
  transition: all 0.2s;
}
.proc-step-item:hover { border-color: var(--accent); transform: translateX(4px); }
.proc-step-num {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 28.6px; font-weight: 800;
  letter-spacing: -1px;
  flex-shrink: 0;
}
.proc-step-body h4 {
  font-size: 23.4px; font-weight: 800;
  letter-spacing: -0.3px; margin-bottom: 6px;
  color: var(--black);
}
.proc-step-body p {
  font-size: 18.2px; color: var(--gray-700);
  line-height: 1.7;
}

/* SVG 일러스트가 들어간 시술 단계 (proc-steps-illust 변형) */
.proc-steps-illust .proc-step-item {
  grid-template-columns: 60px 220px 1fr;
  gap: 28px;
  padding: 22px 26px;
  align-items: center;
}
.proc-step-svg {
  margin: 0;
  width: 220px;
  background: #faf6f0;
  border: 1px solid var(--gray-100);
  border-radius: 6px;
  overflow: hidden;
  display: block;
}
.proc-step-svg svg {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 900px) {
  .proc-steps-illust .proc-step-item {
    grid-template-columns: 50px 1fr;
    gap: 16px;
  }
  .proc-steps-illust .proc-step-svg {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 320px;
    margin: 8px auto 0;
  }
}

@media (max-width: 720px) {
  .hero-quote-block { padding: 50px 20px; }
  .hero-quote-block h2 { font-size: 28.6px; }
  .hero-quote-dr { font-size: 19.5px; }
  .cmp-table { font-size: 15.6px; }
  .cmp-table th, .cmp-table td { padding: 12px 10px; }
  .proc-step-item { grid-template-columns: 50px 1fr; gap: 16px; padding: 18px 20px; }
  .proc-step-num { width: 44px; height: 44px; font-size: 22.1px; }
}

/* ====== DOCTOR'S COLUMN (닥터스칼럼) ====== */
.subhero-column {
  background: linear-gradient(135deg, #1d1d1f 0%, #2c2826 50%, #4a3a30 100%);
}
.columns-section {
  padding: 70px 20px 100px;
  background: linear-gradient(180deg, #fafaf7 0%, #fff 100%);
}
.columns-inner { max-width: 1200px; margin: 0 auto; }
.columns-head {
  display: grid; grid-template-columns: 1fr auto;
  gap: 30px; align-items: end;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gray-100);
}
.columns-eyebrow {
  display: inline-block;
  font-size: 14.3px; letter-spacing: 3px; font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}
.columns-head h2 {
  font-size: 41.6px; font-weight: 800;
  letter-spacing: -1.2px; line-height: 1.3;
  color: var(--black);
  margin-bottom: 14px;
}
.columns-head p {
  font-size: 18.2px; color: var(--gray-700);
  line-height: 1.8;
}
.columns-source {
  display: flex; flex-direction: column;
  text-align: right;
  padding: 16px 22px;
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
  min-width: 220px;
}
.columns-source:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.05); }
.columns-source-label {
  font-size: 13px; letter-spacing: 2px;
  color: var(--gray-500); margin-bottom: 4px;
}
.columns-source-name {
  font-size: 18.2px; font-weight: 700;
  color: var(--black); margin-bottom: 2px;
}
.columns-source-arrow {
  align-self: flex-end;
  font-size: 20.8px; color: var(--accent);
}
.columns-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; margin-bottom: 24px;
}
.columns-search {
  flex: 1; max-width: 360px;
  position: relative;
}
.columns-search input {
  width: 100%;
  padding: 12px 16px 12px 42px;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  background: #fff url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'><circle cx='11' cy='11' r='8'/><path d='m21 21-4.35-4.35'/></svg>") no-repeat 14px center;
  font-size: 18.2px;
  color: var(--black);
  transition: border-color 0.2s;
}
.columns-search input:focus {
  outline: none; border-color: var(--accent);
}
.columns-count {
  font-size: 16.9px;
  color: var(--gray-700);
  font-weight: 500;
}
.columns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.col-best-section {
  margin-bottom: 56px;
}
.col-best-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--accent);
}
.col-best-eyebrow {
  font-size: 16.9px;
  letter-spacing: 4px;
  color: var(--accent);
  font-weight: 800;
}
.col-best-title {
  font-size: 28.6px;
  font-weight: 700;
  letter-spacing: -0.4px;
  margin: 0;
  color: var(--black);
}
.col-best-grid .col-card {
  border-color: var(--accent);
  box-shadow: 0 4px 18px rgba(198, 165, 114, 0.15);
}
.col-best-grid .col-card-thumb {
  position: relative;
}
.col-best-grid .col-card-thumb::after {
  content: 'BEST';
  position: absolute;
  top: 12px; left: 12px;
  background: var(--accent);
  color: #fff;
  font-size: 14.3px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 5px 11px;
  border-radius: 3px;
  z-index: 3;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.col-latest-head {
  margin-top: 8px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gray-100);
}
.col-latest-title {
  font-size: 28.6px;
  font-weight: 700;
  letter-spacing: -0.4px;
  margin: 0;
  color: var(--black);
}
.col-card {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
  min-height: 0;
}
.col-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s;
  z-index: 2;
}
.col-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.col-card:hover::before { transform: scaleY(1); }
.col-card-thumb {
  aspect-ratio: 16/10;
  background: var(--gray-50, #f5f5f3) center/cover no-repeat;
  border-bottom: 1px solid var(--gray-100);
}
.col-card-thumb-empty {
  background: linear-gradient(135deg, #faf6f0 0%, #f0e6d8 100%);
  display: flex; align-items: center; justify-content: center;
}
.col-card-thumb-empty span {
  font-size: 31.2px; font-weight: 800; letter-spacing: 4px;
  color: var(--accent); opacity: 0.45;
}
.col-card-body {
  padding: 22px 22px 20px;
  display: flex; flex-direction: column;
  flex: 1;
}
.col-rev::before { background: #b94455; }
.col-trim::before { background: #6a8db5; }
.col-mid::before { background: #8a6a9c; }
.col-male::before { background: #4a6f8a; }
.col-method::before { background: #c19a4a; }
.col-card-meta {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
  font-size: 15.6px;
}
.col-date {
  color: var(--gray-700);
  font-weight: 600;
  letter-spacing: 0.3px;
}
.col-cmt {
  padding: 2px 8px;
  background: var(--gray-50, #f5f5f3);
  color: var(--gray-700);
  border-radius: 10px;
  font-size: 14.3px;
}
.col-title {
  font-size: 20.8px; font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1.5;
  color: var(--black);
  margin: 0 0 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 48px;
}
.col-excerpt {
  font-size: 16.9px;
  line-height: 1.6;
  color: var(--gray-700);
  margin: 0 0 18px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
}
.col-excerpt-empty { min-height: 62px; }
.col-card-foot {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 15.6px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-100);
}
.col-author { color: var(--gray-700); font-weight: 500; }
.col-link { color: var(--accent); font-weight: 700; }
.columns-pager {
  display: flex; justify-content: center;
  margin-top: 40px;
}
.columns-pagination {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}
.page-btn {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: 6px;
  font-size: 18.2px;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
  font-family: inherit;
  line-height: 1;
}
.page-btn:hover:not(:disabled):not(.is-active) {
  border-color: var(--accent);
  color: var(--accent);
}
.page-btn.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  cursor: default;
}
.page-btn:disabled {
  color: var(--gray-500);
  cursor: not-allowed;
  opacity: 0.5;
}
.page-nav {
  font-size: 23.4px;
  font-weight: 400;
}
.page-ellipsis {
  color: var(--gray-500);
  padding: 0 4px;
  font-size: 18.2px;
  user-select: none;
}
.columns-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--gray-500);
  font-size: 18.2px;
}

/* ====== KEYWORD CLOUD (메인+보드 공용 키워드 칩) ====== */
.kw-cloud {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin: 8px 0 32px;
  justify-content: center;
}
.kw-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px;
  background: #fff;
  border: 1.5px solid var(--gray-100);
  border-radius: 30px;
  text-decoration: none;
  font-size: 18.2px; font-weight: 700;
  letter-spacing: -0.2px;
  color: var(--black);
  transition: all 0.18s;
}
.kw-chip:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(193, 124, 84, 0.25);
}
.kw-chip:hover .kw-count { color: rgba(255,255,255,0.85); }
.kw-chip.is-active {
  background: var(--black); color: #fff; border-color: var(--black);
}
.kw-chip.is-active .kw-count { color: rgba(255,255,255,0.7); }
.kw-label { font-weight: 700; }
.kw-count {
  font-size: 14.3px; font-weight: 600;
  color: var(--gray-700);
  letter-spacing: 0.3px;
}
/* 키워드별 점 색 (좌측 작은 점) */
.kw-chip::before {
  content: ''; width: 7px; height: 7px;
  border-radius: 50%; flex-shrink: 0;
  background: var(--accent);
}
.kw-all::before     { background: var(--black); }
.kw-rev::before     { background: #b94455; }
.kw-early::before   { background: #a0522d; }
.kw-twoline::before { background: #c19a4a; }
.kw-retract::before { background: #8a4a4a; }
.kw-male::before    { background: #2c5f73; }
.kw-lower::before   { background: #4a7a8a; }
.kw-release::before { background: #6a4078; }
.kw-fascia::before  { background: #2c4f73; }
.kw-fat::before     { background: #4a8a72; }
.kw-nose::before    { background: #c45a7a; }
.kw-aging::before   { background: #5a8a5a; }

/* 보드 상단 활성 태그 배너 */
.tag-banner {
  margin: 0 0 24px;
}
.tag-banner-inner {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 20px;
  background: linear-gradient(90deg, #faf6f0 0%, #fff 100%);
  border: 1px solid var(--gray-100);
  border-radius: 8px;
}
.tag-banner-label {
  font-size: 14.3px; letter-spacing: 2px; font-weight: 700;
  color: var(--gray-700);
}
.tag-banner-name {
  font-size: 20.8px; font-weight: 800;
  color: var(--black); letter-spacing: -0.3px;
  display: inline-flex; align-items: center; gap: 8px;
}
.tag-banner-name::before {
  content: ''; width: 9px; height: 9px;
  border-radius: 50%; background: var(--accent);
}
.tag-banner-clear {
  margin-left: auto;
  padding: 8px 16px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  font-size: 15.6px; font-weight: 700;
  color: var(--gray-700);
  text-decoration: none;
  transition: all 0.2s;
}
.tag-banner-clear:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* 메인 페이지 - 키워드 클라우드 (예전 디자인 호환) */
.home-columns-tags {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center;
  margin-bottom: 36px;
  max-width: 920px;
  margin-left: auto; margin-right: auto;
}
.home-columns-tags .kw-chip {
  padding: 14px 22px;
  font-size: 19.5px;
}

/* 메인 페이지 - 키워드별 가로 스크롤 스트립 */
#home-columns-strips {
  margin: 0 auto 32px;
}
.col-strip {
  margin-bottom: 44px;
}
.col-strip:last-child { margin-bottom: 0; }
.col-strip-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  padding: 0 4px;
}
.col-strip-title {
  display: flex; align-items: baseline; gap: 12px;
}
.col-strip-title::before {
  content: ''; width: 9px; height: 9px;
  border-radius: 50%; background: var(--accent);
  align-self: center;
}
.col-strip-label {
  font-size: 26px; font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--black);
}
.col-strip-count {
  font-size: 15.6px; font-weight: 600;
  color: var(--gray-700);
  letter-spacing: 0.3px;
}
.col-strip-more {
  font-size: 16.9px; font-weight: 700;
  color: var(--gray-700);
  text-decoration: none;
  letter-spacing: 0.2px;
  white-space: nowrap;
  transition: color 0.2s;
}
.col-strip-more:hover { color: var(--accent); }
.col-strip-wrap {
  position: relative;
}
.col-strip-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 4px 14px;
  /* 스크롤바 숨기기 */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.col-strip-track::-webkit-scrollbar { display: none; }
.strip-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: all 0.25s;
}
.strip-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.strip-card-thumb {
  aspect-ratio: 16/10;
  background: var(--gray-50, #f5f5f3) center/cover no-repeat;
  border-bottom: 1px solid var(--gray-100);
}
.strip-card-thumb-empty {
  background: linear-gradient(135deg, #faf6f0 0%, #f0e6d8 100%);
  display: flex; align-items: center; justify-content: center;
}
.strip-card-thumb-empty span {
  font-size: 28.6px; font-weight: 800; letter-spacing: 4px;
  color: var(--accent); opacity: 0.4;
}
.strip-card-title {
  padding: 16px 18px 18px;
  font-size: 18.2px; font-weight: 700;
  letter-spacing: -0.2px;
  line-height: 1.55;
  color: var(--black);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 86px;
}
.col-strip-arrow {
  position: absolute;
  top: 50%;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  color: var(--black);
  font-size: 28.6px;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transition: all 0.2s;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.col-strip-arrow.prev { left: -16px; transform: translateY(-50%); }
.col-strip-arrow.next { right: -16px; transform: translateY(-50%); }
.col-strip-arrow:hover:not(:disabled) {
  background: var(--accent); color: #fff;
}
.col-strip-arrow:disabled {
  opacity: 0; pointer-events: none;
}

@media (max-width: 720px) {
  .col-strip { margin-bottom: 32px; }
  .col-strip-label { font-size: 22.1px; }
  .strip-card { flex: 0 0 230px; }
  .strip-card-title { font-size: 16.9px; min-height: 76px; }
  .col-strip-arrow { display: none; }   /* 모바일은 스와이프만 */
}

/* 메인 페이지 - 원장 칼럼 미리보기 */
.home-columns {
  padding: 80px 20px;
  background: #fafaf7;
}
.home-columns-inner { max-width: 1200px; margin: 0 auto; }
.home-columns-head {
  text-align: center; margin-bottom: 50px;
}
.home-columns-head .eyebrow {
  display: inline-block;
  font-size: 14.3px; letter-spacing: 3px; font-weight: 700;
  color: var(--accent); margin-bottom: 14px;
}
.home-columns-head h2 {
  font-size: 46.8px; font-weight: 800;
  letter-spacing: -1.5px; line-height: 1.3;
  color: var(--black); margin-bottom: 14px;
}
.home-columns-head p {
  font-size: 19.5px; color: var(--gray-700);
  line-height: 1.8;
}
.home-columns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 36px;
}
.home-columns-foot {
  text-align: center;
}
.home-columns-foot a {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 36px;
  background: var(--black);
  color: #fff;
  font-size: 18.2px; font-weight: 700; letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.2s;
}
.home-columns-foot a:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* ====== ARTICLE (개별 칼럼 페이지) ====== */
.article-h1 {
  font-size: 41.6px !important; font-weight: 800;
  letter-spacing: -1.2px; line-height: 1.35;
  margin-bottom: 14px;
  max-width: 800px; margin-left: auto; margin-right: auto;
}
.article-meta-hero {
  font-size: 18.2px !important;
  color: rgba(255,255,255,0.7) !important;
  letter-spacing: 0.3px;
}
.article-section {
  padding: 50px 20px 40px;
  background: #fff;
}
.article-inner {
  max-width: 820px; margin: 0 auto;
}
.article-tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--gray-50, #faf6f0);
  color: var(--accent-dark);
  font-size: 15.6px; font-weight: 700; letter-spacing: 0.5px;
  border-radius: 20px;
  margin-bottom: 30px;
}
.art-tag-rev { background: #fdeaee; color: #b94455; }
.art-tag-trim { background: #e9f0f8; color: #4a6f8a; }
.art-tag-mid { background: #f3eaf6; color: #6a4078; }
.art-tag-male { background: #e6ecf3; color: #2c4f73; }
.art-tag-method { background: #faf0d9; color: #8a6722; }
.art-tag-dynamic { background: #fbe9e0; color: #a0522d; }
.article-body {
  color: var(--gray-900);
  line-height: 1.95;
  font-size: 21.4px;
  letter-spacing: -0.2px;
  text-align: center;          /* 본문 모두 가운데 정렬 */
}
.art-p {
  margin: 0 0 20px;
  word-break: keep-all;
  text-align: center;
}
.art-h3 {
  font-size: 28.6px; font-weight: 800;
  letter-spacing: -0.5px;
  margin: 36px auto 16px;
  color: var(--black);
  padding-bottom: 10px;
  text-align: center;
  position: relative;
  border-bottom: none;
}
.art-h3::after {
  content: ''; display: block;
  width: 60px; height: 2px;
  background: var(--accent);
  margin: 12px auto 0;
}
/* 네이버 SE 의 quotation 은 사실상 본문 중 소제목 — 가운데 정렬 강조 박스 */
.art-quote {
  margin: 32px auto 20px;
  padding: 16px 22px;
  background: linear-gradient(180deg, #faf6f0 0%, #fff 100%);
  border-top: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  font-size: 23.4px;
  font-weight: 700;
  letter-spacing: -0.4px;
  color: var(--black);
  line-height: 1.55;
  text-align: center;
  max-width: 600px;
}
/* 사진: 네이버 원본의 폭·비율 그대로 (자연 폭 < 본문 폭이면 그 폭으로, 아니면 본문 폭에 맞춤) */
.art-fig {
  margin: 24px auto;
  text-align: center;
  display: block;
}
.art-fig img {
  display: block;
  width: 100%;
  height: auto;            /* width 와 height 속성으로 브라우저가 비율 계산 */
  max-width: 100%;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
/* 동영상: 자체 호스팅 mp4 를 HTML5 video 로 인라인 재생 (네이티브 컨트롤) */
.art-video-fig {
  margin: 24px auto;
  text-align: center;
  display: block;
}
.art-video-mp4 {
  display: block;
  width: 100%; height: auto;
  border-radius: 6px;
  background: #000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.art-video-cap-static {
  display: block;
  margin-top: 10px;
  font-size: 16.9px; font-weight: 500;
  color: var(--gray-700);
  letter-spacing: -0.2px;
}
/* fallback: 다운 실패한 영상의 외부 링크 카드 */
.art-video-link {
  position: relative;
  display: block;
  margin: 24px auto;
  width: 100%;
  background: #000;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  text-decoration: none;
  color: inherit;
}
.art-video-link img { width: 100%; height: auto; display: block; opacity: 0.85; }
.art-video-link:hover img { opacity: 1; }

/* (사용 안 함) iframe 인라인 재생 잔존 스타일 — 호환성 위해 유지 */
.art-video {
  position: relative;
  display: block;
  margin: 24px auto;
  width: 100%;
  background: #000;
  cursor: pointer;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  text-decoration: none;
  color: inherit;
  border: 0;
  padding: 0;
}
.art-video.playing {
  /* 재생 시: 본문 가로 폭에 맞추어 더 큰 영역으로 확장 */
  aspect-ratio: auto !important;
  max-width: 820px !important;
  height: 600px;
  background: #fafaf7;
}
.art-video-iframe {
  width: 100%; height: 100%;
  border: 0; display: block;
  background: #fff;
}
.art-video-close {
  position: absolute;
  top: 8px; right: 8px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 0;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 28.6px;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
}
.art-video-close:hover { background: var(--accent); }
.art-video-thumb {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
}
.art-video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 70px; height: 70px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  color: #fff; font-size: 31.2px;
  transition: all 0.2s;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.art-video:hover .art-video-play {
  background: var(--accent);
  transform: translate(-50%, -50%) scale(1.1);
}
.art-video.playing .art-video-thumb,
.art-video.playing .art-video-play,
.art-video.playing .art-video-cap { display: none; }
.art-video-cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 16px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.78) 100%);
  color: #fff;
  font-size: 16.9px; font-weight: 600;
  letter-spacing: -0.2px;
  text-align: center;
  pointer-events: none;
}
.art-video-cap em {
  display: block; margin-top: 4px;
  font-style: normal;
  font-size: 14.3px; font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.3px;
}
.article-source {
  margin-top: 50px;
  padding: 24px 28px;
  background: #fafaf7;
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  text-align: center;
}
.article-source p {
  font-size: 16.9px; color: var(--gray-700);
  margin-bottom: 10px;
  line-height: 1.7;
}
.article-source a {
  display: inline-block;
  padding: 10px 22px;
  background: var(--black);
  color: #fff;
  font-size: 16.9px; font-weight: 700; letter-spacing: 0.3px;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s;
}
.article-source a:hover { background: var(--accent); }

.article-related {
  padding: 60px 20px 90px;
  background: #fafaf7;
}
.related-head {
  text-align: center; margin-bottom: 36px;
}
.related-head .eyebrow {
  font-size: 14.3px; letter-spacing: 3px; font-weight: 700;
  color: var(--accent);
  display: inline-block; margin-bottom: 12px;
}
.related-head h2 {
  font-size: 33.8px; font-weight: 800;
  letter-spacing: -0.8px;
  color: var(--black);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 36px;
}
.rel-card {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s;
  overflow: hidden;
  min-height: 320px;
}
.rel-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.rel-card-thumb {
  aspect-ratio: 16/10;
  background: var(--gray-50, #f5f5f3) center/cover no-repeat;
  position: relative;
  border-bottom: 1px solid var(--gray-100);
  overflow: hidden;
}
.rel-card-thumb::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(0,0,0,0.05) 100%);
  pointer-events: none;
}
.rel-card-thumb-empty {
  background: linear-gradient(135deg, #faf6f0 0%, #f0e6d8 100%);
  display: flex; align-items: center; justify-content: center;
}
.rel-card-thumb-empty span {
  font-size: 33.8px; font-weight: 800; letter-spacing: 4px;
  color: var(--accent); opacity: 0.4;
}
.rel-card-body {
  padding: 22px 24px 24px;
  display: flex; flex-direction: column;
  flex: 1;
}
.rel-date {
  font-size: 15.6px; color: var(--gray-700);
  font-weight: 600; letter-spacing: 0.3px;
  margin-bottom: 10px;
}
.rel-title {
  font-size: 20.8px; font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1.5;
  color: var(--black);
  margin: 0 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.rel-more {
  font-size: 15.6px; font-weight: 700;
  color: var(--accent); letter-spacing: 0.3px;
  margin-top: auto;
}
.related-foot {
  text-align: center;
}

@media (max-width: 1024px) {
  .columns-grid, .home-columns-grid { grid-template-columns: repeat(2, 1fr); }
  .columns-head { grid-template-columns: 1fr; }
  .columns-source { align-self: flex-start; min-width: 0; width: 100%; flex-direction: row; align-items: center; gap: 12px; text-align: left; }
  .columns-source-label { margin-bottom: 0; }
  .columns-source-arrow { margin-left: auto; }
  .related-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .columns-section { padding: 40px 14px 60px; }
  .columns-grid, .home-columns-grid { grid-template-columns: 1fr; gap: 16px; }
  .columns-head h2 { font-size: 28.6px; }
  .columns-head p { font-size: 18.2px; }
  .columns-toolbar { flex-direction: column; align-items: stretch; gap: 10px; }
  .columns-search { max-width: none; }
  .home-columns { padding: 50px 16px; }
  .home-columns-head h2 { font-size: 33.8px; }
  .col-card { min-height: 0; }
  .col-card-body { padding: 16px 18px 14px; }
  .col-title { font-size: 19.5px; min-height: 0; margin-bottom: 8px; }
  .col-excerpt { font-size: 16.9px; -webkit-line-clamp: 2; margin-bottom: 12px; }
  .col-card-foot { padding-top: 10px; font-size: 14.3px; }
  .col-best-section { margin-bottom: 36px; }
  .col-best-head { gap: 10px; margin-bottom: 16px; padding-bottom: 10px; }
  .col-best-eyebrow { font-size: 14.3px; letter-spacing: 3px; }
  .col-best-title { font-size: 23.4px; }
  .col-best-grid .col-card-thumb::after {
    top: 8px; left: 8px;
    font-size: 13px; padding: 4px 8px;
    letter-spacing: 1px;
  }
  .col-latest-head { margin-bottom: 14px; padding-bottom: 10px; }
  .col-latest-title { font-size: 23.4px; }
  .columns-pager { margin-top: 28px; }
  .page-btn { min-width: 36px; height: 36px; padding: 0 10px; font-size: 16.9px; }
  .page-nav { font-size: 20.8px; }
  .columns-pagination { gap: 4px; }
  .article-h1 { font-size: 28.6px !important; }
  .article-section { padding: 30px 16px 30px; }
  .article-body { font-size: 19.5px; line-height: 1.85; }
  .art-h3 { font-size: 23.4px; }
  .related-grid { grid-template-columns: 1fr; gap: 16px; }
  .rel-card { min-height: 0; }
  .rel-card-thumb { aspect-ratio: 16/9; }
  /* floating 버튼: 좌측은 숨김, 우측은 핵심 CTA만 */
  .float-side-left { display: none; }
  .float-side .float-btn { display: none; }
  .float-side .float-btn.kakao,
  .float-side .float-btn.tel,
  .float-side .float-top { display: flex; }
  .float-side .float-btn { width: 52px; font-size: 13px; padding: 9px 4px; }
}

/* ====== 모바일 드로어 메뉴 ====== */
.m-drawer {
  position: fixed; inset: 0;
  z-index: 1000;
}
.m-drawer-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.28s;
}
.m-drawer.is-open .m-drawer-overlay { opacity: 1; }
.m-drawer-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(320px, 86vw);
  background: #fff;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  box-shadow: -4px 0 24px rgba(0,0,0,0.18);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.m-drawer.is-open .m-drawer-panel { transform: translateX(0); }
.m-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--gray-100);
  position: sticky; top: 0; background: #fff; z-index: 1;
}
.m-drawer-brand {
  font-size: 19.5px; font-weight: 700;
  color: var(--accent-dark);
  letter-spacing: -0.3px;
}
.m-drawer-close {
  width: 36px; height: 36px;
  border: none; background: none;
  font-size: 28.6px; color: var(--black);
  cursor: pointer; line-height: 1;
  border-radius: 50%;
  transition: background 0.15s;
}
.m-drawer-close:hover { background: var(--gray-100); }
.m-nav { padding: 4px 0; }
.m-nav-item { border-bottom: 1px solid var(--gray-100); }
.m-nav-item:last-child { border-bottom: none; }
.m-nav-link, .m-nav-parent {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  padding: 16px 20px;
  font-size: 19.5px; font-weight: 600;
  color: var(--black);
  background: none; border: none; text-align: left;
  cursor: pointer; font-family: inherit;
  text-decoration: none;
  line-height: 1.3;
}
.m-nav-link:hover, .m-nav-parent:hover { color: var(--accent); }
.m-nav-caret {
  font-size: 14.3px; color: var(--gray-500);
  transition: transform 0.2s;
  margin-left: 12px;
}
.m-nav-parent[aria-expanded="true"] { color: var(--accent); }
.m-nav-parent[aria-expanded="true"] .m-nav-caret { transform: rotate(180deg); }
.m-nav-sub {
  list-style: none; padding: 6px 0 12px;
  margin: 0;
  background: var(--gray-50);
}
.m-nav-sub li { margin: 0; }
.m-nav-sub li a {
  display: block;
  padding: 11px 20px 11px 32px;
  font-size: 18.2px;
  color: var(--gray-700);
  text-decoration: none;
  line-height: 1.35;
}
.m-nav-sub li a:hover { color: var(--accent); background: #fff; }
.m-drawer-foot {
  margin-top: auto;
  padding: 18px 20px;
  border-top: 1px solid var(--gray-100);
  background: var(--gray-50);
}
.m-drawer-lang {
  display: flex; justify-content: center;
  margin-bottom: 14px;
}
.m-drawer-lang .lang-switch {
  display: flex; gap: 8px;
}
.m-drawer-lang .lang-switch a {
  width: 34px; height: 34px;
  font-size: 23.4px;
}
.m-drawer-tel {
  display: flex; align-items: center; justify-content: center;
  gap: 6px;
  padding: 13px;
  background: var(--accent);
  color: #fff;
  border-radius: 6px;
  font-weight: 700;
  font-size: 19.5px;
  text-decoration: none;
  letter-spacing: 0.3px;
}
.m-drawer-tel:hover { background: var(--accent-dark); color: #fff; }
body.m-drawer-open { overflow: hidden; }

@media (min-width: 721px) {
  .m-drawer { display: none !important; }
}

/* ====== EYE PROCEDURE PAGE — MEDIA SLOTS & PPT-CONTENT BLOCKS ====== */

/* 미디어 슬롯 (움짤/이미지 placeholder) */
.media-slot {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, #faf6f0 0%, #f4ece0 100%);
  border: 1px dashed var(--accent);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  color: var(--accent-dark);
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.media-slot::before {
  content: '';
  position: absolute; inset: 12px;
  border: 1px solid rgba(159, 128, 80, 0.2);
  border-radius: 4px;
  pointer-events: none;
}
/* 실제 이미지·영상이 들어간 슬롯은 플레이스홀더 테두리/배경 제거 */
.media-slot:has(img)::before,
.media-slot:has(iframe)::before,
.media-slot:has(picture)::before { content: none; }
.media-slot:has(img),
.media-slot:has(iframe),
.media-slot:has(picture) { border: 0; background: none; }
.media-slot .media-icon {
  font-size: 39px; margin-bottom: 8px;
  opacity: 0.55;
}
.media-slot .media-label {
  font-size: 15.6px; letter-spacing: 2px;
  font-weight: 700; opacity: 0.65;
  text-transform: uppercase;
}
.media-slot .media-cap {
  font-size: 16.9px; color: var(--gray-700);
  margin-top: 6px; font-weight: 500;
}
.media-slot img,
.media-slot video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.media-slot.square { aspect-ratio: 1 / 1; }
.media-slot.tall { aspect-ratio: 3 / 4; }
.media-slot.wide { aspect-ratio: 21 / 9; }

/* 미디어 슬롯 그리드 (2~4열 자동) */
.media-slot-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; gap: 18px;
  grid-template-columns: repeat(var(--cols, 2), 1fr);
}
.media-slot-grid.cols-2 { --cols: 2; }
.media-slot-grid.cols-3 { --cols: 3; }
.media-slot-grid.cols-4 { --cols: 4; }
@media (max-width: 1024px) {
  .media-slot-grid.cols-3,
  .media-slot-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .media-slot-grid { grid-template-columns: 1fr; }
}

/* 캡션 카드 (제목+설명+미디어슬롯) */
.media-card {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.media-card .media-slot { border-radius: 0; border: 0; }
.media-card-body {
  padding: 22px 24px;
  border-top: 1px solid var(--gray-100);
}
.media-card-body h4 {
  font-size: 22.1px; font-weight: 800;
  margin-bottom: 8px; letter-spacing: -0.3px;
}
.media-card-body p {
  font-size: 18.2px; color: var(--gray-700);
  line-height: 1.7;
}
.media-card-eyebrow {
  font-size: 14.3px; letter-spacing: 2px; font-weight: 700;
  color: var(--accent-dark); margin-bottom: 8px;
}

/* 시술 정보 스펙 그리드 (수술시간, 마취, 회복 등) */
.spec-grid {
  max-width: 1080px; margin: 36px auto 0;
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 0;
  border: 1px solid var(--gray-100);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}
.spec-cell {
  padding: 22px 14px;
  text-align: center;
  border-right: 1px solid var(--gray-100);
}
.spec-cell:last-child { border-right: 0; }
.spec-cell .spec-label {
  font-size: 15.6px; color: var(--accent-dark);
  letter-spacing: 1.5px; font-weight: 700;
  margin-bottom: 8px;
}
.spec-cell .spec-val {
  font-size: 19.5px; color: var(--black);
  font-weight: 700; letter-spacing: -0.3px;
}
@media (max-width: 1024px) {
  .spec-grid { grid-template-columns: repeat(3, 1fr); }
  .spec-cell:nth-child(3) { border-right: 0; }
  .spec-cell:nth-child(-n+3) { border-bottom: 1px solid var(--gray-100); }
}
@media (max-width: 540px) {
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .spec-cell { border-right: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); }
  .spec-cell:nth-child(2n) { border-right: 0; }
  .spec-cell:nth-last-child(-n+2) { border-bottom: 0; }
}

/* 정의 박스 (이란? — 시술 개요) */
.def-block {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px;
  align-items: start;
}
.def-block-text h3 {
  font-size: 31.2px; font-weight: 800; letter-spacing: -0.5px;
  margin-bottom: 18px; line-height: 1.4;
}
.def-block-text p {
  font-size: 19.5px; color: var(--gray-700);
  line-height: 1.95; margin-bottom: 14px;
}
.def-block-text p strong { color: var(--accent-dark); font-weight: 700; }
.def-block .media-slot { aspect-ratio: 4 / 3; }
@media (max-width: 720px) {
  .def-block { grid-template-columns: 1fr; gap: 30px; }
}

/* 자가진단·체크박스 */
.check-block {
  max-width: 1080px; margin: 0 auto;
  background: linear-gradient(180deg, #faf6f0 0%, #fff 100%);
  border: 1px solid var(--gray-100);
  border-radius: 10px;
  padding: 40px 36px;
}
.check-block h3 {
  text-align: center;
  font-size: 28.6px; font-weight: 800; letter-spacing: -0.5px;
  margin-bottom: 30px;
}
.check-block h3 em {
  font-style: normal; color: var(--accent-dark);
}
.check-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
  margin-bottom: 24px;
}
.check-card {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
}
.check-card.bad { border-color: rgba(185, 68, 85, 0.25); }
.check-card.good { border-color: rgba(159, 128, 80, 0.4); }
.check-card .check-media { margin-bottom: 16px; }
.check-card .check-tag {
  display: inline-block;
  font-size: 14.3px; letter-spacing: 1px; font-weight: 700;
  padding: 4px 10px; border-radius: 20px;
  margin-bottom: 8px;
}
.check-card.bad .check-tag { background: #fdeaee; color: #b94455; }
.check-card.good .check-tag { background: #f0e6d2; color: var(--accent-dark); }
.check-card h5 { font-size: 20.8px; font-weight: 800; margin-bottom: 6px; }
.check-card p { font-size: 16.9px; color: var(--gray-700); line-height: 1.6; }
.check-block-foot {
  font-size: 16.9px; color: var(--gray-700); line-height: 1.85;
  text-align: center; padding-top: 18px;
  border-top: 1px dashed var(--gray-300);
}
@media (max-width: 720px) {
  .check-block { padding: 28px 20px; }
  .check-row { grid-template-columns: 1fr; gap: 16px; }
}

/* 추천 대상 카드 (01~05) */
.target-num-list {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px;
}
.target-num-item {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  padding: 26px 18px 22px;
  text-align: center;
  transition: all 0.2s;
}
.target-num-item:hover { border-color: var(--accent); transform: translateY(-3px); }
.target-num-item .num {
  display: inline-block;
  font-size: 16.5px; letter-spacing: 1.5px; font-weight: 800;
  color: var(--accent-dark);
  padding-bottom: 8px; margin-bottom: 12px;
  border-bottom: 1px solid var(--accent);
}
.target-num-item p {
  font-size: 17.5px; line-height: 1.6;
  color: var(--gray-900); font-weight: 500;
}
/* 추천 대상 섹션 — 갈색 그라데이션 배경 (네모칸은 기존 유지) */
section:has(.target-num-list) {
  background: linear-gradient(165deg, #67513f 0%, #46352a 100%) !important;
}
section:has(.target-num-list) .sec-eyebrow { color: rgba(255, 255, 255, 0.6); }
section:has(.target-num-list) .sec-head h2 { color: #fff; }
section:has(.target-num-list) .sec-head p { color: rgba(255, 255, 255, 0.82); }
/* 데스크톱: 항목이 정확히 4개면 4열(5열 그리드에 빈칸 방지) */
.target-num-list:has(> .target-num-item:nth-child(4):last-child) { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) {
  /* 4개는 2/2, 나머지(5·6…)는 3열 유지 → 5개는 3/2. 모바일까지 동일 적용 */
  .target-num-list { grid-template-columns: repeat(3, 1fr); }
  .target-num-list:has(> .target-num-item:nth-child(4):last-child) { grid-template-columns: repeat(2, 1fr); }
}

/* 시술 방법 블록 (절개 vs 비절개 / 상안검 vs 하안검 등) */
.method-block {
  max-width: 1180px; margin: 0 auto 40px;
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: 10px;
  overflow: hidden;
}
.method-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 30px;
  background: linear-gradient(90deg, #faf6f0, #fff);
  border-bottom: 1px solid var(--gray-100);
  gap: 20px;
}
.method-head-l { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.method-head h3 {
  font-size: 28.6px; font-weight: 800; letter-spacing: -0.5px;
}
.method-head .method-tag {
  font-size: 14.3px; letter-spacing: 1.5px; font-weight: 700;
  color: var(--accent-dark); background: #f0e6d2;
  padding: 4px 10px; border-radius: 20px;
}
.method-head p {
  font-size: 18.2px; color: var(--gray-700); line-height: 1.6;
}
.method-body {
  padding: 30px;
}
.method-desc {
  font-size: 19.5px; color: var(--gray-700);
  line-height: 1.95; margin-bottom: 24px;
}
.method-desc strong { color: var(--accent-dark); font-weight: 700; }

/* 가로 스텝 카드 (STEP 01~05) */
.step-cards {
  display: grid; gap: 14px;
  grid-template-columns: repeat(var(--steps, 5), 1fr);
}
.step-card {
  background: #faf6f0;
  border-radius: 8px;
  padding: 18px 14px 16px;
  text-align: center;
  display: flex; flex-direction: column; gap: 10px;
  position: relative;
}
.step-card .step-tag {
  font-size: 13px; letter-spacing: 2px; font-weight: 800;
  color: var(--accent-dark);
}
.step-card .media-slot {
  aspect-ratio: 1 / 1;
  border-color: rgba(159, 128, 80, 0.3);
  background: #fff;
}
.step-card .step-text {
  font-size: 16.9px; color: var(--gray-900);
  line-height: 1.5; font-weight: 500;
  margin-top: auto;
}
@media (max-width: 1024px) {
  /* 4개는 2/2, 나머지(3·5·6…)는 3열 유지 → 5개는 3/2. 모바일까지 동일 적용 */
  .step-cards { grid-template-columns: repeat(3, 1fr); }
  .step-cards:has(> .step-card:nth-child(4):last-child) { grid-template-columns: repeat(2, 1fr); }
}

/* 강조 콜아웃 (부작용 NO! / 학회발표 등) */
.fact-callout {
  max-width: 1080px; margin: 0 auto;
  background: #fff;
  border: 1px solid var(--accent);
  border-radius: 10px;
  padding: 36px 40px;
  text-align: center;
  position: relative;
}
.fact-callout-eyebrow {
  font-size: 14.3px; letter-spacing: 2.5px; font-weight: 800;
  color: var(--accent-dark); margin-bottom: 14px;
}
.fact-callout h3 {
  font-size: 33.8px; font-weight: 800; letter-spacing: -0.5px;
  line-height: 1.4; margin-bottom: 16px;
}
.fact-callout h3 em {
  font-style: normal; color: var(--accent-dark);
}
.fact-callout p {
  font-size: 19.5px; color: var(--gray-700); line-height: 1.85;
  max-width: 760px; margin: 0 auto;
}
.fact-callout .qa-row {
  display: flex; flex-wrap: wrap; gap: 14px;
  justify-content: center; margin: 22px 0 6px;
}
.fact-callout .qa-row .q {
  font-size: 18.2px; font-weight: 700;
  background: var(--gray-50);
  padding: 10px 16px; border-radius: 30px;
  color: var(--gray-900);
}
.fact-callout .qa-row .q em {
  font-style: normal; color: #b94455; margin-left: 6px; font-weight: 800;
}
.fact-callout-foot {
  margin-top: 28px; padding-top: 22px;
  border-top: 1px dashed var(--gray-300);
  display: grid; grid-template-columns: 1fr 1fr; gap: 30px;
  text-align: left;
}
.fact-callout-foot .fcf-item h5 {
  font-size: 19.5px; font-weight: 800; margin-bottom: 6px;
  color: var(--accent-dark);
}
.fact-callout-foot .fcf-item p {
  font-size: 16.9px; color: var(--gray-700); line-height: 1.7;
}
@media (max-width: 720px) {
  .fact-callout { padding: 26px 22px; }
  .fact-callout h3 { font-size: 26px; }
  .fact-callout-foot { grid-template-columns: 1fr; gap: 18px; }
}

/* SCI 논문 / 감사장 증빙 표시 */
.sci-proof {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
  max-width: 720px; margin: 28px auto 4px;
  align-items: end;
}
.sci-proof figure {
  margin: 0; text-align: center;
}
.sci-proof img {
  width: 100%; max-width: 280px; height: auto;
  display: block; margin: 0 auto;
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(28, 36, 56, 0.12);
}
.sci-proof-placeholder {
  width: 100%; max-width: 280px;
  aspect-ratio: 3 / 4;
  display: block; margin: 0 auto;
  border: 2px dashed var(--gray-300);
  border-radius: 6px;
  background: #fafafa;
  box-shadow: 0 6px 20px rgba(28, 36, 56, 0.06);
}
.sci-proof figcaption {
  margin-top: 14px;
  font-size: 16.2px; line-height: 1.55;
  color: var(--gray-700); letter-spacing: -0.2px;
}
@media (max-width: 720px) {
  .sci-proof { grid-template-columns: 1fr; gap: 22px; max-width: 320px; }
}

/* 눈밑성형 유형별 (전후 사진 위 + 설명 아래) — 케이스별 분리 카드 */
.under-types-stack {
  display: grid; grid-template-columns: 1fr; gap: 56px;
  margin-top: 28px; max-width: 880px; margin-left: auto; margin-right: auto;
}
.under-type-row {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 6px 24px rgba(28, 36, 56, 0.06);
}
.under-type-photos {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  margin-bottom: 24px;
}
.under-type-photo {
  position: relative; margin: 0;
  border-radius: 10px; overflow: hidden;
  background: #f5f5f5;
}
.under-type-photo img {
  display: block; width: 100%; height: auto;
}
.under-type-info {
  padding-top: 22px;
  border-top: 1px dashed var(--gray-300);
  text-align: center;
}
.under-type-info .media-card-eyebrow {
  display: inline-block; margin-bottom: 6px;
}
.under-type-info h4 {
  font-size: 26px; font-weight: 800; letter-spacing: -0.4px;
  margin: 4px 0 10px;
}
.under-type-info > p {
  font-size: 18.9px; color: var(--gray-700); line-height: 1.7;
  margin-bottom: 8px;
}
.under-type-info .dr-emphasis {
  margin-top: 18px !important;
  text-align: left;
}
.under-type-vs {
  display: flex; align-items: center; justify-content: center;
  margin: -22px 0; position: relative; z-index: 2;
}
.under-type-vs::before,
.under-type-vs::after {
  content: ''; flex: 1;
  height: 1px; background: var(--gray-300);
  max-width: 120px;
}
.under-type-vs span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  margin: 0 18px;
  border-radius: 50%;
  background: var(--accent); color: #fff;
  font-size: 18.2px; font-weight: 800; letter-spacing: 2px;
  box-shadow: 0 6px 18px rgba(28, 36, 56, 0.18);
}
@media (max-width: 720px) {
  .under-types-stack { gap: 40px; }
  .under-type-row { padding: 18px; }
  .under-type-photos { gap: 8px; }
  .under-type-info h4 { font-size: 23.4px; }
  .under-type-vs span { width: 46px; height: 46px; font-size: 15.6px; }
  .under-type-vs::before, .under-type-vs::after { max-width: 60px; }
}

/* 결과 효과 리스트 (수술 효과 4가지) */
.result-effects {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 50px;
  align-items: center;
}
.result-effects-list { list-style: none; padding: 0; margin: 0; }
.result-effects-list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 20.8px; color: var(--gray-900); font-weight: 500;
  padding: 18px 0;
  border-bottom: 1px solid var(--gray-100);
  letter-spacing: -0.3px;
}
.result-effects-list li:last-child { border-bottom: 0; }
.result-effects-list li::before {
  content: '✓'; flex-shrink: 0;
  width: 30px; height: 30px;
  background: var(--accent); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18.2px;
}
.result-effects .media-slot { aspect-ratio: 1 / 1; }
@media (max-width: 720px) {
  .result-effects { grid-template-columns: 1fr; gap: 30px; }
}

/* 학회·논문 강조 박스 */
.credibility-row {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
}
.credibility-card {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  padding: 28px 26px;
  display: flex; gap: 20px; align-items: flex-start;
}
.credibility-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 28.6px; font-weight: 800;
  font-family: Georgia, serif;
}
.credibility-card h5 {
  font-size: 19.5px; font-weight: 800; margin-bottom: 6px;
  letter-spacing: -0.3px;
}
.credibility-card p {
  font-size: 16.9px; color: var(--gray-700); line-height: 1.65;
}
@media (max-width: 720px) {
  .credibility-row { grid-template-columns: 1fr; }
}

/* 사진 포함 학회 카드 변형 */
.credibility-row--photo { gap: 22px; }
.credibility-card--photo {
  margin: 0;
  display: block;
  padding: 0;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.credibility-card--photo:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px -14px rgba(159, 128, 80, 0.25);
}
.credibility-card--photo img {
  width: 100%; aspect-ratio: 590/216; object-fit: cover;
  display: block; background: #f6ecd6;
  border-bottom: 1px solid rgba(198, 165, 114, 0.3);
}
.credibility-card--photo figcaption {
  padding: 20px 22px 22px;
}
.credibility-card--photo .cc-year {
  display: inline-block;
  font-size: 13.7px; letter-spacing: 1.8px; font-weight: 800;
  color: var(--accent-dark); background: #fdf3e0;
  padding: 3px 10px; border-radius: 3px; margin-bottom: 10px;
}
.credibility-card--photo h5 {
  font-size: 20.8px; font-weight: 800; letter-spacing: -0.3px;
  color: var(--gray-900); margin-bottom: 6px;
}
.credibility-card--photo p {
  font-size: 16.9px; color: var(--gray-700); line-height: 1.7;
}
.credibility-card--photo p em {
  font-style: italic; color: var(--accent-dark);
}

/* 의료진 강조 라인 (풍부한 경험과 노하우...) */
.dr-emphasis {
  max-width: 1080px; margin: 36px auto 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.dr-emphasis-item {
  background: var(--black); color: #fff;
  padding: 22px 26px;
  border-radius: 6px;
  display: flex; align-items: center; gap: 16px;
}
.dr-emphasis-item .dei-num {
  font-size: 15.6px; letter-spacing: 2px;
  color: var(--accent); font-weight: 800;
  border-right: 1px solid rgba(255,255,255,0.2);
  padding-right: 16px;
}
.dr-emphasis-item p {
  font-size: 18.2px; line-height: 1.55;
  color: #fff; font-weight: 500;
}
@media (max-width: 720px) {
  .dr-emphasis { grid-template-columns: 1fr; }
}

/* ====== 트임 수술 주의사항 박스 ====== */
.trim-warning {
  max-width: 1080px;
  margin: 50px auto 60px;
  padding: 40px 44px 42px;
  background: linear-gradient(135deg, #fbf6ec 0%, #f6ecd6 100%);
  border: 2px solid var(--accent);
  border-radius: 14px;
  position: relative;
  box-shadow: 0 12px 40px -16px rgba(159, 128, 80, 0.25);
}
.trim-warning::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px;
  height: 6px;
  background: linear-gradient(90deg, var(--accent-dark) 0%, var(--accent) 50%, var(--accent-dark) 100%);
  border-radius: 14px 14px 0 0;
}
.trim-warning-head {
  text-align: center; margin-bottom: 32px;
}
.trim-warning-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14.3px; letter-spacing: 3px; font-weight: 800;
  color: #fff; background: var(--accent-dark);
  padding: 7px 16px; border-radius: 30px;
  margin-bottom: 18px;
}
.trim-warning-eyebrow::before {
  content: '!'; display: inline-flex; align-items: center; justify-content: center;
  width: 16px; height: 16px; border: 1.5px solid #fff;
  border-radius: 50%; font-size: 13px; font-weight: 900;
}
.trim-warning-head h3 {
  font-size: 36.4px; font-weight: 800; letter-spacing: -0.6px; line-height: 1.35;
  color: var(--gray-900);
}
.trim-warning-head h3 em {
  font-style: normal; color: var(--accent-dark);
}
.trim-warning-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px;
}
.trim-warning-item {
  background: #fff;
  border: 1px solid rgba(198, 165, 114, 0.35);
  border-radius: 10px;
  padding: 28px 26px 26px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.trim-warning-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px -14px rgba(159, 128, 80, 0.22);
}
.trim-warning-tag {
  display: inline-block;
  font-size: 14.3px; letter-spacing: 2px; font-weight: 800;
  color: var(--accent-dark); background: #fdf3e0;
  padding: 5px 12px; border-radius: 4px; margin-bottom: 14px;
}
.trim-warning-item h4 {
  font-size: 23.4px; font-weight: 800; line-height: 1.45;
  color: var(--gray-900); margin-bottom: 14px;
  padding-bottom: 14px; border-bottom: 1px dashed rgba(198, 165, 114, 0.45);
}
.trim-warning-item p {
  font-size: 18.9px; color: var(--gray-700); line-height: 1.85;
}
.trim-warning-item p strong {
  color: var(--accent-dark); font-weight: 700;
}
@media (max-width: 720px) {
  .trim-warning { padding: 30px 22px; margin: 34px auto 40px; border-radius: 10px; }
  .trim-warning-head { margin-bottom: 22px; }
  .trim-warning-head h3 { font-size: 27.3px; }
  .trim-warning-grid { grid-template-columns: 1fr; gap: 14px; }
  .trim-warning-item { padding: 22px 20px; }
  .trim-warning-item h4 { font-size: 20.8px; }
  .trim-warning-item p { font-size: 18.2px; }
}

/* ====== 앞트임 학회 자료 스트립 (인라인) ====== */
.lecture-strip {
  margin-top: 36px;
  padding: 28px 30px 30px;
  background: linear-gradient(135deg, #fbf6ec 0%, #f6ecd6 100%);
  border: 1px solid rgba(198, 165, 114, 0.45);
  border-radius: 10px;
}
.lecture-strip-head { text-align: center; margin-bottom: 22px; }
.lecture-strip-eyebrow {
  display: inline-block;
  font-size: 14.3px; letter-spacing: 2.5px; font-weight: 800;
  color: var(--accent-dark); background: #fff;
  padding: 5px 12px; border-radius: 30px;
  border: 1px solid rgba(198, 165, 114, 0.5);
  margin-bottom: 12px;
}
.lecture-strip-head h4 {
  font-size: 24.7px; font-weight: 800; letter-spacing: -0.4px;
  color: var(--gray-900); margin-bottom: 8px;
}
.lecture-strip-head p {
  font-size: 17.6px; color: var(--gray-700); line-height: 1.7;
  max-width: 720px; margin: 0 auto;
}
.lecture-strip-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.lecture-card {
  margin: 0;
  background: #fff;
  border: 1px solid rgba(198, 165, 114, 0.3);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.lecture-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px -14px rgba(159, 128, 80, 0.25);
}
.lecture-card img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block;
  background: #faf3e7;
}
.lecture-card figcaption {
  padding: 14px 16px 16px;
}
.lecture-card .lc-year {
  display: inline-block; font-size: 13.7px; letter-spacing: 1.5px;
  font-weight: 800; color: var(--accent-dark);
  background: #fdf3e0; padding: 3px 9px; border-radius: 3px;
  margin-bottom: 8px;
}
.lecture-card figcaption strong {
  display: block; font-size: 18.2px; font-weight: 800;
  color: var(--gray-900); line-height: 1.4; margin-bottom: 4px;
}
.lecture-card figcaption em {
  display: block; font-style: normal; font-size: 16.2px;
  color: var(--gray-700); line-height: 1.55;
}
@media (max-width: 880px) {
  .lecture-strip-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .lecture-strip { padding: 22px 18px; }
  .lecture-strip-head h4 { font-size: 22.1px; }
  .lecture-strip-grid { grid-template-columns: 1fr; gap: 12px; }
}

/* ====== 앞트임 케이스 GIF 스트립 (인라인) ====== */
.case-strip {
  margin-top: 24px;
  padding: 24px 26px 26px;
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: 10px;
}
.case-strip-head { text-align: center; margin-bottom: 18px; }
.case-strip-eyebrow {
  display: inline-block;
  font-size: 14.3px; letter-spacing: 2.5px; font-weight: 800;
  color: var(--accent-dark); background: #fdf3e0;
  padding: 5px 12px; border-radius: 30px;
  margin-bottom: 10px;
}
.case-strip-head h4 {
  font-size: 23.4px; font-weight: 800; letter-spacing: -0.4px;
  color: var(--gray-900); margin-bottom: 6px;
}
.case-strip-head p {
  font-size: 16.9px; color: var(--gray-700); line-height: 1.7;
  max-width: 720px; margin: 0 auto;
}
@media (max-width: 560px) {
  .case-strip { padding: 20px 16px; }
  .case-strip-head h4 { font-size: 20.8px; }
}

/* ====== ACADEMIC PHOTOS 캐러셀 (학술활동) ====== */
#academic {
  padding-bottom: 60px;
  background: linear-gradient(135deg, #f4ead4 0%, #ead9b6 100%);
  position: relative;
}
#academic::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 12% 20%, rgba(159,128,80,0.07), transparent 35%),
    radial-gradient(circle at 88% 80%, rgba(90,74,58,0.08), transparent 40%);
  pointer-events: none;
}
#academic > * { position: relative; z-index: 1; }
#academic .sec-eyebrow { color: var(--accent-dark); }
#academic .sec-head h2 { color: #4a3a26; }
#academic .sec-head p { color: #6b5a3f; }
#academic .conf-slide {
  border-color: rgba(159,128,80,0.18);
  background: #fff;
}
#academic .conf-arrow {
  background: #fff;
  border-color: rgba(159,128,80,0.25);
}
#academic .conf-counter { color: #6b5a3f; }
.conf-carousel {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
}
.conf-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 4px 24px;
  margin: -8px -4px 0;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--gray-100);
}
.conf-track::-webkit-scrollbar { height: 8px; }
.conf-track::-webkit-scrollbar-track { background: var(--gray-100); border-radius: 4px; }
.conf-track::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 4px; }

.conf-slide {
  flex: 0 0 calc((100% - 40px) / 3);
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  background: #fff;
  border: 1px solid var(--gray-100);
  overflow: hidden;
}
.conf-slide:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.conf-slide-thumb {
  position: relative;
  aspect-ratio: 720/456;
  background-color: #1a1a1a;
  overflow: hidden;
}
.conf-layer {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  pointer-events: none;
}
.conf-layer.active { opacity: 1; }
.conf-slide-count {
  position: absolute;
  right: 12px; bottom: 12px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 14.3px;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 12px;
  font-weight: 600;
  z-index: 2;
}
.conf-slide-count .conf-cur { font-weight: 700; }
.conf-slide-info {
  padding: 18px 20px 22px;
}
.conf-slide-year {
  font-size: 14.3px;
  letter-spacing: 3px;
  color: var(--accent-dark);
  font-weight: 700;
  margin-bottom: 8px;
}
.conf-slide-info h4 {
  font-size: 19.5px;
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.9em;
  margin: 0 0 6px 0;
}
.conf-slide-info p {
  font-size: 16.9px;
  color: var(--gray-500);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

.conf-arrow {
  position: absolute; top: calc(50% - 30px);
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--gray-100);
  box-shadow: 0 6px 20px rgba(0,0,0,0.10);
  font-size: 28.6px; font-weight: 800;
  color: var(--accent-dark);
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s;
}
.conf-arrow:hover:not(:disabled) {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.conf-arrow:disabled { opacity: 0.3; cursor: not-allowed; }
.conf-arrow.prev { left: 8px; }
.conf-arrow.next { right: 8px; }

.conf-counter {
  text-align: center;
  margin-top: 12px;
  font-size: 16.9px;
  letter-spacing: 2px;
  color: var(--gray-500);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .conf-carousel { padding: 0 50px; }
  .conf-slide { flex: 0 0 calc((100% - 20px) / 2); }
}
@media (max-width: 720px) {
  .conf-carousel { padding: 0 16px; }
  .conf-slide { flex: 0 0 85%; }
  .conf-arrow { width: 40px; height: 40px; font-size: 23.4px; }
  .conf-arrow.prev { left: -4px; }
  .conf-arrow.next { right: -4px; }
}

/* 라이트박스 */
.conf-lightbox {
  position: fixed; inset: 0;
  display: none;
  z-index: 100;
}
.conf-lightbox.open { display: block; }
.conf-lb-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.85);
}
.conf-lb-inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 40px 20px;
  pointer-events: none;
}
.conf-lb-inner > * { pointer-events: auto; }
.conf-lb-close {
  position: absolute; top: 18px; right: 22px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 0;
  color: #fff;
  font-size: 39px; font-weight: 300;
  cursor: pointer;
  transition: background 0.2s;
}
.conf-lb-close:hover { background: rgba(255,255,255,0.3); }
.conf-lb-title {
  color: #fff;
  text-align: center;
  margin-bottom: 16px;
  max-width: 920px;
}
.conf-lb-title .conf-lb-year {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 15.6px; letter-spacing: 2px;
  padding: 4px 10px;
  border-radius: 12px;
  font-weight: 700;
  margin-right: 8px;
  vertical-align: middle;
}
.conf-lb-title .conf-lb-name {
  font-size: 23.4px; font-weight: 700;
  vertical-align: middle;
}
.conf-lb-title .conf-lb-sub {
  font-size: 18.2px;
  color: rgba(255,255,255,0.75);
  margin-top: 8px;
  font-weight: 400;
}
.conf-lb-stage {
  flex: 1 1 auto;
  max-width: 100%;
  max-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.conf-lb-stage img {
  max-width: 100%;
  max-height: 60vh;
  object-fit: contain;
  background: #000;
}
.conf-lb-thumbs {
  margin-top: 16px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100%;
}
.conf-lb-thumbs img {
  width: 80px; height: 50px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s;
  border: 2px solid transparent;
}
.conf-lb-thumbs img:hover, .conf-lb-thumbs img.active {
  opacity: 1;
  border-color: var(--accent);
}
@media (max-width: 720px) {
  .conf-lb-stage, .conf-lb-stage img { max-height: 50vh; }
  .conf-lb-thumbs img { width: 60px; height: 38px; }
}

/* ===== SEARCH POPUP ===== */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* 헤더 검색 트리거 (돋보기 아이콘 버튼) */
.knsy-search-toggle {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 1px solid transparent;
  color: var(--accent-dark);
  cursor: pointer; border-radius: 50%;
  transition: all 0.18s ease;
  padding: 0;
}
.knsy-search-toggle svg { width: 19px; height: 19px; }
.knsy-search-toggle:hover {
  background: #fff; border-color: var(--accent); color: var(--accent-dark);
  transform: translateY(-1px);
}

/* 풀스크린 팝업 */
.knsy-search-pop[hidden] { display: none; }
.knsy-search-pop {
  position: fixed; inset: 0;
  z-index: 99999;
  display: flex; align-items: flex-start; justify-content: center;
  animation: knsySearchFade 0.2s ease;
}
@keyframes knsySearchFade { from { opacity: 0; } to { opacity: 1; } }
.knsy-search-backdrop {
  position: absolute; inset: 0;
  background: rgba(28, 24, 18, 0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.knsy-search-panel {
  position: relative;
  width: 100%; max-width: 720px;
  margin: 3vh 20px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.28);
  padding: 22px 28px 22px;
  animation: knsySearchSlide 0.25s ease;
  max-height: 94vh;
  overflow-y: auto;
}
@keyframes knsySearchSlide {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}
.knsy-search-close {
  position: absolute; top: 8px; right: 8px;
  width: 32px; height: 32px;
  background: transparent; border: 0;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--gray-700);
  border-radius: 50%;
  transition: background 0.15s ease;
}
.knsy-search-close:hover { background: var(--gray-100); }
.knsy-search-close svg { width: 22px; height: 22px; }

/* 검색 입력 폼 */
.knsy-search-form {
  display: flex; align-items: center; gap: 0;
  border-bottom: 2px solid var(--accent);
  padding: 2px 2px 8px;
}
.knsy-search-icon {
  width: 18px; height: 18px; flex-shrink: 0;
  color: var(--accent-dark);
  margin-right: 10px;
}
.knsy-search-form input[type="text"] {
  flex: 1;
  border: 0; outline: none; background: transparent;
  font-size: 20.8px;
  color: var(--black);
  padding: 4px 0;
  letter-spacing: -0.2px;
}
.knsy-search-form input::placeholder { color: var(--gray-500); }
.knsy-search-submit {
  background: var(--accent); color: #fff;
  border: 0; padding: 7px 16px;
  font-size: 16.9px; font-weight: 600; letter-spacing: 1px;
  border-radius: 5px; cursor: pointer;
  transition: background 0.15s ease;
}
.knsy-search-submit:hover { background: var(--accent-dark); }

/* 콘텐츠 영역 - 위아래 수직 배치 */
.knsy-search-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
}
/* 전역 section { padding: 90px 20px } 룰 오버라이드 */
.knsy-search-pop section.knsy-search-block { padding: 0; margin: 0; }
.knsy-search-heading {
  font-size: 14.3px; letter-spacing: 2.5px;
  color: var(--accent-dark); font-weight: 700;
  margin: 0 0 5px;
  text-transform: uppercase;
}

/* 추천 이벤트 - 2열 그리드 (공간 절약) */
.knsy-evt-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
}
.knsy-evt-list a {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 10px;
  background: var(--gray-50);
  border-radius: 6px;
  text-decoration: none; color: inherit;
  transition: all 0.15s ease;
  border-left: 3px solid var(--accent);
}
.knsy-evt-list a:hover {
  background: #fff;
  box-shadow: 0 3px 10px rgba(0,0,0,0.06);
}
.knsy-evt-eyebrow {
  font-size: 12.3px; letter-spacing: 1px;
  color: var(--accent-dark); font-weight: 700;
  background: #fff; padding: 3px 6px; border-radius: 3px;
  flex-shrink: 0; white-space: nowrap;
}
.knsy-evt-copy {
  font-size: 16.2px; line-height: 1.4; color: var(--gray-900);
}

/* 추천 검색어 (칩) */
.knsy-kw-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.knsy-kw-list a {
  display: inline-block;
  padding: 5px 12px;
  background: #fff;
  border: 1px solid var(--gray-300);
  border-radius: 999px;
  font-size: 16.2px;
  color: var(--gray-700);
  text-decoration: none;
  transition: all 0.15s ease;
}
.knsy-kw-list a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* 강남서연TV - 3열 컴팩트 */
.knsy-tv-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.knsy-tv-list a {
  display: block;
  text-decoration: none; color: inherit;
  border-radius: 6px; overflow: hidden;
  background: var(--gray-50);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.knsy-tv-list a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.10);
}
.knsy-tv-thumb {
  aspect-ratio: 16 / 9;
  background-size: cover; background-position: center;
  position: relative;
}
.knsy-tv-thumb::after {
  content: '▶';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 23.4px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
  opacity: 0.9;
}
.knsy-tv-info { padding: 7px 9px 9px; }
.knsy-tv-cat {
  display: inline-block;
  font-size: 12.3px; letter-spacing: 1px;
  color: var(--accent-dark); font-weight: 700;
  margin-bottom: 2px;
}
.knsy-tv-title {
  font-size: 15px; line-height: 1.4;
  color: var(--gray-900);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* body scroll lock */
body.knsy-search-open { overflow: hidden; }

/* 모바일 반응형 */
@media (max-width: 768px) {
  .knsy-search-panel {
    margin: 2vh 10px 10px;
    padding: 20px 16px 18px;
    max-height: 96vh;
  }
  .knsy-search-form input[type="text"] { font-size: 19.5px; }
  .knsy-search-submit { padding: 7px 12px; font-size: 16.2px; }
  .knsy-search-content { gap: 8px; margin-top: 12px; }
  .knsy-evt-list { grid-template-columns: 1fr; }
  .knsy-tv-list { grid-template-columns: 1fr; gap: 8px; }
  .knsy-tv-list a { display: grid; grid-template-columns: 120px 1fr; }
  .knsy-tv-thumb { aspect-ratio: 16/9; height: 100%; }
  .knsy-tv-info { padding: 8px 10px; }
}

/* ====== 모바일 가독성 보강 (inline grid-template-columns 오버라이드) ====== */
@media (max-width: 1024px) {
  .target-num-list[style*="grid-template-columns"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 720px) {
  .compare-grid[style*="grid-template-columns"],
  .media-slot-grid[style*="grid-template-columns"],
  .dr-emphasis[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
  .target-num-list[style*="grid-template-columns"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  /* profile-pair (좌우 나란히 BEFORE/AFTER)는 모바일에서 위아래로 */
  .profile-pair {
    grid-template-columns: 1fr;
    aspect-ratio: auto;
  }
  .profile-pair-img {
    aspect-ratio: 4/3;
  }
}
