@charset "UTF-8";
/* ==========================
   Reset (Minimal)
========================== */
:root {
  scrollbar-gutter: stable;
}

@supports not (scrollbar-gutter: stable) {
  html {
    overflow-y: scroll;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  max-width: 100%;
  height: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

code,
pre {
  font-size: 0.875rem;
}

input,
textarea,
select,
button {
  font: inherit;
  color: inherit;
}

/* ==========================
   Base (Global defaults)
========================== */
html,
body {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #111827;
  background-color: #f9fafb;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

html {
  background-color: #f9fafb;
}

ul, ol {
  padding-left: 1.25rem;
  margin-bottom: 16px;
}

/* ==========================
   Nav-like 리스트 전역 리셋
   - 본문 리스트는 유지
   - 메뉴/내비/브레드크럼/페이지네이션만 점 제거
========================== */
ul.main-nav,
ul.menu, ol.menu,
.gnb ul, .sidemenu ul,
ul.gnb, ul.sidemenu,
ul.breadcrumb, ol.breadcrumb,
ul.pagination, ol.pagination,
ul.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-inline-start: 0;
}

.main-nav > li::marker,
.menu > li::marker,
.gnb li::marker,
.sidemenu li::marker,
.pagination > li::marker,
.footer-links > li::marker {
  content: none;
}

.main-nav li::before,
.menu li::before,
.gnb li::before,
.sidemenu li::before,
.pagination li::before,
.footer-links li::before {
  content: none;
}

.breadcrumb {
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb li {
  display: inline;
}

.breadcrumb li + li::before {
  content: "›";
  margin: 0 0.5rem;
  opacity: 0.6;
}

dl, dd {
  margin: 0;
}

th, td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #e5e7eb;
}

th {
  text-align: left;
  font-weight: 500;
}

pre {
  padding: 8px 16px;
  border-radius: 6px;
  overflow: auto;
}

blockquote {
  margin: 0 0 16px;
  padding-left: 16px;
  border-left: 4px solid #e5e7eb;
  color: #374151;
}

hr {
  border: 0;
  border-top: 1px solid #e5e7eb;
  margin: 24px 0;
}

:focus-visible {
  outline: 2px solid #4A7EBB;
  outline-offset: 2px;
}

/* ==========================
   Typography (Low global impact)
   - Global: minimal defaults (avoid component collisions)
   - Prose containers: full rhythm + link decoration
========================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.4;
  color: #111827;
  margin: 0;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0;
  font-size: 1rem;
  color: #374151;
  line-height: 1.6;
}

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

a.template-card,
a.template-card:hover {
  color: inherit;
  text-decoration: none;
}

/* ==========================
   Prose / Article Containers
   - 문서 본문에서만 리듬/링크 스타일 강화
========================== */
.prose h1, .prose h2, .prose h3, .prose h4, .prose h5, .prose h6,
.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6,
.post-body h1,
.post-body h2,
.post-body h3,
.post-body h4,
.post-body h5,
.post-body h6 {
  margin: 0 0 16px;
}
.prose p,
.article-content p,
.post-body p {
  margin: 0 0 16px;
}
.prose a,
.article-content a,
.post-body a {
  color: #4A7EBB;
  text-decoration: none;
}
.prose a:hover,
.article-content a:hover,
.post-body a:hover {
  color: #3E6EA6;
  text-decoration: underline;
}

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

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-muted {
  color: #374151;
}

.fw-bold {
  font-weight: 700;
}

.text-ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.stack > * + * {
  margin-top: 16px;
}

.noselect {
  user-select: none;
}

.pointer {
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
    scroll-behavior: auto;
  }
}
/* Motion Tokens (Design System) */
:root {
  --m-dur-1: 0.5s;
  --m-dur-2: 0.65s;
  --m-dur-3: 1s;
  --m-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --m-ease-io: cubic-bezier(0.65, 0, 0.35, 1);
  --m-dist-1: 10px;
  --m-dist-2: 14px;
  --m-stag-1: 0.08s;
  --m-stag-2: 0.09s;
  --m-st1: 0.12;
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --m-dur-1: 0.01s;
    --m-dur-2: 0.01s;
    --m-dur-3: 0.01s;
    --m-dist-1: 0px;
    --m-dist-2: 0px;
    --m-stag-1: 0s;
    --m-stag-2: 0s;
  }
}
/* =====================================================
   Motion Reveal v1
   - target: [data-m]
   - done: .is-in
   - list: [data-m="stagger"] + [data-m-item]
===================================================== */
/* FOUC guard (m-ready 전에는 모션 숨김 금지) */
html:not(.m-ready) [data-m],
html:not(.m-ready) [data-m-item] {
  opacity: 1;
  transform: none;
  filter: none;
  transition: none;
}

/* 단일 요소 기본 */
html.m-ready [data-m] {
  opacity: 0;
  transform: translate3d(0, var(--m-dist-2), 0);
  filter: none;
  transition-property: opacity, transform;
  transition-duration: var(--m-dur-2);
  transition-timing-function: var(--m-ease-out);
  will-change: opacity, transform;
}

html.m-ready [data-m].m-blur {
  filter: blur(4px);
  transition-property: opacity, transform, filter;
  will-change: opacity, transform, filter;
}

html.m-ready [data-m].is-in {
  opacity: 1;
  transform: none;
  filter: none;
  will-change: auto;
}

/* 방향별 */
html.m-ready [data-m=fade] {
  transform: none;
}

html.m-ready [data-m=up] {
  transform: translate3d(0, var(--m-dist-2), 0);
}

html.m-ready [data-m=down] {
  transform: translate3d(0, calc(var(--m-dist-2) * -1), 0);
}

html.m-ready [data-m=left] {
  transform: translate3d(calc(var(--m-dist-2) * -1), 0, 0);
}

html.m-ready [data-m=right] {
  transform: translate3d(var(--m-dist-2), 0, 0);
}

html.m-ready [data-m].is-in {
  opacity: 1;
  transform: none;
  filter: none;
  will-change: auto;
}

/* stagger 컨테이너는 관찰용 */
html.m-ready [data-m=stagger] {
  opacity: 1;
  transform: none;
  filter: none;
  transition: none;
}

/* stagger item */
html.m-ready [data-m-item] {
  opacity: 0;
  transform: translate3d(0, var(--m-dist-1), 0);
  filter: none;
  transition-property: opacity, transform, filter;
  transition-duration: var(--m-dur-2);
  transition-timing-function: var(--m-ease-out);
  will-change: opacity, transform, filter;
}

html.m-ready [data-m-item].is-in {
  opacity: 1;
  transform: none;
  filter: none;
  will-change: auto;
}

@media (max-width: 768px) {
  html.m-ready [data-m],
  html.m-ready [data-m-item] {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
    will-change: auto;
  }
}
/* reduce motion */
@media (prefers-reduced-motion: reduce) {
  html.m-ready [data-m],
  html.m-ready [data-m].is-in,
  html.m-ready [data-m-item],
  html.m-ready [data-m-item].is-in {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}
.container {
  --container-max: 1440px;
  --container-px: clamp(20px, 4vw, 40px);
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}
@media (max-width: 768px) {
  .container {
    --container-px: 20px;
  }
}
@media (max-width: 480px) {
  .container {
    --container-px: 16px;
  }
}

.container--sm {
  --container-max: 720px;
  --container-px: clamp(20px, 4vw, 40px);
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}
@media (max-width: 768px) {
  .container--sm {
    --container-px: 20px;
  }
}
@media (max-width: 480px) {
  .container--sm {
    --container-px: 16px;
  }
}

.container--md {
  --container-max: 960px;
  --container-px: clamp(20px, 4vw, 40px);
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}
@media (max-width: 768px) {
  .container--md {
    --container-px: 20px;
  }
}
@media (max-width: 480px) {
  .container--md {
    --container-px: 16px;
  }
}

.container--lg {
  --container-max: 1200px;
  --container-px: clamp(20px, 4vw, 40px);
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}
@media (max-width: 768px) {
  .container--lg {
    --container-px: 20px;
  }
}
@media (max-width: 480px) {
  .container--lg {
    --container-px: 16px;
  }
}

.container--xl {
  --container-max: 1440px;
  --container-px: clamp(20px, 4vw, 40px);
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}
@media (max-width: 768px) {
  .container--xl {
    --container-px: 20px;
  }
}
@media (max-width: 480px) {
  .container--xl {
    --container-px: 16px;
  }
}

.container--fluid {
  --container-max: 100vw;
  --container-px: clamp(20px, 4vw, 40px);
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}
@media (max-width: 768px) {
  .container--fluid {
    --container-px: 20px;
  }
}
@media (max-width: 480px) {
  .container--fluid {
    --container-px: 16px;
  }
}

.container--bleed {
  padding-inline: 0;
}

.container--text {
  max-width: 72ch;
}

/* frontend/layout/_grid.scss
   Grid / Gap / Alignment Utilities
*/
/* =========================
   Basic Grids
========================= */
.grid-cols-1,
.grid-cols-2,
.grid-cols-3,
.grid-cols-4,
.grid-12 {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: 1fr;
  gap: 16px;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 768px) {
  .grid-cols-2 {
    grid-template-columns: 1fr;
  }
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 768px) {
  .grid-cols-3 {
    grid-template-columns: 1fr;
  }
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 1280px) {
  .grid-cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .grid-cols-4 {
    grid-template-columns: 1fr;
  }
}

/* =========================
   12 Column Grid
========================= */
.grid-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 768px) {
  .grid-12 {
    grid-template-columns: 1fr;
  }
}

.col-1 {
  grid-column: span 1;
}

.col-2 {
  grid-column: span 2;
}

.col-3 {
  grid-column: span 3;
}

.col-4 {
  grid-column: span 4;
}

.col-5 {
  grid-column: span 5;
}

.col-6 {
  grid-column: span 6;
}

.col-7 {
  grid-column: span 7;
}

.col-8 {
  grid-column: span 8;
}

.col-9 {
  grid-column: span 9;
}

.col-10 {
  grid-column: span 10;
}

.col-11 {
  grid-column: span 11;
}

.col-12 {
  grid-column: span 12;
}

@media (max-width: 768px) {
  .col-1 {
    grid-column: auto;
  }
  .col-2 {
    grid-column: auto;
  }
  .col-3 {
    grid-column: auto;
  }
  .col-4 {
    grid-column: auto;
  }
  .col-5 {
    grid-column: auto;
  }
  .col-6 {
    grid-column: auto;
  }
  .col-7 {
    grid-column: auto;
  }
  .col-8 {
    grid-column: auto;
  }
  .col-9 {
    grid-column: auto;
  }
  .col-10 {
    grid-column: auto;
  }
  .col-11 {
    grid-column: auto;
  }
  .col-12 {
    grid-column: auto;
  }
}
/* =========================
   Gap Utilities
   - grid/flex 모두 적용 가능
========================= */
.gap-xs {
  gap: 4px;
}

.gap-sm {
  gap: 8px;
}

.gap-md {
  gap: 16px;
}

.gap-lg {
  gap: 24px;
}

.gap-xl {
  gap: 32px;
}

.gap-xl-2xl {
  gap: 40px;
}

.gap-2xl {
  gap: 48px;
}

.gap-3xl {
  gap: 64px;
}

.gap-3_5xl {
  gap: 80px;
}

.gap-4xl {
  gap: 96px;
}

.gap-5xl {
  gap: 128px;
}

/* =========================
   Alignment Utilities
========================= */
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.text-center {
  text-align: center;
}

/* ===================================================
   Section layout rule (GLOBAL)
=================================================== */
.section {
  --section-bg: #fff;
  background: var(--section-bg);
  padding-block: 120px 120px;
  padding-inline: 0;
}
@media (max-width: 1024px) {
  .section {
    padding-block: 100px 100px;
    padding-inline: 0;
  }
}
@media (max-width: 768px) {
  .section {
    padding-block: 64px 64px;
    padding-inline: 0;
  }
}
@media (max-width: 480px) {
  .section {
    padding-block: 32px 32px;
    padding-inline: 0;
  }
}

.section--muted {
  --section-bg: #f8fafd;
}

.section--brand {
  --section-bg: color-mix(in srgb, var.$color-primary 10%, #fff);
}

.section--dark {
  --section-bg: #0b1220;
}

.l-card-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1024px) {
  .l-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .l-card-grid {
    grid-template-columns: 1fr;
  }
}
.l-card-grid.is-shift {
  max-width: clamp(780px, 78vw, 1040px);
  margin-left: auto;
}

@media (max-width: 1024px) {
  .l-card-grid.is-shift {
    max-width: none;
    margin-left: 0;
  }
}
/* ==========================================================================
   Global header height token
   - 실무 권장: 전역 토큰은 header가 아니라 core/layout에서 둬도 됨
   - 지금은 복붙 편하게 header-base 상단에 유지
   ========================================================================== */
:root {
  --header-h: 86px;
}

