@charset "utf-8";
@import url(normalize.css);
@font-face { font-family: 'Pretendard'; font-weight: 100; font-display: swap; src: local('Pretendard Thin'), url('../fonts/Pretendard-Thin.woff2') format('woff2'), url('../fonts/Pretendard-Thin.woff') format('woff'); }
@font-face { font-family: 'Pretendard'; font-weight: 200; font-display: swap; src: local('Pretendard ExtraLight'), url('../fonts/Pretendard-ExtraLight.woff2') format('woff2'), url('../fonts/Pretendard-ExtraLight.woff') format('woff'); }
@font-face { font-family: 'Pretendard'; font-weight: 300; font-display: swap; src: local('Pretendard Light'), url('../fonts/Pretendard-Light.woff2') format('woff2'), url('../fonts/Pretendard-Light.woff') format('woff'); }
@font-face { font-family: 'Pretendard'; font-weight: 400; font-display: swap; src: local('Pretendard Regular'), url('../fonts/Pretendard-Regular.woff2') format('woff2'), url('../fonts/Pretendard-Regular.woff') format('woff'); }
@font-face { font-family: 'Pretendard'; font-weight: 500; font-display: swap; src: local('Pretendard Medium'), url('../fonts/Pretendard-Medium.woff2') format('woff2'), url('../fonts/Pretendard-Medium.woff') format('woff'); }
@font-face { font-family: 'Pretendard'; font-weight: 600; font-display: swap; src: local('Pretendard SemiBold'), url('../fonts/Pretendard-SemiBold.woff2') format('woff2'), url('../fonts/Pretendard-SemiBold.woff') format('woff'); }
@font-face { font-family: 'Pretendard'; font-weight: 700; font-display: swap; src: local('Pretendard Bold'), url('../fonts/Pretendard-Bold.woff2') format('woff2'), url('../fonts/Pretendard-Bold.woff') format('woff'); }
@font-face { font-family: 'Pretendard'; font-weight: 800; font-display: swap; src: local('Pretendard ExtraBold'), url('../fonts/Pretendard-ExtraBold.woff2') format('woff2'), url('../fonts/Pretendard-ExtraBold.woff') format('woff'); }
@font-face { font-family: 'Pretendard'; font-weight: 900; font-display: swap; src: local('Pretendard Black'), url('../fonts/Pretendard-Black.woff2') format('woff2'), url('../fonts/Pretendard-Black.woff') format('woff'); }

/* 디자인 토큰 */
:root {
  /* 폰트 */
  --font-family: 'Pretendard', Arial, sans-serif;
  --title-font-family: 'Pretendard', Arial, sans-serif;
  --letter-spacing: -0.025em;

  /* 폰트 크기 */
  --fs-42: 42px;
  --fs-32: 32px;
  --fs-24: 24px;
  --fs-20: 20px;
  --fs-18: 18px;
  --fs-16: 16px;
  --fs-14: 14px;

  /* 의미형 폰트 크기 */
  --font-size-page-title: var(--fs-42);
  --font-size-section-heading: var(--fs-32);
  --font-size-ui: var(--fs-18);
  --font-size-body: var(--fs-16);

  /* 하위 호환 폰트 크기 */
  --font-size: var(--font-size-body);
  --font-size-title: var(--font-size-page-title);
  --font-size-section: var(--font-size-section-heading);
  --font-size-sm: var(--font-size-ui);
  --font-size-xs: var(--font-size-body);
  --font-size-lg: var(--fs-24);

  /* 레이아웃 */
  --inner-width: 100%;
  --inner-max-width: 1400px;
  --inner-padding-x: 24px;

  /* GNB */
  --gnb-scale: calc(min(100vw, var(--inner-max-width)) / var(--inner-max-width));
  --header-height: 102px;
  --header-pad-left: 16px;
  --header-pad-right: var(--inner-padding-x);
  --gnb-header-base-width: calc(var(--inner-max-width) - (var(--header-pad-left) + var(--header-pad-right)));
  --gnb-header-current-width: calc(min(100vw, var(--inner-max-width)) - (var(--header-pad-left) + var(--header-pad-right)));
  --gnb-header-scale: calc(var(--gnb-header-current-width) / var(--gnb-header-base-width));
  --gnb-logo-area-width: clamp(220px, calc(364px * var(--gnb-header-scale)), 364px);
  --gnb-nav-right-gap: clamp(40px, 4vw, 60px);

  /* 색상 */
  --primary-color: #005891;
  --light-color: #fff;
  --dark-color: #333;
  --font-color: #000000;
  --gray-color: #f3f6f9;
  --gray-100: #f5f5f5;
  --gray-200: #e8e8e8;
  --footer-bg: #1a2b3c;
  --footer-text: #cccccc;
  --font-sec-color: #333;
  --font-muted: #999999;
  --background-color: #fff;

  /* 효과 */
  --shadow-float: 0 4px 14px rgba(0, 0, 0, 0.12);
  --radius-sm: 0;
}