.site-header {
  --header-bg: transparent;
  --header-line: transparent;
  --nav-text: #111827;
  --nav-hover: #4A7EBB;
  --nav-muted: #4b5563;
  --nav-gap: clamp(24px, 4vw, 64px);
  --scroll-bg: #ffffff;
  --scroll-line: rgba(17, 24, 39, 0.08);
  --scroll-nav-text: #111827;
  --scroll-nav-muted: #4b5563;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--header-bg);
  border-bottom: 1px solid var(--header-line);
  transition: background 220ms ease, border-color 220ms ease;
}
.site-header.is-scrolled, .site-header.header-solid {
  --header-bg: var(--scroll-bg);
  --header-line: var(--scroll-line);
  --nav-text: var(--scroll-nav-text);
  --nav-muted: var(--scroll-nav-muted);
}
.site-header .header-container {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(100% - 24px * 2, 1400px);
  margin-inline: auto;
}
@media (max-width: 768px) {
  .site-header .header-container {
    width: min(100% - 16px * 2, 1400px);
  }
}
.site-header .header-left,
.site-header .header-center,
.site-header .header-right {
  display: flex;
  align-items: center;
  min-width: 0;
}
.site-header .header-left {
  justify-content: flex-start;
}
.site-header .header-center {
  justify-content: center;
  min-width: 0;
}
.site-header .header-right {
  justify-content: flex-end;
  gap: 8px;
}
.site-header .logo-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  text-decoration: none;
}
.site-header .logo-link img {
  height: 38px;
  display: block;
  transition: opacity 220ms ease;
}
.site-header .logo-link .logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #4A7EBB;
  white-space: nowrap;
  transition: color 220ms ease;
}
.site-header .main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--nav-gap);
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 1024px) {
  .site-header .main-nav {
    display: none;
  }
}
.site-header .main-nav .nav-item {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
}
.site-header .main-nav .nav-link {
  display: inline-flex;
  align-items: center;
  padding: 14px 10px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--nav-text);
  text-decoration: none;
  white-space: nowrap;
  transition: color 220ms ease;
}
.site-header .main-nav .nav-link:hover {
  color: var(--nav-hover);
}
.site-header .sub-nav {
  display: none;
}
.site-header .auth-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
@media (max-width: 1024px) {
  .site-header .auth-nav {
    display: none;
  }
}
.site-header .auth-item {
  display: inline-flex;
  align-items: center;
  padding: 10px 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--nav-text);
  text-decoration: none;
  white-space: nowrap;
  transition: color 220ms ease, opacity 220ms ease;
}
.site-header .auth-item:hover {
  color: var(--nav-hover);
}
.site-header .logout-inline {
  display: inline-flex;
  align-items: center;
  margin: 0;
}
.site-header .logout-button {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 10px 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--nav-text);
  cursor: pointer;
  transition: color 220ms ease, opacity 220ms ease;
}
.site-header .logout-button:hover {
  color: var(--nav-hover);
}
.site-header .header-cta {
  color: var(--nav-text);
  border: 1px solid currentColor;
  background: transparent;
}
.site-header .header-cta:hover {
  color: var(--nav-hover);
  border-color: var(--nav-hover);
  background-color: #ffffff;
}

.site-header.header-solid {
  --header-bg: #ffffff;
  --header-line: rgba(17, 24, 39, 0.08);
}
.site-header.header-transparent {
  --header-bg: transparent;
  --header-line: rgba(255, 255, 255, 0.28);
}
.site-header.header-dark {
  --nav-text: #ffffff;
  --nav-muted: rgba(255,255,255,.72);
}
.site-header.header-dark .logo-link .logo-text {
  color: var(--nav-text);
}
.site-header.header-light {
  --nav-text: #111827;
  --nav-muted: #4b5563;
}
.site-header.header-light .logo-link .logo-text {
  color: #4A7EBB;
}
@media (min-width: calc(1024px + 1px)) {
  .site-header.nav--mega.is-nav-open {
    --header-bg: #ffffff;
    --header-line: rgba(17, 24, 39, 0.08);
    --nav-text: #111827;
    --nav-muted: #4b5563;
    --nav-hover: #4A7EBB;
  }
  .site-header.nav--mega.is-nav-open .logo-link .logo-text {
    color: #4A7EBB;
  }
}
.site-header:not(.scroll-skin--dark).header-transparent.is-scrolled {
  --header-bg: var(--scroll-bg);
  --header-line: var(--scroll-line);
  --nav-text: var(--scroll-nav-text);
  --nav-muted: var(--scroll-nav-muted);
}
.site-header:not(.scroll-skin--dark).header-transparent.is-scrolled .logo-link .logo-text {
  color: #4A7EBB;
}
.site-header.scroll-skin--dark.is-scrolled {
  --header-bg: rgba(0, 0, 0, 0.36);
  --header-line: transparent;
  --nav-text: rgba(255, 255, 255, 0.95);
  --nav-muted: rgba(255, 255, 255, 0.72);
  --nav-hover: #4A7EBB;
  background: var(--header-bg);
  border-bottom-color: var(--header-line);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.site-header.scroll-skin--dark.is-scrolled .nav-link,
.site-header.scroll-skin--dark.is-scrolled .auth-item,
.site-header.scroll-skin--dark.is-scrolled .logout-button,
.site-header.scroll-skin--dark.is-scrolled .header-cta,
.site-header.scroll-skin--dark.is-scrolled .logo-link .logo-text {
  color: var(--nav-text);
}
.site-header.scroll-skin--dark.is-scrolled .header-cta {
  border-color: currentColor;
  background: transparent;
}
@media (hover: hover) and (pointer: fine) {
  .site-header.scroll-skin--dark.is-scrolled .nav-link:hover,
  .site-header.scroll-skin--dark.is-scrolled .auth-item:hover,
  .site-header.scroll-skin--dark.is-scrolled .logout-button:hover {
    color: var(--nav-hover);
  }
  .site-header.scroll-skin--dark.is-scrolled .header-cta:hover {
    color: var(--nav-hover);
    border-color: var(--nav-hover);
    background: rgba(255, 255, 255, 0.12);
  }
}
@media (max-width: 1024px) {
  .site-header.header-dark {
    --header-bg: #ffffff;
    --header-line: rgba(17, 24, 39, 0.08);
    --nav-text: #111827;
    --nav-muted: #4b5563;
  }
}

.site-header .mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: #ffffff;
  color: #111827;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.site-header .mobile-toggle svg {
  width: 20px;
  height: 20px;
  display: block;
}
.site-header .mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: calc(1000 - 1);
}
.site-header .mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
}
.site-header .mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(86vw, 360px);
  height: 100%;
  background: #ffffff;
  border-left: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  transition: transform 220ms ease;
  display: flex;
  flex-direction: column;
}
.site-header #mobile-menu:not([hidden]) .mobile-menu__panel {
  transform: translateX(0);
}
.site-header .mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}
.site-header .mobile-menu__title {
  font-weight: 700;
  letter-spacing: -0.01em;
}
.site-header .mobile-menu__close {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: #ffffff;
  color: #111827;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.site-header .mobile-menu__close svg {
  width: 18px;
  height: 18px;
  display: block;
}
.site-header .mobile-menu__body {
  padding: 16px;
  overflow: auto;
}
.site-header .mobile-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header .mobile-nav__link {
  display: block;
  padding: 12px 8px;
  text-decoration: none;
  color: #111827;
  font-weight: 600;
}
.site-header .mobile-sub {
  list-style: none;
  margin: 0 0 12px 0;
  padding: 0 0 0 12px;
}
.site-header .mobile-sub__link {
  display: block;
  padding: 10px 8px;
  text-decoration: none;
  color: #374151;
}
.site-header .mobile-auth {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
}
.site-header .mobile-auth a, .site-header .mobile-auth button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 12px 8px;
  color: #111827;
  text-decoration: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 600;
}
.site-header .mobile-nav__item.has-children .mobile-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
}
.site-header .mobile-nav__item.has-children.is-open .mobile-sub {
  max-height: 520px;
}
.site-header .mobile-nav__item.has-children.is-open .mobile-nav__chev {
  transform: rotate(180deg);
}
.site-header .mobile-nav__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 8px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 600;
  color: #111827;
  text-align: left;
}
.site-header .mobile-nav__chev {
  width: 18px;
  height: 18px;
  transition: transform 220ms ease;
}
@media (max-width: 1024px) {
  .site-header .header-center {
    display: none;
  }
  .site-header .mobile-toggle {
    display: inline-flex;
  }
  .site-header .auth-nav {
    display: none;
  }
}

.no-scroll {
  overflow: hidden;
}

/* frontend/layout/header/_header-nav-dropdown.scss */
.site-header.nav--dropdown .main-nav .nav-item.has-children {
  position: relative;
}
.site-header.nav--dropdown .main-nav .sub-nav {
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 8px;
  min-width: 180px;
  padding: 4px 0;
  margin: 0;
  list-style: none;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.12);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0s linear 0.2s;
  --nav-muted: rgba(255, 255, 255, 0.82);
  --nav-hover: #4A7EBB;
}
.site-header.nav--dropdown .main-nav .nav-item.has-children.is-open > .sub-nav {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.2s ease, visibility 0s linear 0s;
}
.site-header.nav--dropdown .main-nav .sub-link {
  display: block;
  padding: 8px 16px;
  margin: 2px 8px;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
  color: #ffffff;
  border-radius: 8px;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.site-header.nav--dropdown .main-nav .sub-link:hover, .site-header.nav--dropdown .main-nav .sub-link:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  outline: none;
}

/* frontend/layout/header/_header-nav-mega.scss */
.site-header.nav--mega .nav-wrap {
  position: relative;
  --mega-cols: 1;
  --mega-inner-x: 0px;
  --mega-inner-width: 0px;
  --mega-col-width: 0px;
  --mega-col-gap: var(--nav-gap, 64px);
}
.site-header.nav--mega .nav-wrap > .mega-panel {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--header-h, 80px);
  width: 100%;
  transform: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0s linear 0.2s;
  z-index: calc(1000 + 20);
  --nav-text: #111827;
  --nav-muted: #4b5563;
  --nav-hover: #4A7EBB;
}
.site-header.nav--mega.is-nav-open .nav-wrap > .mega-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.2s ease, visibility 0s linear 0s;
}
@media (max-width: 1023px) {
  .site-header.nav--mega .nav-wrap > .mega-panel {
    display: none;
  }
}
.site-header.nav--mega .nav-wrap .mega-surface {
  background: var(--panel-bg, #ffffff);
  border-top: 1px solid var(--header-line, rgba(17, 24, 39, 0.08));
  padding: 24px 0;
}
.site-header.nav--mega .nav-wrap .mega-inner {
  width: min(100% - 24px * 2, 1400px);
  margin-inline: auto;
}
@media (max-width: 768px) {
  .site-header.nav--mega .nav-wrap .mega-inner {
    width: min(100% - 16px * 2, 1400px);
  }
}
@media (min-width: 1024px) {
  .site-header.nav--mega .nav-wrap .mega-inner {
    width: var(--mega-inner-width, min(100% - 24px * 2, 1400px));
    margin-left: var(--mega-inner-x, auto);
    margin-right: auto;
  }
}
.site-header.nav--mega .nav-wrap .mega-grid {
  display: grid;
  grid-template-columns: repeat(var(--mega-cols, 1), minmax(0, var(--mega-col-width, 1fr)));
  column-gap: var(--mega-col-gap, var(--nav-gap, 64px));
  row-gap: 24px;
  justify-content: start;
}
.site-header.nav--mega .nav-wrap .mega-link {
  display: block;
  padding: 8px 0;
  font-size: 0.875rem;
  color: var(--nav-muted);
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}
.site-header.nav--mega .nav-wrap .mega-link:hover {
  color: var(--nav-hover);
}

/* frontend/layout/_footer.scss
   Footer (Global)
   - .container 기준으로 헤더/본문 라인과 정렬
*/
.site-footer {
  background-color: #111827;
  color: #d1d5db;
  padding-block: 48px;
  font-size: 0.875rem;
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #374151;
}
.site-footer .footer-title {
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 16px;
}
.site-footer .footer-text {
  font-size: 0.75rem;
  line-height: 1.8;
  color: #d1d5db;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.site-footer .footer-text a {
  color: #4A7EBB;
  text-decoration: none;
}
.site-footer .footer-text a:hover {
  text-decoration: underline;
}
.site-footer .footer-line {
  display: block;
}
.site-footer .footer-link {
  color: #4A7EBB;
  text-decoration: none;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.site-footer .footer-link:hover {
  text-decoration: underline;
}
.site-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-links li {
  margin-bottom: 4px;
}
.site-footer .footer-links li a {
  font-size: 0.75rem;
  color: #d1d5db;
  text-decoration: none;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.site-footer .footer-links li a:hover {
  color: #4A7EBB;
}
.site-footer .footer-bottom {
  margin-top: 32px;
  padding-top: 16px;
  font-size: 0.75rem;
  color: #94a3b8;
  text-align: center;
  text-wrap: balance;
}
@media (max-width: 1024px) {
  .site-footer .footer-grid {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .site-footer {
    padding-block: 32px;
  }
  .site-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 24px;
  }
  .site-footer .footer-title {
    margin-bottom: 8px;
  }
  .site-footer .footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
    row-gap: 4px;
  }
  .site-footer .footer-links li {
    margin-bottom: 0;
  }
  .site-footer .footer-bottom {
    margin-top: 24px;
  }
}
@media (max-width: 480px) {
  .site-footer {
    padding-block: 24px;
  }
  .site-footer .footer-grid {
    gap: 24px;
  }
  .site-footer .footer-links {
    grid-template-columns: 1fr;
  }
}

/* frontend/layout/overlay/_popup.scss */
/* ==========================================
   Frontend Global Popup Layer
========================================== */
#popup-layer {
  position: fixed;
  inset: 0;
  z-index: 1200;
  pointer-events: none;
}

#popup-layer .popup-window {
  position: absolute;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  min-width: 280px;
  max-width: min(420px, 90vw);
  max-height: 90vh;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.12);
  pointer-events: auto;
}

#popup-layer .popup-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

#popup-layer .popup-body {
  flex: 1 1 auto;
  overflow: auto;
}

#popup-layer .popup-body > a,
#popup-layer .popup-body > img {
  display: block;
}

#popup-layer .popup-body img {
  width: 100%;
  height: auto;
  display: block;
}

#popup-layer .popup-bottom {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px 12px;
  font-size: 0.875rem;
  background: #f9fafb;
  border-top: 1px solid rgba(148, 163, 184, 0.4);
}

#popup-layer .popup-dont-show-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: #4b5563;
  user-select: none;
  white-space: nowrap;
}

#popup-layer .popup-dont-show-label input[type=checkbox] {
  margin: 0;
  width: 16px;
  height: 16px;
  accent-color: #4A7EBB;
}

#popup-layer .popup-bottom-close {
  border: 0;
  background: none;
  padding: 4px 8px;
  font-size: 0.875rem;
  color: #4A7EBB;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}

#popup-layer .popup-bottom-close:hover {
  background: rgba(37, 99, 235, 0.08);
}

#popup-layer .popup-window.popup-hidden {
  display: none;
}

@media (max-width: 480px) {
  #popup-layer .popup-window {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 92vw;
    max-width: 92vw;
    height: auto;
    max-height: 90vh;
  }
  #popup-layer .popup-inner {
    height: auto;
    max-height: 90vh;
  }
}
/* 
 * 시스템 점검 / 서비스 중단 시 노출되는
 * 전체 화면 오버레이 안내 패널(UI 전용, 페이지 대체용)
 */
/* =============================
 * 전체 배경 + 가운데 정렬
 * ============================= */
.system-maint-wrapper {
  min-height: 100vh;
  background: #e5e7eb;
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
@media (max-width: 480px) {
  .system-maint-wrapper {
    padding: 16px;
  }
}

.system-maint-panel {
  width: min(720px, 100%);
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.16), 0 0 0 1px rgba(209, 213, 219, 0.9);
  overflow: hidden;
}

.system-maint-header {
  padding: 14px 20px;
  background: linear-gradient(90deg, #4A7EBB, #5888c0);
  color: #f9fafb;
  display: flex;
  align-items: center;
  gap: 10px;
}

.system-maint-header-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}

.system-maint-header-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.system-maint-header-title {
  font-size: 14px;
  font-weight: 700;
}

.system-maint-header-sub {
  font-size: 12px;
  opacity: 0.9;
}

.system-maint-body {
  padding: 22px 22px 20px;
}
@media (max-width: 480px) {
  .system-maint-body {
    padding: 18px 16px 16px;
  }
}

.system-maint-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #111827;
}
@media (max-width: 480px) {
  .system-maint-title {
    font-size: 18px;
  }
}

.system-maint-message {
  font-size: 14px;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 14px;
}

.system-maint-desc {
  font-size: 12px;
  color: #94a3b8;
  margin-bottom: 18px;
}

.system-maint-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.system-maint-btn {
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, transform 0.14s ease, box-shadow 0.18s ease;
}

.system-maint-btn-primary {
  background: #4A7EBB;
  border-color: #4A7EBB;
  color: #f9fafb;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
}
.system-maint-btn-primary:hover {
  background: #4376b2;
  transform: translateY(-1px);
}

.system-maint-btn-outline {
  background: #ffffff;
  color: #4b5563;
  border-color: #d1d5db;
}
.system-maint-btn-outline:hover {
  background: #f9fafb;
  transform: translateY(-1px);
}

/* frontend/ui/_index.scss */
/* ===================================================
  Button Component (Common)
  - class: .btn (base)
  - variants: .btn--primary, .btn--ghost, .btn--outline, .btn--soft
  - sizes: .btn--sm, .btn--lg
  - icon: .btn__icon
=================================================== */
:root {
  --btn-h: 48px;
  --btn-px: 18px;
  --btn-radius: 14px;
  --btn-font-size: 15px;
  --btn-font-weight: 600;
  --btn-bg: #4A7EBB;
  --btn-fg: #ffffff;
  --btn-bd: transparent;
  --btn-hover-bg: #4A7EBB;
  --btn-hover-fg: #ffffff;
  --btn-hover-bd: transparent;
  --btn-soft-bg: rgba(0, 0, 0, 0.06);
  --btn-soft-fg: #000000;
  --btn-soft-bd: transparent;
  --btn-outline-bg: transparent;
  --btn-outline-fg: #000000;
  --btn-outline-bd: rgba(0, 0, 0, 0.18);
  --btn-ghost-bg: transparent;
  --btn-ghost-fg: #000000;
  --btn-ghost-bd: transparent;
  --btn-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
  --btn-shadow-hover: 0 14px 30px rgba(0, 0, 0, 0.18);
  --btn-focus: 0 0 0 4px rgba(0, 0, 0, 0.12);
  --btn-gap: 10px;
  --btn-icon-size: 18px;
  --btn-trans: 180ms;
  --btn-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

.btn {
  -webkit-tap-highlight-color: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--btn-gap);
  height: var(--btn-h);
  padding: 0 var(--btn-px);
  border-radius: var(--btn-radius);
  border: 1px solid var(--btn-bd);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  user-select: none;
  cursor: pointer;
  box-shadow: var(--btn-shadow);
  transition: transform var(--btn-trans) var(--btn-ease), box-shadow var(--btn-trans) var(--btn-ease), background var(--btn-trans) var(--btn-ease), color var(--btn-trans) var(--btn-ease), border-color var(--btn-trans) var(--btn-ease), opacity var(--btn-trans) var(--btn-ease);
}
.btn:hover {
  background: var(--btn-hover-bg);
  color: var(--btn-hover-fg);
  border-color: var(--btn-hover-bd);
  box-shadow: var(--btn-shadow-hover);
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}
.btn:focus-visible {
  outline: none;
  box-shadow: var(--btn-shadow-hover), var(--btn-focus);
}
.btn:disabled, .btn.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
  transform: none;
  box-shadow: none;
}

.btn--primary {
  --btn-bg: #4A7EBB;
  --btn-fg: #ffffff;
  --btn-bd: transparent;
  --btn-hover-bg: #4A7EBB;
  --btn-hover-fg: #ffffff;
  --btn-hover-bd: transparent;
}

.btn--soft {
  --btn-bg: var(--btn-soft-bg);
  --btn-fg: var(--btn-soft-fg);
  --btn-bd: var(--btn-soft-bd);
  --btn-hover-bg: rgba(0, 0, 0, 0.10);
  --btn-hover-fg: var(--btn-soft-fg);
  --btn-hover-bd: var(--btn-soft-bd);
  box-shadow: none;
}
.btn--soft:hover {
  box-shadow: none;
}

.btn--outline {
  --btn-bg: var(--btn-outline-bg);
  --btn-fg: var(--btn-outline-fg);
  --btn-bd: var(--btn-outline-bd);
  --btn-hover-bg: rgba(0, 0, 0, 0.06);
  --btn-hover-fg: var(--btn-outline-fg);
  --btn-hover-bd: rgba(0, 0, 0, 0.26);
  box-shadow: none;
}
.btn--outline:hover {
  box-shadow: none;
}

.btn--ghost {
  --btn-bg: var(--btn-ghost-bg);
  --btn-fg: var(--btn-ghost-fg);
  --btn-bd: var(--btn-ghost-bd);
  --btn-hover-bg: rgba(0, 0, 0, 0.06);
  --btn-hover-fg: var(--btn-ghost-fg);
  --btn-hover-bd: var(--btn-ghost-bd);
  box-shadow: none;
}
.btn--ghost:hover {
  box-shadow: none;
}

.btn--sm {
  --btn-h: 40px;
  --btn-px: 14px;
  --btn-radius: 12px;
  --btn-font-size: 14px;
}

.btn--lg {
  --btn-h: 56px;
  --btn-px: 22px;
  --btn-radius: 16px;
  --btn-font-size: 16px;
}

/* Icon */
.btn__icon {
  width: var(--btn-icon-size);
  height: var(--btn-icon-size);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn__icon svg {
  width: 100%;
  height: 100%;
}

.btn-group {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

@media (max-width: 768px) {
  :root {
    --btn-h: 40px;
    --btn-px: 14px;
    --btn-radius: 12px;
    --btn-font-size: 14px;
    --btn-gap: 8px;
    --btn-icon-size: 16px;
    --btn-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    --btn-shadow-hover: 0 10px 22px rgba(0, 0, 0, 0.16);
  }
  .btn--sm {
    --btn-h: 36px;
    --btn-px: 12px;
    --btn-radius: 11px;
    --btn-font-size: 13px;
  }
  .btn--lg {
    --btn-h: 48px;
    --btn-px: 18px;
    --btn-radius: 14px;
    --btn-font-size: 15px;
  }
  .btn-group {
    gap: 8px;
  }
}
.c-card {
  --card-radius: 12px;
  --card-padding-y: 28px;
  --card-padding-x: 26px;
  --card-shadow: 0 4px 16px rgba(40, 60, 120, 0.09);
  --card-shadow-hover: 0 12px 38px rgba(40, 34, 43, 0.15);
  --card-bg: #232428;
  --card-fg: #ffffff;
  --media-h: 180px;
  --media-w: 42%;
  --hover-translate: -7px;
  --hover-scale: 1.04;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--card-radius);
  background: var(--card-bg);
  color: var(--card-fg);
  box-shadow: var(--card-shadow);
  padding: var(--card-padding-y) var(--card-padding-x);
  min-height: var(--card-min-h, auto);
  cursor: pointer;
  transition: transform 0.16s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.18s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.c-card:hover {
  transform: translateY(var(--hover-translate)) scale(var(--hover-scale));
  box-shadow: var(--card-shadow-hover);
  z-index: 2;
}
.c-card:focus-within {
  outline: 2px solid rgba(66, 154, 255, 0.45);
  outline-offset: 2px;
}

.c-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.c-card__title {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: var(--card-fg);
}
@media (max-width: 480px) {
  .c-card__title {
    font-size: 1.2rem;
  }
}

.c-card__desc {
  font-size: 1rem;
  line-height: 1.55;
  opacity: 0.95;
  color: var(--card-fg);
}
@media (max-width: 480px) {
  .c-card__desc {
    font-size: 0.95rem;
  }
}

.c-card__media {
  overflow: hidden;
  border-radius: calc(var(--card-radius) - 2px);
}
.c-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.c-card__icon {
  position: absolute;
  right: 20px;
  bottom: -15px;
  width: 150px;
  height: 150px;
}
.c-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.c-card__footer {
  margin-top: auto;
  padding-top: 14px;
}

.c-card--solid {
  background: var(--card-bg);
}

.c-card--soft {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.c-card--outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.c-card--glass {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.c-card--sm {
  --card-padding-y: 18px;
  --card-padding-x: 18px;
}
.c-card--sm .c-card__title {
  font-size: 1.15rem;
}
.c-card--sm .c-card__desc {
  font-size: 0.95rem;
}

.c-card--lg {
  --card-padding-y: 34px;
  --card-padding-x: 32px;
}
.c-card--lg .c-card__title {
  font-size: 1.8rem;
}
.c-card--lg .c-card__desc {
  font-size: 1.05rem;
}

/* ===== Height modifiers (옵션) ===== */
.c-card--h-xs {
  --card-min-h: 180px;
}

.c-card--h-sm {
  --card-min-h: 220px;
}

.c-card--h-md {
  --card-min-h: 260px;
}

.c-card--h-lg {
  --card-min-h: 300px;
}

.c-card--h-xl {
  --card-min-h: 360px;
}

.c-card--media-top {
  padding: 0;
}
.c-card--media-top .c-card__media {
  height: var(--media-h);
}
.c-card--media-top .c-card__body,
.c-card--media-top .c-card__footer {
  padding: var(--card-padding-y) var(--card-padding-x);
}
.c-card--media-top .c-card__footer {
  padding-top: 0;
}
.c-card--media-top:not(:has(.c-card__media)) {
  padding: var(--card-padding-y) var(--card-padding-x);
}
.c-card--media-top:not(:has(.c-card__media)) .c-card__body,
.c-card--media-top:not(:has(.c-card__media)) .c-card__footer {
  padding: 0;
}

.c-card--media-left {
  flex-direction: row;
  gap: 18px;
}
.c-card--media-left .c-card__media {
  width: var(--media-w);
  min-height: var(--card-min-h, auto);
}
.c-card--media-left .c-card__body {
  flex: 1;
  padding-top: 2px;
}
@media (max-width: 768px) {
  .c-card--media-left {
    flex-direction: column;
  }
  .c-card--media-left .c-card__media {
    width: 100%;
    height: var(--media-h);
    min-height: unset;
  }
}

/* ===================================================
   Variant: media background (이미지 + 오버레이)
   - 뿌연(밀키) 현상 제거: "흰 glow / inset highlight" 제거 + contrast 중심
   - 이미지 디테일 살리고 텍스트 가독성 유지
=================================================== */
.c-card--media-bg {
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
  transition: transform 0.18s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.18s cubic-bezier(0.22, 0.61, 0.36, 1), border-color 0.18s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.c-card--media-bg .c-card__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.c-card--media-bg .c-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.1) saturate(1.08) brightness(1.02);
  transform: scale(1.02);
  transition: transform 0.22s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.22s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform, filter;
}
.c-card--media-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 40%, rgba(0, 0, 0, 0.15) 70%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
  pointer-events: none;
}
.c-card--media-bg::after {
  content: "";
  position: absolute;
  inset: -35%;
  background: radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.1), transparent 55%);
  opacity: 0;
  z-index: 2;
  transition: opacity 0.22s cubic-bezier(0.22, 0.61, 0.36, 1);
  pointer-events: none;
}
.c-card--media-bg .c-card__body,
.c-card--media-bg .c-card__footer {
  position: relative;
  z-index: 3;
}
.c-card--media-bg:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}
.c-card--media-bg:hover::after {
  opacity: 0.22;
}
.c-card--media-bg:hover .c-card__media img {
  transform: scale(1.05);
  filter: contrast(1.12) saturate(1.12) brightness(1.04);
}
.c-card--media-bg:focus-within {
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24), 0 0 0 3px rgba(255, 255, 255, 0.12);
}

.c-card__kicker {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--card-fg);
}

@media (hover: none) {
  .c-card--media-bg:hover {
    transform: none;
  }
  .c-card--media-bg:hover::after {
    opacity: 0;
  }
  .c-card--media-bg:hover .c-card__media img {
    transform: scale(1.02);
    filter: contrast(1.1) saturate(1.08) brightness(1.02);
  }
}
.c-card.is-blue {
  --card-bg: #429aff;
}

.c-card.is-purple {
  --card-bg: #846aff;
}

.c-card.is-dark {
  --card-bg: #232428;
}

.c-card.is-mint {
  --card-bg: #11c5bb;
}

.c-card.is-orange {
  --card-bg: #ff862d;
}