/* 기본 요소 */
html { box-sizing: border-box; -webkit-text-size-adjust: 100%; scrollbar-gutter: stable; }
*, *::before, *::after { box-sizing: inherit; }
a { color: inherit; text-decoration: none; }
body { margin: 0; font-family: var(--font-family); color: var(--font-color); font-size: var(--font-size); line-height: 1.5; font-weight: 400; letter-spacing: var(--letter-spacing); min-width: 320px; background-color: var(--background-color); word-break: keep-all; overflow-wrap: break-word; }
button { font-family: inherit; padding: 0; border: 0; background: none; cursor: pointer; }
img { max-width: 100%; height: auto; vertical-align: top; }
map area { cursor: pointer; }
b, strong { font-weight: 700; }

/* 레이아웃 */
.inner { width: var(--inner-width); max-width: var(--inner-max-width); margin-left: auto; margin-right: auto; padding-left: var(--inner-padding-x); padding-right: var(--inner-padding-x); }

/* 타이포 */
.page-title { font-family: var(--title-font-family); font-size: var(--font-size-page-title); font-weight: 700; line-height: 1.25; color: var(--font-color); margin: 0 0 23px; }
.section-title { font-size: var(--font-size-section-heading); font-weight: 700; line-height: 1.3; margin: 0 0 0.75rem; color: var(--font-color); }

/* 브레드크럼 */
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 0.35em 0.5em; margin: 0; padding: 0; list-style: none; font-size: var(--fs-16); color: var(--light-color); }
.breadcrumb a { color: inherit; opacity: 0.95; }
.breadcrumb__sep { opacity: 0.7; user-select: none; }