.section-header {
  --sh-align: left;
  margin-bottom: var(--sh-gap-y, 64px);
  text-align: var(--sh-align, left);
}
.section-header .section-pretitle {
  color: var(--sh-pretitle-color, #4A7EBB);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  white-space: normal;
  overflow-wrap: anywhere;
}
.section-header .section-title {
  color: var(--sh-title-color, #1f2937);
  font-weight: 700;
  font-size: var(--sh-title-size, clamp(1.75rem, 2.4vw, 2.75rem));
  line-height: var(--sh-title-lh, 1.16);
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  max-width: var(--sh-measure, 70ch);
  white-space: normal;
  overflow-wrap: anywhere;
}
.section-header .section-subtitle {
  color: var(--sh-subtitle-color, #4b5563);
  font-size: var(--sh-subtitle-size, clamp(1rem, 1.05vw, 1.125rem));
  line-height: var(--sh-subtitle-lh, 1.75);
  margin: 0;
  opacity: 0.96;
  max-width: var(--sh-measure, 70ch);
  white-space: normal;
  overflow-wrap: anywhere;
}

.section-header.is-left {
  --sh-align: left;
}

.section-header.is-center {
  --sh-align: center;
}

.section-header.is-right {
  --sh-align: right;
}

.section-header .section-title,
.section-header .section-subtitle {
  word-break: keep-all;
  overflow-wrap: normal;
}
.section-header.is-center .section-title,
.section-header.is-center .section-subtitle {
  margin-inline: auto;
}

/* =====================================================
// Preset(Util): Tone
// ===================================================== */
.section-header.sh-tone-default {
  --sh-pretitle-color: #4A7EBB;
  --sh-title-color: #111827;
  --sh-subtitle-color: #4b5563;
}

.section-header.sh-tone-muted {
  --sh-pretitle-color: #6b7280;
  --sh-title-color: #111827;
  --sh-subtitle-color: #374151;
}

.section-header.sh-tone-inverse {
  --sh-pretitle-color: rgba(255, 255, 255, 0.75);
  --sh-title-color: #fff;
  --sh-subtitle-color: rgba(255, 255, 255, 0.85);
}

/* =====================================================
// Preset(Util): Gap
// ===================================================== */
.section-header.sh-gap-lg {
  --sh-gap-y: 64px;
}

.section-header.sh-gap-md {
  --sh-gap-y: 48px;
}

.section-header.sh-gap-sm {
  --sh-gap-y: 32px;
}

/* =====================================================
// Preset(Util): Size
// ===================================================== */
.section-header.sh-size-default {
  --sh-title-size: clamp(1.75rem, 2.4vw, 2.75rem);
  --sh-subtitle-size: clamp(1rem, 1.05vw, 1.125rem);
  --sh-subtitle-lh: 1.75;
}

.section-header.sh-size-compact {
  --sh-title-size: clamp(1.4rem, 2.1vw, 2.125rem);
  --sh-title-lh: 1.25;
  --sh-subtitle-size: 1rem;
  --sh-subtitle-lh: 1.8;
}

.section-header.sh-size-hero {
  --sh-title-size: clamp(2rem, 3.2vw, 3.5rem);
  --sh-title-lh: 1.12;
  --sh-subtitle-size: clamp(1.05rem, 1.1vw, 1.2rem);
  --sh-subtitle-lh: 1.75;
}

/* =====================================================
// Preset(Util): Measure
// ===================================================== */
.section-header.sh-measure-md {
  --sh-measure: 60ch;
}

.section-header.sh-measure-lg {
  --sh-measure: 70ch;
}

/* =====================================================
// Variant Presets (alias: 토큰 조합)
// - util(.section-header.sh-*)이 우선하도록 "특이도 낮게" 유지
// ===================================================== */
.sh-variant-hero {
  --sh-title-size: clamp(2rem, 3.2vw, 3.5rem);
  --sh-title-lh: 1.12;
  --sh-subtitle-size: clamp(1.05rem, 1.1vw, 1.2rem);
  --sh-subtitle-lh: 1.75;
  --sh-gap-y: 64px;
  --sh-measure: 60ch;
  --sh-pretitle-color: #4A7EBB;
  --sh-title-color: #111827;
  --sh-subtitle-color: #4b5563;
}

.sh-variant-hero-inverse {
  --sh-title-size: clamp(2rem, 3.2vw, 3.5rem);
  --sh-title-lh: 1.12;
  --sh-subtitle-size: clamp(1.05rem, 1.1vw, 1.2rem);
  --sh-subtitle-lh: 1.75;
  --sh-gap-y: 64px;
  --sh-measure: 60ch;
  --sh-pretitle-color: rgba(255, 255, 255, 0.75);
  --sh-title-color: #fff;
  --sh-subtitle-color: rgba(255, 255, 255, 0.85);
}

.sh-variant-compact {
  --sh-title-size: clamp(1.4rem, 2.1vw, 2.125rem);
  --sh-title-lh: 1.25;
  --sh-subtitle-size: 1rem;
  --sh-subtitle-lh: 1.8;
  --sh-gap-y: 32px;
  --sh-measure: 60ch;
  --sh-pretitle-color: #6b7280;
  --sh-title-color: #111827;
  --sh-subtitle-color: #374151;
}

.sh-variant-muted {
  --sh-pretitle-color: #6b7280;
  --sh-title-color: #111827;
  --sh-subtitle-color: #374151;
}

.hero {
  --hero-bg: #000;
  --hero-color: #ffffff;
  --hero-overlay: none;
  --hero-pad-y: 0px;
  --hero-pad-x: 0px;
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--hero-bg);
  color: var(--hero-color);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: var(--hero-overlay);
}
.hero > .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero > .hero-inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  padding-block: var(--hero-pad-y);
  padding-inline: var(--hero-pad-x);
  display: flex;
  align-items: center;
  pointer-events: none;
}
.hero .hero-content,
.hero .hero-content *,
.hero .hero-buttons,
.hero .hero-buttons * {
  pointer-events: auto;
}

.hero.hero--video {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  height: 72vh;
  --hero-poster-pc: none;
  --hero-poster-mobile: var(--hero-poster-pc);
  --hero-video-brightness: 0.95;
  --hero-video-saturate: 0.92;
  --hero-video-contrast: 1.02;
  --hero-bloom: radial-gradient(
    120% 90% at 18% 18%,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.00) 60%
  );
  --hero-grade: linear-gradient(
    90deg,
    rgba(3, 5, 9, 0.95) 0%,
    rgba(3, 5, 9, 0.88) 34%,
    rgba(3, 5, 9, 0.62) 60%,
    rgba(3, 5, 9, 0.34) 82%,
    rgba(3, 5, 9, 0.28) 100%
  ),
  linear-gradient(
    180deg,
    rgba(3, 5, 9, 0.40) 0%,
    rgba(3, 5, 9, 0.72) 100%
  );
  --hero-tint: linear-gradient(
    0deg,
    rgba(8, 12, 20, 0.22),
    rgba(8, 12, 20, 0.22)
  );
  --hero-overlay: linear-gradient(
    rgba(8, 12, 20, 0.35),
    rgba(8, 12, 20, 0.35)
  );
  --hero-noise-opacity: 0.02;
}
@media (min-width: 1024px) {
  .hero.hero--video:not(.hero-fullscreen) {
    height: 78vh;
  }
  .hero.hero--video.hero-fullscreen {
    height: 100dvh;
    height: 100vh;
  }
}
@media (max-width: 1023.98px) {
  .hero.hero--video {
    height: clamp(560px, 68vh, 680px);
  }
}
@media (max-width: 767.98px) {
  .hero.hero--video {
    height: clamp(460px, 54svh, 580px);
  }
}
.hero.hero--video > .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero.hero--video > .hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: var(--hero-bloom), var(--hero-grade), var(--hero-tint), var(--hero-poster-pc);
  background-position: center, center, center, center;
  background-size: cover, cover, cover, cover;
  background-repeat: no-repeat;
}
.hero.hero--video::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: var(--hero-noise-opacity);
  mix-blend-mode: normal;
  background-image: url("/assets/images/common/noise-1.png");
  background-repeat: repeat;
  background-size: 180px 180px;
}
.hero.hero--video .hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero.hero--video .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  filter: brightness(var(--hero-video-brightness)) saturate(var(--hero-video-saturate)) contrast(var(--hero-video-contrast));
  transform: none;
}
.hero.hero--video .hero-video-pc {
  display: block;
}
.hero.hero--video .hero-video-mobile {
  display: none;
}
@media (max-width: 767.98px) {
  .hero.hero--video > .hero-bg::before {
    background: var(--hero-bloom), var(--hero-grade), var(--hero-tint), var(--hero-poster-mobile);
  }
  .hero.hero--video .hero-video-pc {
    display: none;
  }
  .hero.hero--video .hero-video-mobile {
    display: block;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  max-width: 820px;
  --hc-gap: 24px;
  --hc-title-desc-gap: 8px;
  --hc-kicker-title-gap: 8px;
  --hc-buttons-gap: 16px;
  --hc-buttons-mt: 16px;
  --hc-title-lh: 1.12;
  --hc-desc-lh: 1.6;
  --hc-safe-x: clamp(14px, 2.2vw, 28px);
  gap: var(--hc-gap);
  --hc-color: inherit;
  --hc-kicker-opacity: 0.9;
  --hc-desc-opacity: 0.92;
  --hc-btn-color: var(--hc-color);
  --hc-btn-outline-border: currentColor;
  --hc-btn-ghost-bg: transparent;
  color: var(--hc-color);
}
.hero-content--left {
  align-items: flex-start;
  text-align: left;
  padding-left: var(--hc-safe-x);
}
.hero-content--center {
  align-items: center;
  text-align: center;
}
.hero-content--right {
  align-items: flex-end;
  text-align: right;
  padding-right: var(--hc-safe-x);
}
.hero-content--white {
  --hc-color: #ffffff;
  --hc-btn-outline-border: rgba(255, 255, 255, 0.72);
  --hc-btn-ghost-bg: rgba(255, 255, 255, 0.14);
  --hc-kicker-opacity: 0.9;
  --hc-desc-opacity: 0.92;
}
.hero-content--dark {
  --hc-color: #111827;
  --hc-btn-outline-border: rgba(0, 0, 0, 0.22);
  --hc-btn-ghost-bg: rgba(0, 0, 0, 0.06);
  --hc-kicker-opacity: 0.85;
  --hc-desc-opacity: 0.9;
}
.hero-content--muted {
  --hc-color: #374151;
  --hc-btn-outline-border: rgba(0, 0, 0, 0.18);
  --hc-btn-ghost-bg: rgba(0, 0, 0, 0.05);
  --hc-kicker-opacity: 0.9;
  --hc-desc-opacity: 0.9;
}

.hero-kicker {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: inherit;
  opacity: var(--hc-kicker-opacity, 0.9);
}

.hero-title {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: var(--hc-title-lh);
  color: inherit;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.hero-desc {
  margin: 0;
  margin-top: var(--hc-title-desc-gap);
  font-size: 1.25rem;
  line-height: var(--hc-desc-lh);
  color: inherit;
  opacity: var(--hc-desc-opacity, 0.92);
}

.hero-title + .hero-desc {
  margin-top: var(--hc-title-desc-gap);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--hc-buttons-gap);
  margin-top: var(--hc-buttons-mt);
}
.hero-content--center .hero-buttons {
  justify-content: center;
}
.hero-content--right .hero-buttons {
  justify-content: flex-end;
}
.hero-buttons .btn {
  color: var(--hc-btn-color);
}
.hero-buttons .btn-outline {
  border-color: var(--hc-btn-outline-border);
}
.hero-buttons .btn-ghost {
  background: var(--hc-btn-ghost-bg);
}

@media (max-width: 1023.98px) {
  .hero-content {
    max-width: 720px;
    --hc-gap: 16px;
    --hc-title-desc-gap: 8px;
    --hc-buttons-mt: 8px;
    --hc-safe-x: clamp(16px, 3.2vw, 32px);
  }
  .hero-desc {
    font-size: 1.125rem;
  }
}
@media (max-width: 767.98px) {
  .hero-content {
    max-width: 100%;
    --hc-gap: 16px;
    --hc-title-desc-gap: 8px;
    --hc-safe-x: clamp(16px, 4vw, 34px);
  }
  .hero-kicker {
    font-size: 0.75rem;
    letter-spacing: 0.03em;
  }
  .hero-title {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
    -webkit-line-clamp: 3;
  }
  .hero-desc {
    display: none;
  }
  .hero-content--left,
  .hero-content--right {
    align-items: flex-start;
    text-align: left;
    padding-left: var(--hc-safe-x);
    padding-right: 0;
  }
}
@media (max-width: 479.98px) {
  .hero-title {
    font-size: clamp(1.6rem, 8vw, 2.15rem);
  }
  .hero-desc {
    font-size: 0.95rem;
  }
}
.hero.hero--slider {
  position: relative;
  padding: 0;
  height: 72vh;
  --hero-overlay: none;
}
@media (min-width: 1024px) {
  .hero.hero--slider {
    height: 78vh;
  }
  .hero.hero--slider.hero-fullscreen {
    height: 100dvh;
    height: 100vh;
  }
}
@media (max-width: 1023.98px) {
  .hero.hero--slider {
    height: clamp(560px, 68vh, 680px);
  }
}
@media (max-width: 767.98px) {
  .hero.hero--slider {
    height: clamp(460px, 54svh, 580px);
  }
}
.hero.hero--slider .hero-swiper {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero.hero--slider .hero-swiper .swiper,
.hero.hero--slider .hero-swiper .swiper-wrapper,
.hero.hero--slider .hero-swiper .swiper-slide.hero-slide {
  width: 100%;
  height: 100%;
}
.hero.hero--slider .swiper-slide.hero-slide {
  position: relative;
  overflow: hidden;
  --slide-overlay: rgba(0, 0, 0, 0.18);
}
.hero.hero--slider .swiper-slide.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: var(--slide-overlay);
}
.hero.hero--slider .swiper-slide.hero-slide .hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  pointer-events: none;
}
.hero.hero--slider .hero-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.03);
  pointer-events: none;
}
.hero.hero--slider .hero-nav,
.hero.hero--slider .hero-pagination,
.hero.hero--slider .swiper-pagination {
  z-index: 30;
  pointer-events: auto;
}
.hero.hero--slider .hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  padding: 0;
  appearance: none;
}
.hero.hero--slider .hero-nav::before {
  content: "";
  width: 14px;
  height: 14px;
  border-right: 2px solid rgba(255, 255, 255, 0.92);
  border-bottom: 2px solid rgba(255, 255, 255, 0.92);
  transform: rotate(135deg);
}
.hero.hero--slider .hero-prev {
  left: 18px;
}
.hero.hero--slider .hero-prev::before {
  transform: rotate(135deg) translateX(1px) translateY(-1px);
}
.hero.hero--slider .hero-next {
  right: 18px;
}
.hero.hero--slider .hero-next::before {
  transform: rotate(-45deg) translateX(-1px) translateY(1px);
}
.hero.hero--slider .hero-swiper .hero-pagination,
.hero.hero--slider .hero-swiper .swiper-pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 30;
  pointer-events: auto;
}
.hero.hero--slider .hero-swiper .swiper-horizontal > .swiper-pagination-bullets,
.hero.hero--slider .hero-swiper .swiper-pagination-bullets.swiper-pagination-horizontal {
  left: 0;
  right: 0;
  width: 100%;
}
@media (max-width: 767.98px) {
  .hero.hero--slider .hero-nav {
    width: 38px;
    height: 38px;
  }
  .hero.hero--slider .hero-nav::before {
    width: 12px;
    height: 12px;
  }
  .hero.hero--slider .hero-prev {
    left: 10px;
  }
  .hero.hero--slider .hero-next {
    right: 10px;
  }
  .hero.hero--slider .hero-swiper .hero-pagination,
  .hero.hero--slider .hero-swiper .swiper-pagination {
    bottom: 12px;
  }
}

.policy-page {
  padding: 64px 0;
}

.policy-wrap {
  max-width: 920px;
  margin: 0 auto;
}

.policy-title {
  margin: 0 0 32px;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #111827;
}

.policy-content {
  margin-top: 8px;
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 400;
  color: #111827;
}
.policy-content p {
  margin: 0 0 16px;
}
.policy-content ul,
.policy-content ol {
  margin: 0 0 24px;
  padding-left: 1.25rem;
}
.policy-content li {
  margin: 4px 0;
}
.policy-content hr {
  border: 0;
  height: 1px;
  background: rgba(17, 24, 39, 0.08);
  margin: 32px 0;
}
.policy-content h2 {
  margin: 48px 0 16px;
  font-size: 1.5rem;
  line-height: 1.3;
  font-weight: 700;
  color: #111827;
}
.policy-content h3 {
  margin: 32px 0 8px;
  font-size: 1.25rem;
  line-height: 1.35;
  font-weight: 600;
  color: #111827;
}
.policy-content strong,
.policy-content b {
  font-weight: 700;
}
.policy-content a {
  color: #4A7EBB;
  text-underline-offset: 3px;
}
.policy-content a:hover {
  color: #3E6EA6;
}

@media (max-width: 768px) {
  .policy-page {
    padding: 48px 0;
  }
  .policy-title {
    font-size: 1.8rem;
    margin-bottom: 24px;
  }
  .policy-content {
    line-height: 1.6;
  }
}
.sub-hero-section {
  --hero-bg: url("/assets/images/frontend/common/hero-default.jpg");
  --hero-position: center center;
  --hero-h: 460px;
  --overlay-start: 0.45;
  --overlay-end: 0.65;
  --sub-hero-title-color: #fff;
  --sub-hero-subtitle-color: #fff;
  --sub-hero-text-color: #fff;
  position: relative;
  min-height: var(--hero-h);
  padding-top: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--sub-hero-text-color);
  background-image: var(--hero-bg);
  background-position: var(--hero-position);
  background-size: cover;
  background-repeat: no-repeat;
}
.sub-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, var(--overlay-start)), rgba(0, 0, 0, var(--overlay-end)));
}
.sub-hero-section > .container {
  position: relative;
  z-index: 1;
}
.sub-hero-section h1 {
  margin-bottom: 8px;
  color: var(--sub-hero-title-color);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.sub-hero-section p {
  color: var(--sub-hero-subtitle-color);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.5;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  opacity: 0.95;
}
.sub-hero-section.is-left {
  text-align: left;
}
.sub-hero-section.is-center {
  text-align: center;
}
.sub-hero-section.is-right {
  text-align: right;
}
@media (max-width: 768px) {
  .sub-hero-section {
    padding-top: 64px;
  }
}

.tabbar-wrap {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}

.tabbar {
  --tab-underline: #111827;
  --underline-thickness: 2px;
  position: relative;
  display: flex;
  gap: 28px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.tabbar::-webkit-scrollbar {
  display: none;
}
.tabbar[data-sticky=true] {
  position: sticky;
  top: var(--header-h, 72px);
  z-index: 20;
  background: inherit;
}
.tabbar .tabbar__tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  padding: 0 2px;
  color: #6b7280;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.25s ease;
}
.tabbar .tabbar__tab:hover, .tabbar .tabbar__tab.is-active {
  color: #111827;
}
.tabbar .tabbar__tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--underline-thickness);
  background: var(--tab-underline);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0.45;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.tabbar .tabbar__tab:hover::after {
  transform: scaleX(1);
}
.tabbar .tabbar__tab.is-active::after {
  transform: scaleX(1);
  opacity: 1;
}
.tabbar .tabbar__indicator {
  display: none;
}

.tabbar-wrap--connected {
  background: transparent;
  border-bottom: 0;
  margin-top: -34px;
  position: relative;
  z-index: 3;
}
.tabbar-wrap--connected .tabbar {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  --tab-bg: rgba(10, 18, 38, .78);
  --tab-bg-hover: rgba(10, 18, 38, .92);
  --tab-line: rgba(255, 255, 255, .14);
  gap: 0;
  background: var(--tab-bg);
  border: 1px solid var(--tab-line);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}
.tabbar-wrap--connected .tabbar .tabbar__tab {
  height: 64px;
  padding: 0 18px;
  min-width: 160px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  border-left: 1px solid var(--tab-line);
}
.tabbar-wrap--connected .tabbar .tabbar__tab:first-child {
  border-left: 0;
}
.tabbar-wrap--connected .tabbar .tabbar__tab::after {
  display: none;
}
.tabbar-wrap--connected .tabbar .tabbar__tab:hover {
  background: var(--tab-bg-hover);
  color: rgba(255, 255, 255, 0.92);
}
.tabbar-wrap--connected .tabbar .tabbar__tab.is-active {
  background: #fff;
  color: #111827;
}

.tabbar-wrap--heroLine {
  background: #0b1b3a;
}
.tabbar-wrap--heroLine .tabbar {
  gap: 0;
}
.tabbar-wrap--heroLine .tabbar .tabbar__tab {
  height: 64px;
  min-width: 160px;
  padding: 0 18px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}
.tabbar-wrap--heroLine .tabbar .tabbar__tab:first-child {
  border-left: 0;
}
.tabbar-wrap--heroLine .tabbar .tabbar__tab::after {
  display: none;
}
.tabbar-wrap--heroLine .tabbar .tabbar__tab:hover {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
}
.tabbar-wrap--heroLine .tabbar .tabbar__tab.is-active {
  background: #fff;
  color: #111827;
}

.tabbar-wrap--glass {
  background: transparent;
  border-bottom: 0;
  margin-top: -34px;
  position: relative;
  z-index: 3;
}
.tabbar-wrap--glass .tabbar {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  gap: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.tabbar-wrap--glass .tabbar .tabbar__tab {
  height: 64px;
  padding: 0 18px;
  min-width: 160px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}
.tabbar-wrap--glass .tabbar .tabbar__tab:first-child {
  border-left: 0;
}
.tabbar-wrap--glass .tabbar .tabbar__tab::after {
  display: none;
}
.tabbar-wrap--glass .tabbar .tabbar__tab:hover {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.96);
}
.tabbar-wrap--glass .tabbar .tabbar__tab.is-active {
  background: rgba(255, 255, 255, 0.92);
  color: #111827;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}
@supports not ((backdrop-filter: blur(12px)) or (-webkit-backdrop-filter: blur(12px))) {
  .tabbar-wrap--glass .tabbar {
    background: rgba(10, 18, 38, 0.78);
    border-color: rgba(255, 255, 255, 0.14);
  }
}
.tabbar-wrap--glass.is-light .tabbar {
  background: rgba(0, 0, 0, 0.22);
  border-color: rgba(0, 0, 0, 0.18);
}
.tabbar-wrap--glass.is-light .tabbar__tab {
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 1024px) {
  .tabbar {
    gap: 22px;
  }
}
@media (max-width: 640px) {
  .tabbar {
    gap: 16px;
  }
  .tabbar .tabbar__tab {
    height: 60px;
    font-size: 0.95rem;
  }
  .tabbar-wrap--connected,
  .tabbar-wrap--glass {
    margin-top: -28px;
  }
  .tabbar-wrap--connected .tabbar .tabbar__tab,
  .tabbar-wrap--heroLine .tabbar .tabbar__tab,
  .tabbar-wrap--glass .tabbar .tabbar__tab {
    min-width: 132px;
    padding: 0 14px;
    height: 58px;
  }
}
@media (max-width: 420px) {
  .tabbar .tabbar__tab {
    height: 56px;
    font-size: 0.92rem;
  }
  .tabbar-wrap--connected .tabbar .tabbar__tab,
  .tabbar-wrap--heroLine .tabbar .tabbar__tab,
  .tabbar-wrap--glass .tabbar .tabbar__tab {
    min-width: 118px;
    padding: 0 12px;
  }
}
.location-primary {
  margin: 0 0 48px;
}

.location-primary__eyebrow {
  margin: 0 0 16px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
}

.location-primary__title {
  margin: 0 0 24px;
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #111827;
  line-height: 1.2;
}

.location-primary__desc {
  margin: 0 0 32px;
  font-size: 1rem;
  line-height: 1.9;
  color: #374151;
  max-width: 52ch;
}

.location-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 1024px) {
  .location-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.location-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 768px) {
  .location-cards {
    grid-template-columns: 1fr;
  }
}

.info-card {
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, rgba(17, 24, 39, 0.08) 80%, transparent);
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  padding: 32px;
}
.info-card.is-muted {
  background: color-mix(in srgb, #f9fafb 60%, #fff);
}

.info-label {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
}

.info-text {
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.8;
  color: #111827;
}

.info-sub {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.7;
  color: #4b5563;
}

.info-link {
  color: #111827;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, #111827 25%, transparent);
}
.info-link:hover {
  border-bottom-color: color-mix(in srgb, #4A7EBB 60%, transparent);
  color: #4A7EBB;
}

.location-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.location-note {
  margin-top: 32px;
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, rgba(17, 24, 39, 0.08) 80%, transparent);
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  padding: 32px;
}
.location-note .note-title {
  margin: 0 0 4px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
}
.location-note .note-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.9;
  color: #374151;
}

.location-map-card {
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, rgba(17, 24, 39, 0.08) 80%, transparent);
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.location-map-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
  border-bottom: 1px solid color-mix(in srgb, rgba(17, 24, 39, 0.08) 80%, transparent);
}

.map-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #4A7EBB;
  background: color-mix(in srgb, #4A7EBB 10%, #fff);
  border: 1px solid color-mix(in srgb, #4A7EBB 18%, rgba(17, 24, 39, 0.08));
  white-space: nowrap;
}

.map-title {
  display: grid;
  gap: 4px;
  text-align: right;
}
.map-title strong {
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.4;
}
.map-title span {
  font-size: 0.875rem;
  color: #4b5563;
}

.location-map {
  background: #f3f4f6;
}
.location-map iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}
@media (max-width: 1024px) {
  .location-map iframe {
    height: 320px;
  }
}

.location-map-card__foot {
  padding: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid color-mix(in srgb, rgba(17, 24, 39, 0.08) 80%, transparent);
}

.cta-hospital {
  background: #f9fafb;
}
.cta-hospital .cta-card {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  padding: 64px;
  border-radius: 16px;
  background: #eaf2fd;
  border: 1px solid rgba(17, 24, 39, 0.08);
}
@media (max-width: 1024px) {
  .cta-hospital .cta-card {
    grid-template-columns: 1fr;
    padding: 48px;
  }
}
.cta-hospital .cta-kicker {
  margin: 0 0 8px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #374151;
  opacity: 0.7;
}
.cta-hospital .cta-title {
  margin: 0 0 8px;
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .cta-hospital .cta-title {
    font-size: 1.8rem;
  }
}
.cta-hospital .cta-desc {
  margin: 0;
  color: #374151;
  line-height: 1.6;
}
.cta-hospital .cta-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media (max-width: 1024px) {
  .cta-hospital .cta-actions {
    justify-content: flex-start;
    margin-top: 24px;
  }
}

/* ===================================================
   Department Grid (mosaic 유지 / 현대 스타일)
=================================================== */
.dept-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .dept-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .dept-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: 90px;
    column-gap: 16px;
    row-gap: 20px;
  }
}

.dept-card {
  position: relative;
  overflow: hidden;
  display: block;
  isolation: isolate;
  --card-pad: 22px;
  --ring: rgba(255, 255, 255, 0.14);
  --stroke: rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.02);
  transform: translateZ(0);
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}
@media (max-width: 767.98px) {
  .dept-card {
    --card-pad: 18px;
    border-radius: 16px;
  }
}
.dept-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.14), 0 0 0 1px rgba(15, 23, 42, 0.1) inset;
}

.dept-card::before {
  display: none;
}