/* 헤더 */
.site-header { position: relative; z-index: 50; background-color: var(--light-color); border-bottom: none; }
.site-header::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background-color: #999999; z-index: 70; pointer-events: none; }
.site-header__bar { display: flex; align-items: center; justify-content: space-between; gap: 0; min-height: var(--header-height); padding-left: var(--header-pad-left); padding-right: var(--header-pad-right); }
.site-header__logo { flex: 0 0 var(--gnb-logo-area-width); }
.site-header__logo-link { display: inline-flex; align-items: center; min-height: 48px; font-weight: 800; font-size: var(--font-size-ui); color: var(--font-color); }
.site-header__logo-img { display: block; height: 45px; width: auto; }
.site-header__nav { flex: 1; display: flex; justify-content: flex-start; min-width: 0; padding-right: var(--gnb-nav-right-gap); overflow: visible; }
.site-header__menu { display: flex; flex-wrap: nowrap; justify-content: flex-start; gap: 8px clamp(24px, calc(60px * var(--gnb-scale)), 60px); margin: 0; padding: 0; list-style: none; }
.site-header__menu-item { position: relative; }
.site-header__menu a, .site-header__menu-link { display: block; padding: 42px 0; font-size: var(--font-size-ui); font-weight: 700; color: var(--font-color); line-height: 1; white-space: nowrap; position: relative; transition: color 0.2s ease; }
.site-header__menu a.is-active, .site-header__menu a[aria-current='page'], .site-header__menu-link.is-active, .site-header__menu-link[aria-current='page'] { font-weight: 700; }
.site-header__menu a.is-active::after, .site-header__menu a[aria-current='page']::after, .site-header__menu-link.is-active::after, .site-header__menu-link[aria-current='page']::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 5px; background-color: #005891; border-radius: 0; opacity: 1; transition: opacity 0.3s ease 0.35s; }
.site-header.mega-open .site-header__menu a.is-active::after, .site-header.mega-open .site-header__menu a[aria-current='page']::after, .site-header.mega-open .site-header__menu-link.is-active::after, .site-header.mega-open .site-header__menu-link[aria-current='page']::after { opacity: 0; transition: opacity 0.18s ease 0s; }
.site-header__menu-item:hover .site-header__menu-link, .site-header__menu-item:focus-within .site-header__menu-link { color: var(--primary-color); }
.site-header__menu-link::before { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 5px; background-color: var(--primary-color); border-radius: 0; transform: scaleX(0); transform-origin: center; transition: transform 0.25s ease; pointer-events: none; }
.site-header__menu-item:hover .site-header__menu-link::before, .site-header__menu-item:focus-within .site-header__menu-link::before { transform: scaleX(1); }
.site-header__utils { display: flex; flex-shrink: 0; align-items: center; gap: 20px; }
.site-header__lang { display: flex; align-items: center; gap: 10px; font-size: var(--fs-16); font-weight: 500; color: var(--font-muted); }
.site-header__lang a { color: #999999; }
.site-header__lang a.is-current { font-weight: 700; color: var(--font-color); }
.site-header__lang a.is-current[lang='ko'] { color: #000000; }
.site-header__drawer-btn { display: inline-flex; align-items: center; justify-content: center; height: 44px; color: #005891; border-radius: var(--radius-sm); }
.site-header__drawer-btn:focus-visible { background-color: var(--gray-100); }

/* GNB 메가 메뉴 */
.site-header__mega { position: absolute; left: 0; right: 0; top: 100%; z-index: 60; margin: 0; padding: 0; min-height: 316px; background-color: #ffffff; border-bottom: 1px solid #cccccc; opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-8px); transition: opacity 0.5s ease, transform 0.5s ease, visibility 0s linear 0.5s; }
.site-header.mega-open .site-header__mega { opacity: 1; visibility: visible; transform: translateY(0); transition: opacity 0.28s ease, transform 0.28s ease, visibility 0s linear 0s; }
.site-header.mega-open .site-header__mega-panel:not([hidden]) { pointer-events: auto; }
.site-header__mega-inner { position: relative; padding-top: 0; padding-bottom: 32px; min-height: inherit; }
.site-header__mega-panel { position: absolute; top: 0; left: var(--mega-panel-left, 0px); margin: 0; padding-top: 28px; }
.site-header__mega-panel:not([hidden]) { animation: site-header-mega-panel-in 0.22s cubic-bezier(0.33, 1, 0.68, 1) both; }
@keyframes site-header-mega-panel-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.site-header__mega-list { margin: 0; padding: 0; list-style: none; }
.site-header__mega-list li + li { margin-top: 10px; }
.site-header__mega-list a { display: inline-block; padding: 2px 0; font-size: 18px; font-weight: 500; line-height: 1.45; color: #000000; text-decoration: none; white-space: nowrap; transition: color 0.2s ease, font-weight 0.2s ease; }
.site-header__mega-list a:hover, .site-header__mega-list a:focus-visible { color: #005891; font-weight: 700; text-decoration: underline; text-underline-offset: 4px; }

/* 전체 메뉴 드로어 */
.site-drawer { position: fixed; inset: 0; z-index: 1000; visibility: hidden; pointer-events: none; }
.site-drawer.is-open { visibility: visible; pointer-events: auto; }
.site-drawer__backdrop { position: absolute; inset: 0; z-index: 1; background-color: rgba(0, 0, 0, 0.55); opacity: 0; transition: opacity 0.3s ease; }
.site-drawer.is-open .site-drawer__backdrop { opacity: 1; }
.site-drawer__panel { position: relative; z-index: 2; width: 100%; background-color: #005891; transform: translateY(-24px); opacity: 0; transition: transform 0.4s cubic-bezier(0.33, 1, 0.68, 1), opacity 0.32s ease; }
.site-drawer.is-open .site-drawer__panel { transform: translateY(0); opacity: 1; }
.site-drawer__bar { background-color: #005891; border-bottom: 1px solid #999999; }
.site-drawer__bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 0; min-height: var(--header-height); padding-left: var(--header-pad-left); padding-right: var(--header-pad-right); }
.site-drawer__bar-inner .site-drawer__logo { flex: 0 0 var(--gnb-logo-area-width); }
.site-drawer__logo { display: inline-flex; align-items: center; }
.site-drawer__logo-link { display: inline-flex; align-items: center; }
.site-drawer__logo-img { display: block; height: 44px; width: auto; }
.site-drawer__utils { display: none; }
.site-drawer__close { display: inline-flex; align-items: center; justify-content: end; width: 44px; height: 44px; padding: 0; background: transparent; border: 0; border-radius: 4px; color: #ffffff; cursor: pointer; transition: background-color 0.2s ease; }
.site-drawer__close:focus-visible { outline: 2px solid #ffffff; outline-offset: 2px; }
.site-drawer__body { height: 870px; background-color: #005891; background-image: url('../images/common/all_menu_bg.png'); background-repeat: no-repeat; background-position: center; background-size: cover; }
.site-drawer__inner { height: 100%; display: flex; align-items: flex-start; padding-left: max( var(--header-pad-left), calc( var( --site-drawer-menu-base, calc(var(--header-pad-left) + var(--gnb-logo-area-width)) ) + (146px * var(--gnb-header-scale) * var(--gnb-header-scale)) ) ); }
.site-drawer__nav { width: 100%; padding-top: 96px; padding-bottom: 80px; }
.site-drawer__menu { display: grid; grid-template-columns: repeat(3, 360px); column-gap: 0; row-gap: 80px; margin: 0; padding: 0; list-style: none; }
.site-drawer__col { margin: 0; padding: 0; list-style: none; }
.site-drawer__cat { margin: 0 0 22px; font-size: 24px; font-weight: 700; line-height: 1.2; color: #ffffff; }
.site-drawer__cat-btn { display: block; width: 100%; font: inherit; font-weight: inherit; line-height: inherit; color: inherit; text-align: left; }
.site-drawer__sublist { margin: 0; padding: 0; list-style: none; }
.site-drawer__sublist li + li { margin-top: 14px; }
.site-drawer__sublist a { display: inline-block; font-size: 18px; font-weight: 300; line-height: 1.4; color: #ffffff; text-decoration: none; transition: font-weight 0.2s ease; }
.site-drawer__sublist a:hover, .site-drawer__sublist a:focus-visible { color: #ffffff; font-weight: 700; text-decoration: underline; text-underline-offset: 4px; }

/* 서브 히어로 */
.sub-hero { position: relative; display: flex; align-items: center; justify-content: center; min-height: 281px; padding: 56px 16px; text-align: center; color: var(--light-color); background-size: cover; background-position: center; }
.sub-hero__inner { position: relative; z-index: 1; width: 100%; max-width: var(--inner-max-width); margin: 0 auto; padding-left: var(--inner-padding-x); padding-right: var(--inner-padding-x); }
.sub-hero__title { margin: 0 0 14px; font-size: 48px; font-weight: 700; line-height: 1.2; }
.sub-hero .breadcrumb { justify-content: center; font-size: var(--fs-14); color: rgba(255, 255, 255, 0.92); }

/* 푸터 */
.site-footer { height: 170px; color: var(--footer-text); background-color: var(--footer-bg); font-size: var(--fs-14); line-height: 1.55; }
.site-footer a:focus-visible { color: var(--light-color); }
.site-footer__inner { display: flex; align-items: flex-start; height: 100%; padding-top: 32px; gap: 109px; }
.site-footer__brand { flex: 0 0 auto; line-height: 1; margin-top: 3px; }
.site-footer__brand-img { display: block; width: auto; height: auto; max-width: 100%; }
.site-footer__info { flex: 1 1 auto; min-width: 0; }
.site-footer__links { display: flex; flex-wrap: wrap; align-items: center; gap: 0 15px; margin: 0 0 11px; padding: 0; list-style: none; }
.site-footer__links a { color: var(--light-color); }
.site-footer__links .is-em { font-weight: 700; }
.site-footer__links-sep { color: #999999; font-weight: 300; user-select: none; }
.site-footer__addr { margin: 0 0 3px; color: var(--footer-text); }
.site-footer__copy { margin: 0; font-size: var(--fs-14); color: var(--footer-text); }
.site-footer__family { flex: 0 0 auto; margin-top: 3px; }
.site-footer__family-trigger { box-sizing: border-box; width: 240px; height: 46px; padding: 0 36px 0 16px; font-family: inherit; font-size: var(--fs-14); color: var(--light-color); text-align: left; cursor: pointer; background-color: #364855; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='%23ffffff'><path d='M0 0h10L5 6z'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; border: 0; border-radius: 0; }

/* 패밀리 사이트 드롭다운 */
.family-dropdown { position: relative; z-index: 200; }
.family-dropdown__panel { position: absolute; left: 0; bottom: calc(100% + 8px); width: 240px; max-height: 360px; overflow-y: auto; padding: 14px 16px; background-color: var(--light-color); color: var(--font-color); border: 1px solid #cccccc; box-shadow: 0 -4px 14px rgba(0, 0, 0, 0.12); z-index: 200; }
.family-dropdown__panel[hidden] { display: none; }
.family-dropdown__panel { scrollbar-width: thin; scrollbar-color: #b8b8b8 transparent; }
.family-dropdown__panel::-webkit-scrollbar { width: 8px; }
.family-dropdown__panel::-webkit-scrollbar-thumb { background-color: #b8b8b8; border-radius: 4px; }
.family-dropdown__panel::-webkit-scrollbar-track { background-color: transparent; }
.family-dropdown__list { margin: 0; padding: 0; list-style: none; }
.family-dropdown__item--holding { margin-bottom: 14px; }
.family-dropdown__item--holding > a { display: block; font-size: var(--fs-14); font-weight: 700; color: #000000; text-decoration: none; }
.family-dropdown__group { margin-top: 14px; }
.family-dropdown__group:first-child { margin-top: 0; }
.family-dropdown__title { margin: 0 0 8px; font-size: var(--fs-14); font-weight: 700; color: var(--primary-color); }
.family-dropdown__sub { margin: 0; padding: 0; list-style: none; }
.family-dropdown__sub > li { margin-bottom: 6px; }
.family-dropdown__sub > li:last-child { margin-bottom: 0; }
.family-dropdown__sub a { display: block; font-size: var(--fs-14); font-weight: 400; color: #666666; text-decoration: none; line-height: 1.5; }
.site-footer__family-trigger[aria-expanded="true"] { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='%23ffffff'><path d='M0 6h10L5 0z'/></svg>"); }

/* 플로팅 탑 버튼 */
.fab-top { position: fixed; right: max(var(--inner-padding-x), calc(50% - var(--inner-max-width) / 2 + var(--inner-padding-x))); bottom: var(--fab-bottom, 32px); z-index: 100; display: flex; align-items: center; justify-content: center; width: 50px; height: 50px; color: var(--light-color); background-color: #1c2b36; border-radius: 0; box-shadow: var(--shadow-float); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.25s ease, visibility 0.25s ease, background-color 0.2s, transform 0.2s; }
.fab-top__icon { display: block; }
.fab-top.is-visible { opacity: 1; visibility: visible; pointer-events: auto; }
.fab-top:active { transform: scale(0.96); }

/* 접근성 유틸 */
caption { width: 1px; height: 1px; margin: -1px; position: absolute; border: none; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }
.hidden { width: 1px; height: 1px; margin: -1px; position: absolute; border: none; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }
.skip_nav a { position: absolute; top: -100px; width: 100%; background-color: #000; color: #fff; transition: top 0.3s; height: 30px; line-height: 30px; z-index: 9999; text-align: center; }
.skip_nav a:focus { top: 0; }

/* 미디어 쿼리 */
@media (prefers-reduced-motion: reduce) {
  .site-header__mega-panel:not([hidden]) { animation: none; }
}
@media (max-width: 1024px) {
  .site-drawer__menu { grid-template-columns: repeat(3, 1fr); column-gap: 30px; row-gap: 60px; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .site-header { min-width: var(--inner-max-width); }
  .site-header__bar { justify-content: flex-start; }
  .site-header__nav { flex: 0 0 auto; padding-right: 50px; overflow: visible; }
  .sub-hero { min-width: var(--inner-max-width); }
}
@media (max-width: 768px) { 
  .site-header__bar { min-height: 72px; }
  .site-header__drawer-btn svg { width: 30px; height: 30px; }
  .site-header__drawer-btn svg path { stroke-width: 2; }
  .site-header__mega { display: none !important; }
  .site-drawer__panel { min-height: 100vh; background-color: #ffffff; transform: none; opacity: 1; transition: none; }
  .site-header__bar { min-height: 72px; padding-left: 30px; padding-right: 23px; }
  .site-drawer__bar { position: relative; height: 72px; background-color: #ffffff; border-bottom: 1px solid #005891; box-sizing: border-box; }
  .site-drawer__bar-inner { height: 100%; min-height: 0; padding-left: 30px; padding-right: 23px; }
  .site-header__logo, .site-drawer__bar-inner .site-drawer__logo { flex: 0 0 auto; }
  .site-header__logo-link, .site-drawer__logo-link { min-height: 48px; }
  .site-header__logo-img { content: url('../images/common/logo_mo.png'); height: 38px; }
  .site-drawer__logo-img { content: url('../images/common/logo_mo.png'); height: 38px; transform: translateY(-1px); } 
  .site-drawer__utils { display: flex; align-items: center; margin-left: auto; margin-right: 2px; }
  .site-drawer__lang { display: flex; align-items: center; gap: 10px; font-size: var(--fs-16); font-weight: 500; color: #999999; }
  .site-drawer__lang a { color: #999999; }
  .site-drawer__lang a.is-current { font-weight: 700; color: #000000; }
  .site-drawer__close { width: 48px; height: 48px; color: #005891; }
  .site-drawer__close svg { width: 32px; height: 32px; }
  .site-drawer__close svg path { stroke-width: 1.6; }
  .site-drawer__body { height: auto; min-height: 100vh; background-size: cover; }
  .site-drawer__body { background-image: none; background-color: #ffffff; }
  .site-drawer__inner { display: block; padding-left: 0; padding-right: 0; }
  .site-drawer__nav { padding-top: 0; padding-bottom: 0; }
  .site-drawer__menu { display: block; margin: 0; padding: 0; }
  .site-drawer__col { border-bottom: 1px solid #cccccc; }
  .site-drawer__cat { margin: 0; font-size: 20px; font-weight: 700; line-height: 1.2; color: #000000; text-align: center; }
  .site-drawer__cat-btn { min-height: 76px; padding: 0 24px; color: inherit; text-align: center; transition: none; -webkit-tap-highlight-color: transparent; }
  .site-drawer__col.is-open .site-drawer__cat-btn { color: #ffffff; background-color: #005891; }
  .site-drawer__sublist { display: block; max-height: 0; overflow: hidden; padding: 0 24px; background-color: #eeeeee; text-align: center; opacity: 0; visibility: hidden; transition: max-height 0.28s ease, padding 0.28s ease, opacity 0.2s ease, visibility 0s linear 0.28s; }
  .site-drawer__col.is-open .site-drawer__sublist { max-height: 520px; padding: 50px 24px 60px; opacity: 1; visibility: visible; transition: max-height 0.32s ease, padding 0.32s ease, opacity 0.2s ease; }
  .site-drawer:not(.is-open) .site-drawer__sublist { max-height: 0; padding-top: 0; padding-bottom: 0; opacity: 0; visibility: hidden; }
  .site-drawer__sublist li + li { margin-top: 35px; }
  .site-drawer__sublist a { font-size: 20px; font-weight: 400; line-height: 1.25; color: #333333; }
  .site-drawer__sublist a:hover, .site-drawer__sublist a:focus-visible { color: #005891; font-weight: 700; }
  .site-header__nav { display: none; }
  .site-footer { height: auto; padding: 43px 0 55px; text-align: center; }
  .site-footer__inner { flex-direction: column; align-items: center; padding-top: 0; gap: 26px; }
  .site-footer__brand { display: none; }
  .site-footer__info { width: 100%; }
  .site-footer__links { justify-content: center; margin-bottom: 23px; }
  .site-footer__addr { margin-bottom: 4px; }
  .site-footer__family { width: 240px; margin-top: 0; }
  .site-footer__family-trigger { width: 240px; }
  .family-dropdown__panel { width: 240px; text-align: left; }
}