.dept-card__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 420ms ease;
  filter: brightness(1.12) saturate(1.05) contrast(1.02);
}

.dept-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(720px 320px at 18% 22%, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.18) 45%, rgba(0, 0, 0, 0) 75%), linear-gradient(180deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.08) 60%, rgba(0, 0, 0, 0.12) 100%);
}

.dept-card:hover .dept-card__bg {
  transform: scale(1.06);
  filter: brightness(1.16) saturate(1.08) contrast(1.05);
}

.dept-card__content {
  position: relative;
  z-index: 3;
  height: 100%;
  padding: var(--card-pad);
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 10px;
  color: #ffffff;
}
.dept-card__content > * {
  position: relative;
  z-index: 1;
}

.dept-card__kicker {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.9;
}

.dept-card__title {
  margin: 0;
  font-size: 25px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.94);
}
@media (max-width: 767.98px) {
  .dept-card__title {
    font-size: 20px;
  }
}

.dept-card__desc {
  margin: 0;
  max-width: 44ch;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
}

.dept-card__title,
.dept-card__desc {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
}

.dept-card__link {
  pointer-events: none;
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 4;
  height: 38px;
  min-width: 38px;
  padding: 0 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 220ms ease, transform 220ms ease, background 220ms ease, border-color 220ms ease;
}
.dept-card__link::before {
  content: "Explore";
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}
.dept-card__link::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(255, 255, 255, 0.88);
  border-bottom: 2px solid rgba(255, 255, 255, 0.88);
  transform: rotate(-45deg);
  transition: transform 180ms ease;
}

.dept-card:hover .dept-card__link {
  opacity: 1;
  transform: translateY(0);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.22);
}

.dept-card:hover .dept-card__link::after {
  transform: rotate(-45deg) translateX(1px);
}

@media (hover: none) {
  .dept-card__link {
    opacity: 1;
    transform: none;
  }
}
/* ===================================================
   Desktop Mosaic (레이아웃 절대 변경 금지)
=================================================== */
@media (min-width: 1024px) {
  .dept-card {
    min-height: auto;
  }
  .dept-card--1 {
    grid-column: 1/span 8;
    grid-row: 1/span 2;
  }
  .dept-card--2 {
    grid-column: 9/span 4;
    grid-row: 1/span 3;
  }
  .dept-card--3 {
    grid-column: 1/span 5;
    grid-row: 3/span 2;
  }
  .dept-card--4 {
    grid-column: 1/span 5;
    grid-row: 5/span 2;
  }
  .dept-card--5 {
    grid-column: 6/span 3;
    grid-row: 3/span 4;
  }
  .dept-card--6 {
    grid-column: 9/span 4;
    grid-row: 4/span 3;
  }
}
@media (prefers-reduced-motion: reduce) {
  .dept-card,
  .dept-card__bg,
  .dept-card__link,
  .dept-card__link::after {
    transition: none;
  }
  .dept-card:hover {
    transform: none;
  }
  .dept-card:hover .dept-card__bg {
    transform: none;
  }
  .dept-card:hover .dept-card__link {
    transform: none;
  }
}
/* static/scss/frontend/section/team/_doctor-intro.scss */
.doctor-intro {
  --bg-image: none;
  /* ===================================================
     Brand (PRIMARY: #4A7EBB)
  =================================================== */
  --primary: 74, 126, 187;
  --ov-1: rgba(46, 92, 150, 0.98);
  --ov-2: rgba(74, 126, 187, 0.92);
  --ov-3: rgba(106, 154, 208, 0.62);
  --ov-4: rgba(159, 193, 230, 0.00);
  --section-min-h: clamp(680px, 85vh, 980px);
  --content-offset: 0px;
  --doctor-w: clamp(800px, 40vw, 700px);
  --doctor-right: clamp(40px, 6vw, 320px);
  --doctor-bottom: -5%;
  --text-strong: rgba(255, 255, 255, 0.98);
  --text-base: rgba(255, 255, 255, 0.90);
  --text-muted: rgba(255, 255, 255, 0.76);
  --divider: rgba(255, 255, 255, 0.16);
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: var(--section-min-h);
  background: linear-gradient(90deg, var(--ov-1) 0%, var(--ov-2) 36%, var(--ov-3) 66%, var(--ov-4) 100%), var(--bg-image) center/cover no-repeat;
  color: var(--text-base);
}
.doctor-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(900px 420px at 16% 18%, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0) 62%), radial-gradient(700px 380px at 70% 62%, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 62%);
  mix-blend-mode: screen;
  opacity: 0.55;
}
.doctor-intro__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.doctor-intro__doctor {
  position: absolute;
  right: var(--doctor-right);
  bottom: var(--doctor-bottom);
  z-index: 3;
  width: var(--doctor-w);
  height: auto;
  pointer-events: none;
  transform: translateY(var(--doctor-shift-y));
  filter: drop-shadow(0 30px 70px rgba(0, 0, 0, 0.34));
}
.doctor-intro__content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  padding: 56px 0;
  transform: translateY(var(--content-offset));
}
@media (min-width: 1024px) {
  .doctor-intro__content {
    padding-top: 92px;
    padding-bottom: 74px;
  }
}
.doctor-intro .doctor-top {
  display: grid;
  gap: 14px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--divider);
}
@media (min-width: 1024px) {
  .doctor-intro .doctor-top {
    gap: 16px;
    padding-bottom: 26px;
  }
}
.doctor-intro .doctor-name {
  margin: 0;
  color: var(--text-strong);
  font-weight: 850;
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-size: clamp(32px, 3.2vw, 48px);
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.28), 0 2px 0 rgba(0, 0, 0, 0.1);
}
.doctor-intro .doctor-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.doctor-intro .doctor-role {
  color: rgba(255, 255, 255, 0.94);
  font-size: 14px;
  font-weight: 750;
  letter-spacing: -0.01em;
  line-height: 1.35;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}
.doctor-intro .doctor-summary {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
  line-height: 1.75;
  letter-spacing: -0.01em;
  max-width: 56ch;
}
@media (max-width: 767.98px) {
  .doctor-intro .doctor-summary {
    font-size: 15px;
    line-height: 1.7;
  }
}
.doctor-intro .doctor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 4px;
}
.doctor-intro .doctor-tag {
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 8px 12px;
}
.doctor-intro .doctor-grid {
  display: grid;
  gap: 18px;
  margin-top: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 767.98px) {
  .doctor-intro .doctor-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 18px;
  }
}
.doctor-intro .doctor-block {
  padding: 18px 18px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}
.doctor-intro .doctor-block__title {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 15px;
  font-weight: 850;
  letter-spacing: -0.02em;
  line-height: 1.25;
  display: flex;
  align-items: center;
  gap: 10px;
}
.doctor-intro .doctor-block__title::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
  flex: 0 0 auto;
}
.doctor-intro .doctor-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.doctor-intro .doctor-list li {
  position: relative;
  padding-left: 14px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
  letter-spacing: -0.01em;
}
.doctor-intro .doctor-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
}
.doctor-intro .doctor-cta {
  margin-top: 22px;
  display: flex;
  justify-content: flex-start;
}
.doctor-intro .doctor-nav {
  display: inline-flex;
  gap: 10px;
}
.doctor-intro .doctor-nav__btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}
.doctor-intro .doctor-nav__btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}
.doctor-intro .doctor-nav__btn::after {
  border-right-color: rgba(255, 255, 255, 0.78);
  border-bottom-color: rgba(255, 255, 255, 0.78);
}
@media (max-width: 1023.98px) {
  .doctor-intro {
    min-height: auto;
    background: linear-gradient(180deg, rgba(46, 92, 150, 0.92) 0%, rgba(74, 126, 187, 0.78) 55%, rgba(74, 126, 187, 0.46) 100%), var(--bg-image) center/cover no-repeat;
    --doctor-w: clamp(420px, 60vw, 560px);
    --doctor-right: clamp(180px, calc(420px - 10vw), 260px);
    --doctor-bottom: 0%;
    --doctor-shift-y: 18%;
  }
  .doctor-intro__content {
    padding: 34px 0 44px;
    transform: none;
  }
  .doctor-intro .doctor-role {
    font-size: 13px;
    padding: 7px 11px;
  }
}

.facility-gallery {
  /* =========================
     Tokens
  ========================= */
  --fg-gap: 48px;
  --fg-radius: 22px;
  --fg-surface: #ffffff;
  --fg-text: #111827;
  --fg-muted: #4b5563;
  --fg-border: rgba(15, 23, 42, 0.06);
  --fg-shadow: 0 18px 46px rgba(15, 23, 42, 0.12);
  --fg-ov-1: rgba(10, 20, 40, 0.00);
  --fg-ov-2: rgba(10, 20, 40, 0.14);
  --fg-ov-3: rgba(10, 20, 40, 0.55);
  --fg-ov-4: rgba(10, 20, 40, 0.82);
  --fg-slide-w: clamp(210px, 22vw, 400px);
  --fg-media-h: clamp(380px, 52vh, 560px);
}
.facility-gallery.facility-gallery--side .facility-gallery__grid {
  display: grid;
  gap: var(--fg-gap);
  align-items: center;
}
@media (min-width: 1024px) {
  .facility-gallery.facility-gallery--side .facility-gallery__grid {
    grid-template-columns: 360px minmax(0, 1fr);
  }
}
@media (min-width: 1024px) {
  .facility-gallery.facility-gallery--side .facility-gallery__aside {
    grid-column: 1;
    grid-row: 1;
  }
  .facility-gallery.facility-gallery--side .facility-gallery__main {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
  }
}
.facility-gallery .facility-gallery__aside {
  position: relative;
  z-index: 10;
}
.facility-gallery .facility-gallery__row {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}
.facility-gallery .facility-gallery__controls {
  position: relative;
  z-index: 11;
  display: inline-flex;
  gap: 10px;
  pointer-events: auto;
}
.facility-gallery .facility-gallery__nav {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: var(--fg-surface);
  cursor: pointer;
  position: relative;
  box-sizing: border-box;
  padding: 0;
  line-height: 0;
  transition: transform 160ms ease, opacity 160ms ease;
}
.facility-gallery .facility-gallery__nav:hover {
  transform: translateY(-1px);
}
.facility-gallery .facility-gallery__nav.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}
.facility-gallery .facility-gallery__nav::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(15, 23, 42, 0.78);
  border-bottom: 2px solid rgba(15, 23, 42, 0.78);
  transform: rotate(-45deg);
}
.facility-gallery .facility-gallery__nav--prev::before {
  transform: rotate(135deg);
}
.facility-gallery .facility-gallery__main {
  position: relative;
  z-index: 1;
  min-width: 0;
  overflow: hidden;
}
.facility-gallery .facility-gallery__slider {
  min-width: 0;
  overflow: hidden;
}
.facility-gallery .swiper {
  overflow: hidden;
}
.facility-gallery .swiper-wrapper {
  align-items: stretch;
}
.facility-gallery .swiper-slide {
  height: auto;
  width: var(--fg-slide-w);
  flex-shrink: 0;
  box-sizing: border-box;
}
@media (min-width: 1024px) {
  .facility-gallery .facility-gallery__main {
    overflow: visible;
    width: calc(100vw - 360px - var(--fg-gap));
    max-width: none;
    justify-self: start;
  }
  .facility-gallery .facility-gallery__slider {
    overflow: visible;
    padding-right: 24px;
  }
  .facility-gallery .swiper {
    overflow: hidden;
  }
}
.facility-gallery .facility-card {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--fg-surface);
  border: 1px solid var(--fg-border);
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease;
  will-change: transform;
}
.facility-gallery .facility-card__media {
  position: relative;
  height: var(--fg-media-h);
  background: rgba(15, 23, 42, 0.06);
  overflow: hidden;
}
.facility-gallery .facility-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 260ms ease;
}
.facility-gallery .facility-card:hover .facility-card__media img {
  transform: scale(1.06);
}
.facility-gallery .facility-card__media-fallback {
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--fg-muted);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.facility-gallery .facility-card--overlay .facility-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 18px 16px;
  color: rgba(255, 255, 255, 0.92);
  background: linear-gradient(180deg, var(--fg-ov-1) 0%, var(--fg-ov-2) 24%, var(--fg-ov-3) 62%, var(--fg-ov-4) 100%);
}
.facility-gallery .facility-card--overlay .facility-card__kicker {
  display: inline-block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
}
.facility-gallery .facility-card--overlay .facility-card__title {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.96);
  line-height: 1.18;
}
@media (max-width: 767.98px) {
  .facility-gallery .facility-card--overlay .facility-card__title {
    font-size: 18px;
  }
}
.facility-gallery .facility-card--overlay .facility-card__desc {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.facility-gallery .facility-gallery__pagination {
  margin-top: 24px;
  position: static;
  text-align: center;
}
.facility-gallery .swiper-pagination-bullet {
  opacity: 0.28;
}
.facility-gallery .swiper-pagination-bullet-active {
  opacity: 1;
}
@media (max-width: 1023.98px) {
  .facility-gallery {
    --fg-gap: 32px;
    --fg-slide-w: clamp(220px, 56vw, 380px);
    --fg-media-h: clamp(280px, 40vh, 520px);
  }
}
@media (max-width: 767.98px) {
  .facility-gallery {
    --fg-gap: 24px;
    --fg-slide-w: clamp(210px, 72vw, 330px);
    --fg-media-h: clamp(240px, 38vh, 420px);
  }
  .facility-gallery.facility-gallery--side .facility-gallery__grid {
    align-items: start;
  }
  .facility-gallery .facility-gallery__row {
    margin-top: 16px;
  }
}

.hours-section {
  background: color-mix(in srgb, #4A7EBB 3%, #fff);
}

.hours-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 64px;
  margin-top: 48px;
}
@media (max-width: 1024px) {
  .hours-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.hours-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  padding: 48px;
}

.hours-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}

.hours-card__title {
  margin: 0;
  font-size: 1.25rem;
  color: #111827;
  letter-spacing: -0.02em;
}

.hours-badge {
  font-size: 0.75rem;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
  color: #4A7EBB;
  background: color-mix(in srgb, #4A7EBB 10%, #fff);
  border: 1px solid color-mix(in srgb, #4A7EBB 16%, #fff);
}

.hours-table {
  margin: 0;
  display: grid;
  gap: 8px;
}

.hours-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  align-items: start;
  padding: 16px 24px;
  border-radius: 8px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
}
@media (max-width: 480px) {
  .hours-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
.hours-row dt {
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.01em;
}
.hours-row dd {
  margin: 0;
  color: #1f2937;
  line-height: 1.6;
}
.hours-row .muted {
  color: #4b5563;
  font-size: 0.875rem;
  font-weight: 600;
  margin-left: 6px;
}
.hours-row.is-closed {
  background: color-mix(in srgb, #111827 3%, #fff);
}
.hours-row.is-closed dt,
.hours-row.is-closed dd {
  color: #374151;
}

.hours-note {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px dashed #e5e7eb;
  color: #4b5563;
  line-height: 1.65;
  font-size: 0.875rem;
}

@media (max-width: 1024px) {
  .hours-side {
    order: -1;
  }
}

.side-card {
  position: sticky;
  top: 48px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  padding: 48px;
}
@media (max-width: 1024px) {
  .side-card {
    position: static;
  }
}

.side-kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #6b7280;
  margin-bottom: 8px;
}

.side-title {
  margin: 0 0 8px;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: #111827;
}

.side-desc {
  margin: 0 0 24px;
  color: #374151;
  line-height: 1.7;
}

.side-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.side-actions .btn {
  flex: 1 1 auto;
  min-width: 140px;
}

.side-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 32px 0;
}

.side-meta {
  display: grid;
  gap: 8px;
}

.meta-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.meta-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #6b7280;
}

.meta-value {
  font-weight: 800;
  color: #111827;
}

.about-team {
  --section-bg: #fff;
  background: var(--section-bg);
}

.about-team .doctor-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  margin-top: 48px;
}
@media (max-width: 1024px) {
  .about-team .doctor-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.about-team .intro-card {
  position: sticky;
  top: 48px;
  padding: 48px;
  border-radius: 12px;
  background: color-mix(in srgb, #4A7EBB 4%, #fff);
  border: 1px solid color-mix(in srgb, #4A7EBB 10%, #fff);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
@media (max-width: 1024px) {
  .about-team .intro-card {
    position: static;
  }
}

.about-team .intro-kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #4b5563;
  margin-bottom: 8px;
}

.about-team .intro-title {
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: #111827;
}

.about-team .intro-desc {
  margin: 0 0 24px;
  color: #374151;
  line-height: 1.7;
}

.about-team .intro-points {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.about-team .intro-points li {
  position: relative;
  padding-left: 14px;
  color: #1f2937;
  line-height: 1.7;
}
.about-team .intro-points li + li {
  margin-top: 4px;
}
.about-team .intro-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4A7EBB;
}

.about-team .intro-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.about-team .doctor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}
@media (max-width: 768px) {
  .about-team .doctor-grid {
    grid-template-columns: 1fr;
  }
}

.about-team .doctor-grid .doctor-item-card {
  --card-radius: 12px;
  --card-bg: #fff;
  --card-fg: #111827;
  --card-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  --card-shadow-hover: 0 4px 6px rgba(0, 0, 0, 0.1);
  --card-padding-y: 24px;
  --card-padding-x: 24px;
  --hover-translate: -2px;
  --hover-scale: 1;
  border: 1px solid #e5e7eb;
}

.about-team .doctor-grid .doctor-item-card:hover {
  border-color: color-mix(in srgb, #4A7EBB 18%, #e5e7eb);
}

.about-team .doctor-grid .doctor-item-card .c-card__media {
  background: #f3f4f6;
}
.about-team .doctor-grid .doctor-item-card .c-card__media img {
  object-position: center 20%;
}

.about-team .doctor-grid .doctor-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.about-team .doctor-grid .doctor-name {
  margin: 0;
  font-size: 1.125rem;
  color: #111827;
  letter-spacing: -0.01em;
}
.about-team .doctor-grid .doctor-name small {
  font-size: 0.875rem;
  color: #4b5563;
  font-weight: 600;
  margin-left: 4px;
}

.about-team .doctor-grid .doctor-badge {
  flex: 0 0 auto;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  background: color-mix(in srgb, #4A7EBB 10%, #fff);
  border: 1px solid color-mix(in srgb, #4A7EBB 18%, #fff);
  color: #4A7EBB;
}

.about-team .doctor-grid .doctor-desc {
  margin: 0 0 16px;
  color: #374151;
  line-height: 1.65;
}

.about-team .doctor-grid .doctor-meta {
  margin: 0;
  display: grid;
  gap: 4px;
}
.about-team .doctor-grid .doctor-meta div {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 8px;
  align-items: start;
}
.about-team .doctor-grid .doctor-meta dt {
  font-size: 0.75rem;
  font-weight: 700;
  color: #4b5563;
  letter-spacing: 0.08em;
}
.about-team .doctor-grid .doctor-meta dd {
  margin: 0;
  color: #1f2937;
  font-size: 0.875rem;
  line-height: 1.6;
}

.about-team .doctor-grid .doctor-actions {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
.about-team .doctor-grid .doctor-actions .link {
  font-weight: 700;
  font-size: 0.875rem;
  color: #111827;
  text-decoration: none;
}
.about-team .doctor-grid .doctor-actions .link:hover {
  color: #4A7EBB;
}

.about .section-header {
  margin-bottom: 32px;
  margin-bottom: var(--sh-gap-y, 64px);
  text-align: var(--sh-align, left);
}
.about .section-header .section-pretitle {
  color: var(--sh-pretitle-color, #4A7EBB);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  white-space: normal;
  overflow-wrap: anywhere;
}
.about .section-header .section-title {
  color: var(--sh-title-color, #1f2937);
  font-weight: 700;
  font-size: var(--sh-title-size, clamp(1.75rem, 2.4vw, 2.75rem));
  line-height: var(--sh-title-lh, 1.16);
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  max-width: var(--sh-measure, 70ch);
  white-space: normal;
  overflow-wrap: anywhere;
}
.about .section-header .section-subtitle {
  color: var(--sh-subtitle-color, #4b5563);
  font-size: var(--sh-subtitle-size, clamp(1rem, 1.05vw, 1.125rem));
  line-height: var(--sh-subtitle-lh, 1.75);
  margin: 0;
  opacity: 0.96;
  max-width: var(--sh-measure, 70ch);
  white-space: normal;
  overflow-wrap: anywhere;
}
.about .section-header .section-pretitle {
  color: #4A7EBB;
}
.about .features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 24px 0 40px;
  padding: 0;
  list-style: none;
}
.about .features li {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #ffffff;
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}
.about .features li .feature-icon {
  background: #4A7EBB;
  color: #ffffff;
  border-radius: 9999px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
}
.about .features li .feature-text {
  font-size: 1rem;
  font-weight: 500;
  color: #111827;
}
.about .features li:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background-color: #f3f4f6;
}
.about .features li:hover .feature-text {
  color: #4A7EBB;
}
.about .btn.primary {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 32px;
  background: #4A7EBB;
  color: #ffffff;
  font-weight: 500;
  border-radius: 9999px;
  transition: background 0.2s ease;
}
.about .btn.primary svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.about .btn.primary:hover {
  background: #3E6EA6;
  text-decoration: none;
}
.about .about-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.about .about-card:hover {
  transform: scale(1.03);
}
.about .about-card .about-image {
  width: 100%;
  aspect-ratio: 4/3;
  height: auto;
  object-fit: cover;
  display: block;
}

.about-overview-section .about-overview__header {
  max-width: 70ch;
}
.about-overview-section .about-overview__header .section-title {
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.about-overview-section .about-overview__header .section-subtitle {
  font-size: 1rem;
  line-height: 1.9;
}
.about-overview-section .about-overview__hero {
  margin: 0 0 64px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, rgba(17, 24, 39, 0.08) 80%, transparent);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  background: #fff;
}
.about-overview-section .about-overview__hero-img {
  display: block;
  width: 100%;
  height: clamp(240px, 28vw, 420px);
  object-fit: cover;
}
.about-overview-section .about-overview__content {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 1024px) {
  .about-overview-section .about-overview__content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.about-overview-section .about-overview__desc {
  margin: 0 0 32px;
  font-size: 1rem;
  line-height: 1.9;
  color: #374151;
  max-width: 52ch;
}
.about-overview-section .about-overview__bullets {
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.about-overview-section .about-overview__bullets li {
  position: relative;
  padding-left: 16px;
  color: #374151;
  line-height: 1.6;
}
.about-overview-section .about-overview__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: color-mix(in srgb, #4A7EBB 70%, #fff);
}
.about-overview-section .about-overview__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.about-overview-section .meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, rgba(17, 24, 39, 0.08) 80%, transparent);
  background: #fff;
}
.about-overview-section .meta-chip .k {
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.about-overview-section .meta-chip .v {
  font-size: 0.875rem;
  font-weight: 500;
  color: #111827;
}
.about-overview-section .profile-card,
.about-overview-section .note-card {
  border: 1px solid color-mix(in srgb, rgba(17, 24, 39, 0.08) 80%, transparent);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border-radius: 16px;
}
.about-overview-section .profile-card__head {
  padding: 32px;
  border-bottom: 1px solid color-mix(in srgb, rgba(17, 24, 39, 0.08) 80%, transparent);
}
.about-overview-section .profile-card__title {
  margin: 0 0 4px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}
.about-overview-section .profile-card__desc {
  margin: 0;
  font-size: 0.875rem;
  color: #4b5563;
}
.about-overview-section .profile-list {
  margin: 0;
  padding: 0 32px;
  list-style: none;
}
.about-overview-section .profile-list li {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px dashed color-mix(in srgb, rgba(17, 24, 39, 0.08) 70%, transparent);
}
.about-overview-section .profile-list li:last-child {
  border-bottom: 0;
}
.about-overview-section .profile-list li .label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #6b7280;
}
.about-overview-section .profile-list li .value {
  font-size: 0.875rem;
  font-weight: 500;
  color: #111827;
  line-height: 1.6;
  word-break: keep-all;
}
.about-overview-section .keyword-row {
  padding: 24px 32px 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.about-overview-section .keyword-row .keyword {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, rgba(17, 24, 39, 0.08) 80%, transparent);
  background: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  color: #111827;
}
.about-overview-section .note-card {
  margin-top: 24px;
  padding: 32px;
}
.about-overview-section .note-card .note-title {
  margin: 0 0 4px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
}
.about-overview-section .note-card .note-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.9;
  color: #374151;
}

.ceo-message-section.modern-style {
  --section-bg: #ffffff;
  --panel: #ffffff;
  --text: #111827;
  --muted: #4b5563;
  --line: rgba(17, 24, 39, 0.08);
  --brand: #4A7EBB;
  background: radial-gradient(900px 360px at 15% 0%, color-mix(in srgb, var(--brand) 10%, #fff), transparent 60%), radial-gradient(700px 320px at 90% 20%, color-mix(in srgb, #111827 6%, #fff), transparent 65%), var(--section-bg);
  color: var(--text);
}
.ceo-message-section.modern-style .ceo-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 1024px) {
  .ceo-message-section.modern-style .ceo-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.ceo-message-section.modern-style .ceo-visual {
  position: relative;
}
.ceo-message-section.modern-style .ceo-photo {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid color-mix(in srgb, var(--line) 85%, #000);
  background: radial-gradient(900px 420px at 20% 10%, color-mix(in srgb, var(--brand) 10%, #fff), transparent 60%), #f9fafb;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.ceo-message-section.modern-style .ceo-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.03);
  transform: scale(1.02);
}
.ceo-message-section.modern-style .ceo-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.28));
  pointer-events: none;
}
.ceo-message-section.modern-style .ceo-content {
  max-width: 680px;
}
.ceo-message-section.modern-style .ceo-message {
  display: grid;
  gap: 16px;
  margin-bottom: 24px;
}
.ceo-message-section.modern-style .ceo-message p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--muted);
}
.ceo-message-section.modern-style .ceo-points {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: grid;
  gap: 8px;
}
.ceo-message-section.modern-style .ceo-points li {
  border: 1px solid color-mix(in srgb, var(--line) 88%, #000);
  border-radius: 12px;
  background: color-mix(in srgb, #fff 94%, var(--brand));
  padding: 16px 24px;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  align-items: baseline;
}
@media (max-width: 768px) {
  .ceo-message-section.modern-style .ceo-points li {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
.ceo-message-section.modern-style .ceo-points strong {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}
.ceo-message-section.modern-style .ceo-points span {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}
.ceo-message-section.modern-style .ceo-sign {
  padding-top: 24px;
  border-top: 1px solid color-mix(in srgb, var(--line) 92%, #000);
  display: grid;
  gap: 4px;
}
.ceo-message-section.modern-style .ceo-sign__name {
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}
.ceo-message-section.modern-style .ceo-sign__meta {
  font-size: 0.75rem;
  color: color-mix(in srgb, var(--muted) 90%, #000);
  line-height: 1.6;
}

.feature-section {
  --feature-header-gap: 128px;
  --card-min-h: 300px;
  --feature-overlay-1: rgba(10, 24, 40, 0.62);
  --feature-overlay-2: rgba(10, 24, 40, 0.40);
  --feature-overlay-3: rgba(10, 24, 40, 0.18);
  --feature-overlay-4: rgba(10, 24, 40, 0.00);
}
.feature-section .section-header {
  margin-bottom: var(--feature-header-gap);
}
.feature-section .c-card.c-card--media-bg {
  min-height: var(--card-min-h);
  position: relative;
  overflow: hidden;
}
.feature-section .c-card.c-card--media-bg .c-card__media img {
  filter: brightness(0.88) contrast(1.06);
  transform: scale(1.001);
  transition: transform 260ms ease, filter 260ms ease;
  will-change: transform;
}
.feature-section .c-card.c-card--media-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, var(--feature-overlay-1) 0%, var(--feature-overlay-2) 40%, var(--feature-overlay-3) 70%, var(--feature-overlay-4) 100%);
}
.feature-section .c-card.c-card--media-bg:hover .c-card__media img {
  transform: scale(1.06);
  filter: brightness(0.9) contrast(1.06);
}
.feature-section .c-card.c-card--media-bg .c-card__body {
  position: relative;
  z-index: 2;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.38);
}
.feature-section .c-card.c-card--media-bg .c-card__kicker {
  display: inline;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  letter-spacing: 0.06em;
  text-shadow: inherit;
}
.feature-section .c-card.c-card--media-bg .c-card__desc {
  color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 1024px) {
  .feature-section {
    --feature-header-gap: 64px;
    --card-min-h: 240px;
    --feature-overlay-1: rgba(10, 24, 40, 0.56);
    --feature-overlay-2: rgba(10, 24, 40, 0.36);
    --feature-overlay-3: rgba(10, 24, 40, 0.16);
  }
  .feature-section .c-card.c-card--media-bg .c-card__media img {
    filter: brightness(0.9) contrast(1.05);
  }
  .feature-section .c-card.c-card--media-bg:hover .c-card__media img {
    transform: scale(1.05);
  }
}
@media (max-width: 768px) {
  .feature-section {
    --feature-header-gap: 48px;
    --card-min-h: auto;
  }
  .feature-section .c-card.c-card--media-bg:hover .c-card__media img {
    transform: scale(1.03);
  }
}
.location-section .location-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}
.location-section .location-layout.is-map-left {
  grid-template-columns: 1.1fr 0.9fr;
}
@media (max-width: 1024px) {
  .location-section .location-layout {
    grid-template-columns: 1fr !important;
    gap: 48px;
  }
}
.location-section .location-map {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: #f3f4f6;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.location-section .location-map iframe {
  display: block;
  width: 100%;
  height: clamp(300px, 52vw, 520px);
  border: 0;
}
@media (max-width: 1024px) {
  .location-section .location-map iframe {
    height: clamp(280px, 60vw, 380px);
  }
}
.location-section .location-panel {
  padding-top: 2px;
}
@media (max-width: 1024px) {
  .location-section .location-panel {
    padding-top: 0;
  }
}
.location-section .location-items {
  display: grid;
  gap: 24px;
}
@media (max-width: 1024px) {
  .location-section .location-items {
    gap: 16px;
  }
}
.location-section .location-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  border-bottom: 1px solid color-mix(in srgb, rgba(17, 24, 39, 0.08) 80%, transparent);
}
.location-section .location-item:first-child {
  padding-top: 0;
}
.location-section .location-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
@media (max-width: 1024px) {
  .location-section .location-item {
    grid-template-columns: 36px 1fr;
    gap: 8px;
    padding: 16px 0;
  }
}
.location-section .location-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #4A7EBB;
  background: color-mix(in srgb, #4A7EBB 10%, #fff);
  border: 1px solid color-mix(in srgb, #4A7EBB 18%, rgba(17, 24, 39, 0.08));
}
@media (max-width: 1024px) {
  .location-section .location-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }
}
.location-section .location-k {
  margin: 0 0 6px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
}
@media (max-width: 1024px) {
  .location-section .location-k {
    margin-bottom: 4px;
  }
}
.location-section .location-v {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.7;
  word-break: keep-all;
}
@media (max-width: 1024px) {
  .location-section .location-v {
    font-size: 0.875rem;
    line-height: 1.6;
    word-break: break-word;
  }
}
.location-section .location-sub {
  margin: 6px 0 0;
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .location-section .location-sub {
    margin-top: 4px;
    font-size: 0.75rem;
  }
}
.location-section .location-tel {
  color: #111827;
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, #111827 25%, transparent);
}
.location-section .location-tel:hover {
  color: #4A7EBB;
  border-bottom-color: color-mix(in srgb, #4A7EBB 60%, transparent);
}
.location-section .location-actions {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
@media (max-width: 1024px) {
  .location-section .location-actions {
    margin-top: 24px;
    gap: 8px;
  }
  .location-section .location-actions > * {
    flex: 1 1 auto;
  }
}

.biz-primary-section .biz-primary {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 1024px) {
  .biz-primary-section .biz-primary {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.biz-primary-section .biz-primary__bullets {
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.biz-primary-section .biz-primary__bullets li {
  position: relative;
  padding-left: 16px;
  color: #374151;
  line-height: 1.6;
}
.biz-primary-section .biz-primary__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: color-mix(in srgb, #4A7EBB 70%, #fff);
}
.biz-primary-section .biz-primary__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 0 0 32px;
}
.biz-primary-section .biz-primary__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.biz-primary-section .meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, rgba(17, 24, 39, 0.08) 80%, transparent);
  background: #fff;
}
.biz-primary-section .meta-chip .k {
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.biz-primary-section .meta-chip .v {
  font-size: 0.875rem;
  font-weight: 500;
  color: #111827;
}
.biz-primary-section .biz-media-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, rgba(17, 24, 39, 0.08) 80%, transparent);
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.biz-primary-section .biz-media-card .biz-thumb {
  height: 420px;
  background: url("/assets/images/frontend/samples/business1.webp") center/cover no-repeat;
  border: 0;
  box-shadow: none;
}
.biz-primary-section .biz-media-card__bottom {
  padding: 32px;
}
.biz-primary-section .biz-media-card__caption {
  margin: 0 0 24px;
  font-size: 0.875rem;
  color: #4b5563;
}
.biz-primary-section .biz-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 480px) {
  .biz-primary-section .biz-stats {
    grid-template-columns: 1fr;
  }
}
.biz-primary-section .stat {
  padding: 16px;
  border-radius: 12px;
  background: color-mix(in srgb, #4A7EBB 6%, #fff);
  border: 1px solid color-mix(in srgb, #4A7EBB 12%, rgba(17, 24, 39, 0.08));
}
.biz-primary-section .stat .stat__label {
  display: block;
  font-size: 0.75rem;
  color: #4b5563;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.biz-primary-section .stat .stat__value {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
}

.biz-secondary-section {
  /* ======================
     Section Tokens
  ====================== */
  --section-bg: #fff;
  --panel-bg: #fff;
  --card-bg: #fbfcff;
  --border: color-mix(in srgb, rgba(17, 24, 39, 0.08) 92%, #000);
  --text: #111827;
  --muted: #374151;
  --subtle: #6b7280;
  --brand: #4A7EBB;
  background: var(--section-bg);
}
.biz-secondary-section .biz-secondary {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 96px;
  align-items: center;
}
.biz-secondary-section .biz-media-stack {
  position: relative;
  border-radius: 16px;
}
.biz-secondary-section .biz-thumb {
  height: 620px;
  overflow: hidden;
  background: url("/assets/images/frontend/samples/business2.webp") center/cover no-repeat;
  border: 1px solid var(--border);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.1), 0 2px 10px rgba(15, 23, 42, 0.06);
}
.biz-secondary-section .biz-mini-card {
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: min(400px, 92%);
  padding: 48px;
  background: var(--panel-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12), 0 2px 10px rgba(15, 23, 42, 0.06);
}
.biz-secondary-section .biz-mini-card__title {
  margin: 0 0 24px;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}
.biz-secondary-section .biz-mini-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}
.biz-secondary-section .biz-mini-list li {
  position: relative;
  padding-left: 18px;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  letter-spacing: -0.01em;
}
.biz-secondary-section .biz-mini-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--brand) 80%, #fff);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 12%, #fff);
}
.biz-secondary-section .biz-secondary__desc {
  margin: 0 0 48px;
  font-size: 1rem;
  line-height: 1.95;
  color: var(--muted);
  max-width: 62ch;
  letter-spacing: -0.01em;
}
.biz-secondary-section .biz-secondary__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 0 0 48px;
}
.biz-secondary-section .biz-point {
  padding: 32px;
  border-radius: 8px;
  border: 1px solid var(--border);
}
.biz-secondary-section .biz-point__k {
  margin: 0 0 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--subtle);
}
.biz-secondary-section .biz-point__v {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.45;
  letter-spacing: -0.02em;
}
.biz-secondary-section .biz-point__desc {
  margin: 8px 0 0;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}
.biz-secondary-section .biz-secondary__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .biz-secondary-section .biz-secondary {
    grid-template-columns: 1fr;
    gap: 64px;
  }
  .biz-secondary-section .biz-mini-card {
    position: static;
    width: 100%;
    margin-top: 32px;
    right: auto;
    bottom: auto;
  }
}
@media (max-width: 768px) {
  .biz-secondary-section .biz-thumb {
    height: 360px;
  }
}
@media (max-width: 480px) {
  .biz-secondary-section .biz-secondary__grid {
    grid-template-columns: 1fr;
  }
}

.location-info {
  --li-gap: 48px;
  --li-radius: 0px; /* 네모 */
  --li-bg: rgb(27, 78, 138);
  --li-bg-2: rgb(18, 60, 112);
  --li-card-bg: rgba(255, 255, 255, 0.06);
  --li-card-border: rgba(255, 255, 255, 0.16);
  --li-text: rgba(255, 255, 255, 0.92);
  --li-muted: rgba(255, 255, 255, 0.70);
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--li-bg), var(--li-bg-2));
  /* =========================
     Address
  ========================= */
}
.location-info .section-header {
  position: relative;
  z-index: 2;
}
.location-info .section-header .section-title,
.location-info .section-header .section-subtitle,
.location-info .section-header .section-kicker {
  color: var(--li-text);
}
.location-info .section-header .section-subtitle {
  color: var(--li-muted);
}
.location-info .location-info__grid {
  margin-top: 32px;
  display: grid;
  gap: var(--li-gap);
  align-items: stretch;
}
@media (min-width: 1024px) {
  .location-info .location-info__grid {
    grid-template-columns: 5fr 7fr;
  }
}
.location-info .location-info__left,
.location-info .location-info__right {
  min-width: 0;
  display: grid;
  gap: 32px;
  align-content: start;
}
@media (min-width: 1024px) {
  .location-info .location-info__left {
    grid-template-rows: 1fr auto;
  }
  .location-info .location-info__right {
    grid-template-rows: auto 1fr;
  }
  .location-info .li-card--info {
    height: 100%;
  }
  .location-info .li-card--address {
    height: 100%;
  }
  .location-info .location-info__mini {
    height: 100%;
  }
  .location-info .li-card--map {
    height: 100%;
  }
  .location-info .map {
    height: 100%;
    min-height: 0;
  }
}
.location-info .li-card {
  background: var(--li-card-bg);
  color: var(--li-text);
  border: 1px solid var(--li-card-border);
  border-radius: var(--li-radius);
  box-shadow: none;
  backdrop-filter: none;
  overflow: hidden;
  transform: translateY(-10px);
}
.location-info .li-card--info {
  padding: clamp(18px, 2.2vw, 26px);
  display: grid;
  gap: 24px;
}
.location-info .li-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
}
.location-info .li-head {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.location-info .li-ic {
  width: 22px;
  height: 22px;
  color: rgba(255, 255, 255, 0.78);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.location-info .li-title {
  font-weight: 850;
  letter-spacing: -0.02em;
  font-size: 18px;
  line-height: 1.15;
}
.location-info .li-meta {
  justify-self: end;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: -0.01em;
}
.location-info .li-hours {
  margin: 0;
  display: grid;
  gap: 10px;
}
.location-info .li-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 12px;
  align-items: baseline;
}
@media (max-width: 767.98px) {
  .location-info .li-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
.location-info .li-row dt {
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.9);
}
.location-info .li-row dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: -0.01em;
}
.location-info .li-muted {
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
}
@media (max-width: 767.98px) {
  .location-info .li-muted {
    margin-left: 0;
    display: inline-block;
  }
}
.location-info .li-badge {
  margin-left: 8px;
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.01em;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.location-info .li-desc {
  margin: 0;
  color: var(--li-muted);
  font-weight: 650;
  line-height: 1.6;
  letter-spacing: -0.01em;
}
.location-info .li-help {
  margin: 10px 0 0;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.65;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.68);
}
.location-info .location-info__mini {
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) {
  .location-info .location-info__mini {
    grid-template-columns: 1fr 1fr;
  }
}
.location-info .li-card--mini {
  padding: 18px;
  text-decoration: none;
  display: grid;
  gap: 8px;
  transition: background 140ms ease, border-color 140ms ease;
}
.location-info .li-card--mini:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.24);
}
.location-info .mini-kicker {
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
}
.location-info .mini-strong {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.94);
}
.location-info .mini-sub {
  font-size: 13px;
  font-weight: 650;
  color: rgba(255, 255, 255, 0.7);
}
.location-info .li-card--address {
  padding: 18px;
}
.location-info .addr {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: start;
}
@media (max-width: 767.98px) {
  .location-info .addr {
    grid-template-columns: 1fr;
  }
}
.location-info .addr__kicker {
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.location-info .addr__title {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.94);
}
.location-info .addr__sub {
  font-size: 13px;
  font-weight: 650;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
}
.location-info .addr__btn {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 14px;
  border-radius: 0;
  text-decoration: none;
  font-weight: 850;
  letter-spacing: -0.01em;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.16);
}
@media (max-width: 767.98px) {
  .location-info .addr__btn {
    justify-self: start;
  }
}
.location-info .addr__btn:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.24);
}
.location-info .li-card--map {
  padding: 0;
}
.location-info .map {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0;
  min-height: 360px;
}
@media (min-width: 1024px) {
  .location-info .map {
    min-height: 520px;
  }
}
@media (max-width: 767.98px) {
  .location-info .map {
    min-height: 320px;
  }
}
.location-info .map__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.95) contrast(0.95);
}
@media (max-width: 767.98px) {
  .location-info {
    padding-top: 48px;
  }
  .location-info .li-card {
    transform: translateY(-6px);
  }
}
