@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable-dynamic-subset.min.css");

html { scroll-behavior: smooth; }

:root {
  --red: #BA0C2F;
  --black: #000000;
  --gray-bg: #f5f5f5;
  --text: #222;
  --muted: #777;
}

* {
  box-sizing: border-box;
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif !important;
}

body {
  margin: 0;
  color: var(--text);
  line-height: 1.6;
  /* 텍스트 선택 및 복사 방지 */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

img {
  /* 이미지 드래그 방지 */
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
}

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

/* ===== Header ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: #fff; box-shadow: 0 1px 0 rgba(0,0,0,.06);
  transition: background .25s, box-shadow .25s, padding .25s;
}
.header-inner {
  display: flex; flex-direction: row; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 64px; max-width: none; position: relative;
}
.header-brand { display: flex; align-items: center; }

/* Logo toggle: Default scrolled header shows dark logos on left, hides white hero logos */
.logo-white { display: none !important; }
.logo-dark { display: flex !important; align-items: center; gap: 20px; }

.scrolled-brand { display: flex; align-items: center; gap: 20px; }
.scrolled-logo-1 { width: 174px; height: auto; aspect-ratio: 1024 / 245; display: block; }
.scrolled-logo-2 { width: 132px; height: auto; aspect-ratio: 380 / 120; display: block; }

.main-nav ul { list-style: none; display: flex; gap: clamp(50px, 5vw, 90px); margin: 0; padding: 0; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a { display: block; font-size: 16px; color: #282828; padding: 10px 0; }

/* Base Dropdown Setup (Fixes the horizontal overlap) */
.main-nav .dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  display: block; /* Overrides the display: flex from .main-nav ul */
  z-index: 10; text-align: center;
}

/* 1. Transparent Header (At top) -> Individual Dropdowns */
.site-header:not(.is-scrolled) .main-nav .dropdown {
  display: none; /* Hidden by default */
  background: #fff; min-width: 190px; box-shadow: 0 16px 32px rgba(0,0,0,.16); padding: 0;
  opacity: 1; visibility: visible; pointer-events: auto;
}
.site-header:not(.is-scrolled) .main-nav li:hover .dropdown { display: block; }
.site-header:not(.is-scrolled) .main-nav .dropdown a {
  display: block; padding: 12px 22px; font-size: 16px; color: #282828; background: #fff; white-space: nowrap; transition: none; font-weight: normal;
}
.site-header:not(.is-scrolled) .main-nav .dropdown a:hover { background: #bd0000; color: #fff; }
.site-header:not(.is-scrolled) .mega-menu-bg { display: none; }

/* 2. Scrolled Header (Not transparent) -> Mega Menu */
.site-header.is-scrolled .main-nav .dropdown {
  background: transparent; min-width: 150px; box-shadow: none; padding: 20px 0 30px;
  opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s; pointer-events: none;
}
.site-header.mega-active.is-scrolled .main-nav .dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
}
.site-header.is-scrolled .main-nav .dropdown a {
  display: block; padding: 8px 10px; font-size: 15px; color: #444; background: transparent; white-space: nowrap; transition: color 0.2s;
}
.site-header.is-scrolled .main-nav .dropdown a:hover {
  background: transparent; color: var(--red); font-weight: 600;
}

/* Mega Menu Background */
.mega-menu-bg {
  position: absolute; top: 100%; left: 0; width: 100%; height: 0;
  background: #fff; border-bottom: 0px solid var(--red);
  box-shadow: 0 16px 32px rgba(0,0,0,0.06);
  transition: height 0.3s ease, border-width 0s 0.3s;
  z-index: 5; pointer-events: none; overflow: hidden;
}
.site-header.mega-active:not(.header-transparent) .mega-menu-bg {
  border-bottom: 2px solid var(--red); pointer-events: auto;
  transition: height 0.3s ease, border-width 0s 0s;
}

/* ===== Mobile hamburger + slide-in accordion menu ===== */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 30px; height: 30px; padding: 0; background: none; border: none; cursor: pointer;
}
.nav-toggle span { display: block; width: 100%; height: 2px; background: #282828; }
.site-header.header-transparent .nav-toggle span { background: #fff; }

.mobile-nav-overlay {
  position: fixed; inset: 0; z-index: 400;
  pointer-events: none;
  visibility: hidden;
  transition: visibility .35s ease;
}
.mobile-nav-overlay.open {
  pointer-events: auto;
  visibility: visible;
}
.mobile-nav-backdrop {
  position: absolute; inset: 0; background: rgba(0,0,0,.5);
  opacity: 0;
  transition: opacity .35s ease;
}
.mobile-nav-overlay.open .mobile-nav-backdrop {
  opacity: 1;
}
.mobile-nav-panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: 78%; max-width: 340px;
  background: #fff;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-nav-overlay.open .mobile-nav-panel {
  transform: translateX(0);
}
.mobile-nav-body {
  height: 100%; overflow-y: auto; padding: 20px 0 40px;
}
.mobile-nav-close {
  position: absolute; top: 20px; right: calc(100% + 30px);
  width: 52px; height: 52px; padding: 0; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.mobile-nav-close svg {
  width: 46px; height: 46px; stroke: #FFFFFF; stroke-width: 1.25; transition: transform .25s ease;
}
.mobile-nav-close:hover svg {
  transform: rotate(90deg);
}
.mobile-nav-list { list-style: none; margin: 0; padding: 0; }
.mobile-nav-item { border-bottom: 1px solid #eee; }
.mobile-nav-item-toggle {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 16px 22px; background: none; border: none; font-size: 16px; color: #282828; cursor: pointer; text-align: left;
}
.mobile-nav-item-toggle svg { width: 14px; height: 14px; transition: transform .2s; }
.mobile-nav-item.open .mobile-nav-item-toggle svg { transform: rotate(180deg); }
.mobile-nav-sub { list-style: none; margin: 0; padding: 0; max-height: 0; overflow: hidden; transition: max-height .25s ease; background: #fafafa; }
.mobile-nav-item.open .mobile-nav-sub { max-height: 500px; }
.mobile-nav-sub a { display: block; padding: 12px 22px 12px 34px; font-size: 15px; color: #525252; }
.mobile-nav-sub a:hover { color: #bd0000; }

/* Transparent overlay state: shown on top of the homepage hero video before scrolling */
.site-header.header-transparent { background: transparent; box-shadow: none; }
.site-header.header-transparent .header-inner { flex-direction: column; padding: 26px 40px 18px; height: auto; position: relative; }
.site-header.header-transparent .header-brand { margin-bottom: 18px; justify-content: center; }

.site-header.header-transparent .logo-white { display: block !important; }
.site-header.header-transparent .logo-dark { display: none !important; }

.site-header.header-transparent .sub-logo-img { position: absolute; left: 40px; top: 40px; transform: translateY(-50%); width: 174px; height: auto; aspect-ratio: 1024 / 245; display: block !important; }
.site-header.header-transparent .logo-img { width: 220px; height: auto; aspect-ratio: 380 / 120; display: block; }
.site-header.header-transparent .main-nav ul { justify-content: center; }
.site-header.header-transparent .main-nav > ul > li > a { color: #fff; }

body.has-fixed-header { padding-top: 64px; }

.page-title-bar {
  display: block;
  height: 46px;
  border-bottom: 1px solid #000;
  font-size: 16px;
  color: #000;
}
.page-title-inner {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 40px;
}

/* ===== Hero ===== */
.hero {
  background: #111 url('') center/cover;
  color: #fff;
  padding: 120px 40px;
}
.hero h1 { font-size: 40px; margin: 0 0 16px; }
.hero p { max-width: 560px; color: #ddd; }
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 13px 26px;
  background: #373737;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 2px;
  transition: background .2s;
}
.btn:hover { background: #C51F25; }
.btn.primary { background: #C51F25; color: #fff; }

section { padding: 64px 40px; max-width: 1100px; margin: 0 auto; scroll-margin-top: 90px; }
.eyebrow { color: #c51f25; font-size: 16px; font-weight: 400; letter-spacing: 0; text-align: center; display: block; }
.section-title { text-align: center; font-size: 36px; color: #282828; margin: 10px 0 40px; font-weight: 400; line-height: 1.3; }
.section-title.on-dark { color: #fff; }

/* ===== Subpage Text Options ===== */
.sub-category { font-size: 16px; color: #c51f25; font-weight: 400; display: block; margin-bottom: 12px; }
.sub-title-main { font-size: 36px; color: #282828; margin: 10px 0 20px; font-weight: 400; }
.sub-title-mid { font-size: 24px; color: #282828; margin: 10px 0; font-weight: 400; }
.sub-title-aux { font-size: 20px; color: #525252; font-weight: bold; margin-bottom: 16px; }
.sub-desc { font-size: 16px; color: #525252; line-height: 1.6; word-break: keep-all; }

/* ===== Board (list) ===== */
.board-title { font-size: 26px; text-align: center; margin: 40px 0; }
.board-list { list-style: none; padding: 0; margin: 0 auto; max-width: 900px; }
.board-list li {
  border-bottom: 1px solid #eee;
  padding: 18px 4px;
}
.board-list li a { font-size: 16px; font-weight: 500; }
.board-list .meta { color: var(--muted); font-size: 13px; margin-top: 4px; }
.board-empty { text-align: center; color: var(--muted); padding: 60px 0; }

.board-detail { max-width: 900px; margin: 0 auto; padding: 40px 0; }
.board-detail h2 { font-size: 24px; }
.board-detail .meta { color: var(--muted); font-size: 13px; margin-bottom: 24px; border-bottom: 1px solid #eee; padding-bottom: 16px; }
.board-detail .content img { max-width: 100%; }
.post-attachments { margin-top: 24px; padding-top: 16px; border-top: 1px solid #eee; }
.post-attachments ul { list-style: none; padding: 0; margin: 8px 0 0; }
.post-attachments li { margin-bottom: 6px; }
.post-attachments a { color: var(--red); text-decoration: underline; font-size: 14px; }
.back-link { display: inline-block; margin-top: 32px; color: var(--red); font-weight: 600; }

/* ===== Contact form ===== */
.contact-form { max-width: 700px; margin: 0 auto; }
.contact-form label { display: block; font-weight: 600; margin: 20px 0 8px; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 2px; font-size: 14px;
}
.contact-form textarea { min-height: 140px; }
.contact-form .consent { display: flex; align-items: flex-start; gap: 8px; margin-top: 20px; font-size: 13px; color: var(--muted); }
.contact-form button {
  margin-top: 28px; padding: 14px 40px; background: var(--black); color: #fff; border: none; border-radius: 2px; font-size: 15px; cursor: pointer;
}
.contact-form button:hover { background: var(--red); }
.form-msg { margin-top: 16px; font-size: 14px; }

/* ===== Ethics / Whistleblowing (esg/report.html) ===== */
.ethics-hero { background: #141414; color: #fff; padding: 70px 40px 50px; text-align: center; }
.ethics-hero h1 { font-size: 32px; line-height: 1.4; margin: 10px 0 22px; }
.ethics-hero .ethics-sub { font-size: 16px; font-weight: 700; margin: 0 0 26px; }
.ethics-hero .ethics-desc { font-size: 14px; color: #ccc; line-height: 1.9; max-width: 720px; margin: 0 auto; }

.ethics-hero-image { height: 380px; background: linear-gradient(135deg, #3d3d3d, #0c0c0c); }

.ethics-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.ethics-card { position: relative; height: 230px; overflow: hidden; background: linear-gradient(160deg, #4a4a4a, #161616); }
.ethics-card.c2 { background: linear-gradient(160deg, #555, #141414); }
.ethics-card.c3 { background: linear-gradient(160deg, #3f3f3f, #0f0f0f); }
.ethics-card.c4 { background: linear-gradient(160deg, #4d4d4d, #101010); }
.ethics-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.15) 55%, rgba(0,0,0,0) 100%); }
.ethics-card-text { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: 20px; color: #fff; }
.ethics-card-text strong { display: block; font-size: 16px; margin-bottom: 6px; }
.ethics-card-text span { display: block; font-size: 12px; color: #ddd; line-height: 1.5; }

.ethics-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.ethics-info-box { border: 1px solid #eee; background: #fff; padding: 32px 28px; }
.ethics-info-box h3 { text-align: center; font-size: 16px; margin: 0 0 24px; padding-bottom: 16px; border-bottom: 2px solid var(--black); }
.ethics-info-box ul { margin: 0; padding-left: 16px; font-size: 13px; line-height: 1.8; }
.ethics-info-box ul li { margin-bottom: 10px; }
.ethics-info-box ol { margin: 0; padding-left: 18px; font-size: 13px; line-height: 1.7; }
.ethics-info-box ol li { margin-bottom: 16px; }
.ethics-info-box ol li strong { display: block; font-size: 13px; margin-bottom: 4px; }
.ethics-info-box ol li p { margin: 0; color: var(--muted); }

.ethics-note-box { background: var(--gray-bg); border: 1px solid #eee; padding: 32px 36px; }
.ethics-note-box h3 { font-size: 16px; margin: 0 0 18px; }
.ethics-note-box ul { margin: 0; padding-left: 18px; font-size: 13px; line-height: 1.9; }
.ethics-note-box ul ul { margin-top: 6px; }

.ethics-form-section { max-width: 900px; }
.ethics-form-intro { text-align: center; margin-bottom: 32px; }
.ethics-form-intro p { margin: 0 0 8px; font-size: 14px; }
.ethics-form-addr { font-size: 13px; color: var(--muted); margin-top: 12px !important; }

.ethics-form-guide { background: var(--gray-bg); border: 1px solid #eee; padding: 24px 28px; margin-bottom: 36px; font-size: 13px; line-height: 1.8; }
.ethics-form-guide li { margin-bottom: 6px; }

.report-form select { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 2px; font-size: 14px; background: #fff; }
.report-form .field-hint { display: block; font-size: 12px; color: var(--muted); font-weight: 400; margin: -4px 0 6px; }
.report-form .privacy-terms { height: 120px; overflow-y: auto; border: 1px solid #ddd; padding: 12px; font-size: 12px; color: var(--muted); background: #fafafa; margin-top: 8px; line-height: 1.6; }

@media (max-width: 900px) {
  .ethics-cards { grid-template-columns: repeat(2, 1fr); }
  .ethics-info-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .ethics-cards { grid-template-columns: 1fr; }
  .ethics-hero { padding: 50px 20px 36px; }
  .ethics-hero h1 { font-size: 24px; }
  .ethics-hero-image { height: 220px; }
  .ethics-info-box, .ethics-note-box, .ethics-form-guide { padding: 24px 20px; }
}

/* ===== Homepage (index.html) ===== */
.hero-video { position: relative; overflow: hidden; height: 100vh; height: 100dvh; min-height: 480px; max-width: none; margin: 0; padding: 0; display: flex; align-items: flex-end; color: #fff; }
.hero-video video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-video::after { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(0,0,0,.6) 0%, rgba(0,0,0,.25) 55%, rgba(0,0,0,0) 100%); }
.hero-video .hero-content { position: relative; z-index: 2; padding: 0 60px; padding-bottom: clamp(115px, 13vh, 160px); max-width: 840px; width: 100%; box-sizing: border-box; }
.hero-video .hero-content h1 { font-size: 48px; color: #fff; line-height: 1.4; margin: 0 0 18px; word-break: keep-all; }
.hero-video .hero-content p { color: #eee; font-size: 16px; line-height: 1.8; max-width: 520px; margin: 0 0 8px; }
.hero-video-mobile { display: none; }
.hero-scroll-badge { position: absolute; left: 50%; bottom: 10px; transform: translateX(-50%); width: 90px; height: 40px; z-index: 3; animation: hero-scroll-bounce 1.8s ease-in-out infinite; cursor: pointer; display: block; }
.hero-scroll-badge svg { width: 100%; height: 100%; display: block; }
@keyframes hero-scroll-bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

.about-hero {
  padding: 92px 40px 40px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}
.about-hero-img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.section-lead { text-align: center; max-width: 880px; margin: 0 auto; font-size: 16px; color: #525252; word-break: keep-all; }
.cta-center { text-align: center; margin-top: 28px; }
.btn.dark { background: #373737; color: #fff; }
.btn.dark:hover { background: #C51F25; }
.btn.outline-light {
  width: 116px;
  height: 42px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}
.btn.outline-light:hover { background: rgba(255,255,255,.15); color: #fff; border-color: rgba(255,255,255,.4); }

.full-bleed-img { display: block; width: 100%; height: 440px; object-fit: cover; }

.gateway-section .eyebrow { font-weight: 400; letter-spacing: 0; }
.gateway-section > .section-title { font-weight: 400; }

.gateway-img-wrap { text-align: center; margin: 4px 0 44px; }
.gateway-img-wrap img { max-width: 480px; width: 100%; border-radius: 4px; box-shadow: 0 24px 50px rgba(0,0,0,.28); }
.gateway-subtitle { text-align: center; font-size: 22px; font-weight: 400; color: #282828; margin: 0 0 16px; }

.info-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 40px; }
.info-card { display: block; color: inherit; }
.info-card img { width: 100%; max-width: 388px; height: auto; border-radius: 2px; display: block; margin: 0 auto; }
.info-card h4 { font-size: 22px; font-weight: 400; text-align: center; margin: 18px 0 8px; }
.info-card p { font-size: 16px; color: #525252; text-align: left; line-height: 1.7; margin: 0; }

.growth-section .eyebrow { text-align: left; font-weight: 400; letter-spacing: 0; }
.growth-row { display: flex; gap: 48px; align-items: center; }
.growth-row .growth-text { flex: 1; }
.growth-row .growth-text .section-title {
  text-align: left;
}
.growth-row .growth-text p { font-size: 16px; color: #525252; margin: 0 0 24px; }
.growth-row .growth-img { flex: 1; }
.growth-row .growth-img img { width: 100%; border-radius: 2px; display: block; }
.btn-growth {
  width: 114px; height: 38px; margin-top: 0; padding: 0;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 400; background: #373737; color: #fff; border: none;
}
.btn-growth:hover { background: #C51F25; color: #fff; }

.connect-section { max-width: none; padding: 0; position: relative; color: #fff; }
.connect-bg {
  position: absolute; inset: 0; z-index: 0;
  background: url('/img/connect-bg.jpg') center/cover fixed;
  filter: grayscale(1);
}
.connect-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(rgba(8,8,8,.72), rgba(8,8,8,.82)); }
.connect-inner { position: relative; z-index: 1; padding: 90px 40px; }
.connect-inner .eyebrow { font-weight: 400; }
.connect-inner .section-title { font-weight: 400; }
.connect-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; max-width: 1100px; margin-left: auto; margin-right: auto; }
.connect-card { background: rgba(0,0,0,.4); border: 1px solid rgba(255,255,255,.12); padding: 32px; }
.connect-card h3 { margin: 0 0 14px; font-size: 23px; color: #fff; text-align: center; }
.connect-card p { color: #ccc; font-size: 16px; line-height: 1.7; margin: 0 0 22px; }
.eyebrow-light { color: #fff; }
.btn-connect {
  width: 104px; height: 38px; margin: 0 auto; padding: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; background: #373737; color: #fff; border: none;
}
.btn-connect:hover { background: #C51F25; color: #fff; }

@media (max-width: 900px) {
  .info-cards { grid-template-columns: 1fr; }
  .growth-row { flex-direction: column; }
  .connect-cards { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hero-video { min-height: 480px; }
  .hero-video .hero-content { padding: 0 24px; padding-bottom: clamp(85px, 11vh, 105px); box-sizing: border-box; }
  .hero-video .hero-content h1 { font-size: 26px; color: #fff; }
  .hero-video .hero-content p { font-size: 16px; color: #fff; }
  .hero-video-pc { display: none; }
  .hero-video-mobile { display: block; }
  .hero-scroll-badge { width: 64px; }
  .full-bleed-img { height: 220px; }
  .connect-inner { padding: 56px 20px; }
  .connect-bg { background-attachment: scroll; }
  .section-title { font-size: 22px; }
  .gateway-subtitle { font-size: 18px; }
  .connect-card h3 { font-size: 18px; }
}

/* ===== Footer ===== */
footer { background: #ffffff; border-top: 1px solid #eee; padding: 48px 40px 24px; margin-top: 60px; }

.footer-cols { display: flex; gap: 40px; flex-wrap: wrap; max-width: 1100px; margin: 0 auto; }
.footer-col { flex: 1; min-width: 110px; }
.footer-col-family { flex: 1.4; }
.family-link-cols { display: flex; flex-direction: column; }
.footer-cols h4 { font-size: 16px; margin: 0 0 12px; }
.footer-cols a { display: block; font-size: 16px; color: var(--muted); margin-bottom: 8px; }

.footer-bottom { max-width: 1100px; margin: 32px auto 0; border-top: 1px solid #e0e0e0; padding-top: 20px; }
.footer-bottom-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; flex-wrap: wrap; }
.footer-bottom-info { font-size: 14px; color: var(--muted); line-height: 1.8; }
.addr-mo { display: none; }
@media (max-width: 640px) {
  .addr-pc { display: none; }
  .addr-mo { display: block; }
}
.footer-bottom-links a { color: var(--muted); font-size: 14px; margin-left: 16px; }
.footer-bottom-links a:first-child { margin-left: 0; }
.footer-bottom-links a.strong { color: var(--text); font-weight: 700; }

.footer-brand-row {
  max-width: 1100px; margin: 20px auto 0; padding-top: 20px; border-top: 1px solid #e0e0e0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-logo-img { width: 215px; height: auto; aspect-ratio: 380 / 120; display: block; }
.footer-copyright { font-size: 13px; color: var(--muted); }

.footer-family-row { max-width: 1100px; margin: 16px auto 0; display: flex; justify-content: flex-end; }
.family-site-toggle-wrap { position: relative; width: 180px; margin-top: 16px; box-sizing: border-box; }
.family-site-toggle {
  background-color: transparent; border: 1px solid #929292; cursor: pointer; font-size: 14px;
  color: #929292; border-radius: 0; width: 100%; height: 40px; text-align: center;
  box-sizing: border-box; display: flex; align-items: center; justify-content: center;
}
.family-site-toggle:hover { border-color: var(--red); color: var(--red); }
.family-site-menu {
  display: none; position: absolute; bottom: 100%; left: 0; background-color: #fff;
  width: 100%; z-index: 9999; border: 1px solid #929292; border-radius: 0; margin-bottom: 5px;
  max-height: none; overflow-y: visible; box-sizing: border-box;
}
.family-site-menu.open { display: block; }
.family-site-menu a {
  color: #333; padding: 10px 12px; display: block; font-size: 13px; text-align: center;
  border-bottom: 1px solid #e0e0e0; box-sizing: border-box;
}
.family-site-menu a:last-child { border-bottom: none; }
.family-site-menu a:hover { background-color: #f1f1f1; color: #000; }

@media (max-width: 900px) {
  .footer-cols { gap: 30px; }
  .footer-col { min-width: 45%; }
}
@media (max-width: 640px) {
  .footer-col { min-width: 100%; }
  .footer-brand-row, .footer-bottom-row { flex-direction: column; align-items: flex-start; }
}

/* ===== Popup ===== */
/* 팝업 개수와 무관하게 배경 딤 처리는 하나만 깔리고, 팝업이 모두 닫히면 같이 사라진다. */
.popup-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 998;
}
/* 팝업 박스들은 딤 배경 위에서 각자 독립된 위치에 떠 있는다. */
.popup-float {
  position: fixed; z-index: 999;
  width: 90%; max-width: 420px; /* 노션 '너비' 값이 있으면 JS가 max-width를 덮어씀 */
  box-sizing: border-box;
}
.popup-float.popup-pos-center { top: 50%; left: 50%; transform: translate(-50%, -50%); }
.popup-float.popup-pos-top { top: 24px; left: 50%; transform: translateX(-50%); }
.popup-float.popup-pos-bottom { bottom: 24px; left: 50%; transform: translateX(-50%); }
.popup-float.popup-pos-top-left { top: 24px; left: 24px; }
.popup-float.popup-pos-top-right { top: 24px; right: 24px; }
.popup-float.popup-pos-bottom-left { bottom: 24px; left: 24px; }
.popup-float.popup-pos-bottom-right { bottom: 24px; right: 24px; }
.popup-box {
  background: #fff; width: 100%; border-radius: 4px; overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 6px 24px rgba(0,0,0,.18);
  max-height: 90vh; /* 화면보다 큰 세로값을 넣어도 넘치지 않고, 넘치는 내용은 내부 스크롤로 처리 */
}
.popup-box .popup-click-area { display: block; color: inherit; text-decoration: none; flex: 1 1 auto; min-height: 0; overflow-y: auto; }
.popup-box img { width: 100%; display: block; flex-shrink: 0; }
.popup-box .popup-body { padding: 24px; overflow-y: auto; flex: 1 1 auto; }
.popup-box .popup-close-row {
  display: flex; justify-content: space-between; align-items: center; padding: 12px 24px; border-top: 1px solid #eee; flex-shrink: 0;
}
.popup-box .popup-close-row button { background: none; border: none; cursor: pointer; font-size: 13px; color: var(--muted); }
.popup-box .notion-table { width: 100%; table-layout: fixed; border-collapse: collapse; margin: 12px 0; font-size: 14px; }
.popup-box .notion-table td { border: 1px solid #e0e0e0; padding: 6px 10px; word-break: break-word; }

@media (max-width: 1024px) {
  .header-inner,
  .site-header.header-transparent .header-inner {
    flex-direction: row !important; align-items: center !important; justify-content: flex-start !important;
    padding: 0 20px !important; height: 64px !important;
  }
  .header-brand, .site-header.header-transparent .header-brand {
    margin-bottom: 0 !important; justify-content: flex-start !important; display: flex !important; align-items: center !important; max-width: calc(100% - 40px) !important;
  }
  .main-nav { display: none !important; }
  .nav-toggle { display: flex !important; margin-left: auto !important; flex-shrink: 0 !important; }
  .site-header.header-transparent .sub-logo-img.logo-white {
    position: static !important; transform: none !important; width: 174px !important; max-width: 38vw !important;
    display: inline-block !important; margin-right: 20px !important; vertical-align: middle !important;
  }
  .site-header.header-transparent .logo-link.logo-white {
    display: inline-block !important; vertical-align: middle !important;
  }
  .site-header.header-transparent .logo-link.logo-white .logo-img {
    width: 175px !important; max-width: 30vw !important; display: inline-block !important;
  }
  .scrolled-logo-1 { width: 174px; max-width: 38vw; }
  .scrolled-logo-2 { width: 175px; max-width: 30vw; }
  .scrolled-brand { gap: 20px; }
}
@media (max-width: 640px) {
  .site-header.header-transparent .sub-logo-img.logo-white { width: 130px !important; max-width: 33vw !important; }
  .site-header.header-transparent .logo-link.logo-white .logo-img { width: 115px !important; max-width: 35vw !important; }
  .scrolled-logo-1 { width: 130px !important; max-width: 33vw !important; }
  .scrolled-logo-2 { width: 115px !important; max-width: 35vw !important; }
  .scrolled-brand, .site-header.header-transparent .logo-white { gap: 12px; }
  section { padding: 40px 20px; }
  .eyebrow, .section-title, .section-lead, .cta-center, .gateway-subtitle { text-align: left; }
  .footer-cols { gap: 30px; }
}

/* ===== About Us Page ===== */
.about-hero { padding-bottom: 40px; }
.about-hero .section-title { font-size: 32px; font-weight: 500; }
.about-hero .section-lead { font-size: 15px; max-width: 720px; line-height: 1.8; color: #444; }

.company-info-section { max-width: 900px; padding-top: 80px; }
.info-table { display: flex; flex-direction: column; gap: 28px; letter-spacing: -0.5px; margin-left: 80px; }
.info-row { display: flex; align-items: flex-start; }
.info-th { width: 220px; font-weight: 600; color: #222; font-size: 16px; padding-left: 20px; }
.info-td { flex: 1; font-size: 16px; color: #555; line-height: 1.8; }
.info-td ul { margin: 0; padding-left: 20px; }
.info-td li { margin-bottom: 6px; }

.synergy-section.gateway-section { padding-top: 80px; }
.synergy-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; margin-top: 20px; }
.synergy-cards .info-card { text-align: left; }
.synergy-cards .info-card h4 { text-align: left; margin-top: 24px; font-size: 20px; font-weight: 500; color: #222; }

.philosophy-section { padding-top: 80px; padding-bottom: 80px; }
.philosophy-row { display: flex; gap: 60px; max-width: 1000px; margin: 0 auto; align-items: flex-start; }
.philosophy-title { width: 350px; flex-shrink: 0; }
.philosophy-title .eyebrow { margin-bottom: 12px; }
.philosophy-title h2 { font-size: 28px; font-weight: 500; margin: 0; line-height: 1.4; color: #222; text-align: left; }
.philosophy-content { flex: 1; }
.philosophy-item { margin-bottom: 40px; }
.philosophy-item:last-child { margin-bottom: 0; }
.philosophy-item h3 { font-size: 18px; font-weight: 600; color: #222; margin: 0 0 16px; }
.philosophy-item p { font-size: 15px; color: #555; line-height: 1.8; margin: 0; }

.careers-preview-section .btn { margin-top: 0; }
.accordion { margin-top: 20px; border-top: 1px solid #222; }
.accordion-item { border-bottom: 1px solid #ddd; }
.accordion-toggle {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 10px; background: none; border: none; font-size: 16px; color: #333; font-weight: 500; cursor: pointer; text-align: left;
}
.accordion-toggle span { font-size: 20px; color: #c51f25; font-weight: 300; }

@media (max-width: 900px) {
  .synergy-cards { grid-template-columns: 1fr; }
  .philosophy-row { flex-direction: column; gap: 40px; }
  .philosophy-title { width: 100%; }
}
@media (max-width: 640px) {
  .info-row { flex-direction: column; padding: 20px 0; }
  .info-th { width: 100%; padding-left: 0; margin-bottom: 12px; }
}

/* ===== Subpage Header Design (.has-fixed-header) ===== */
@media (min-width: 1025px) {
  body.has-fixed-header:not(.is-scrolled) .site-header {
    padding: 0;
  }
  body.has-fixed-header:not(.is-scrolled) .header-inner {
    display: flex;
    flex-direction: column;
    height: auto;
    padding: 0;
    max-width: none;
  }
  body.has-fixed-header:not(.is-scrolled) .header-brand {
    width: 100%;
    height: 114px;
    background: #fff;
    display: block;
  }
  body.has-fixed-header:not(.is-scrolled) .scrolled-brand {
    display: block !important;
    position: relative;
    width: 100%;
    height: 100%;
  }
  body.has-fixed-header:not(.is-scrolled) .scrolled-logo-1 {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 174px;
  }
  body.has-fixed-header:not(.is-scrolled) .scrolled-brand a {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  body.has-fixed-header:not(.is-scrolled) .scrolled-logo-2 {
    width: 234px;
  }
  body.has-fixed-header:not(.is-scrolled) .main-nav {
    width: 100%;
    height: 40px;
    background: url('/img/menu_bg.png') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  body.has-fixed-header:not(.is-scrolled) .main-nav > ul {
    display: flex;
    gap: clamp(50px, 5vw, 90px);
    margin: 0;
    padding: 0;
  }
  body.has-fixed-header:not(.is-scrolled) .main-nav > ul > li > a {
    color: #fff;
    font-size: 15px;
    padding: 0;
    line-height: 40px;
  }
  body.has-fixed-header:not(.is-scrolled) .main-nav .dropdown {
    top: 40px;
  }
}

/* ===== Mobile Responsiveness (max-width: 767px) ===== */
@media (max-width: 767px) {
  /* Override inline container paddings */
  section {
    padding: 60px 20px !important;
  }
  
  .page-title-inner {
    padding: 0 20px !important;
  }
  
  .about-hero {
    padding-bottom: 40px !important;
  }
  
  .about-hero-img {
    height: 210px !important;
  }
  
  /* Section 2 (Company Info) Overrides */
  .info-table {
    margin-left: 0 !important;
    gap: 46px !important;
  }
  .info-row {
    flex-direction: column !important;
    padding: 0 !important;
    gap: 8px !important;
  }
  .info-th {
    width: 100% !important;
    padding-left: 0 !important;
    margin-bottom: 0 !important;
  }
  
  /* Section 3 (Synergy) Overrides */
  .synergy-section {
    display: flex !important;
    flex-direction: column !important;
  }
  .synergy-section > * {
    width: 100% !important;
    min-width: 0 !important;
  }
  .info-card {
    width: 100% !important;
    min-width: 0 !important;
  }
  
  /* Section 4 (Philosophy) Overrides */
  .philosophy-content {
    gap: 32px !important;
  }

  .synergy-section > .sub-category { order: 1; }
  .synergy-section > .sub-title-main { order: 2; }
  .synergy-section > .gateway-img-wrap { 
    order: 3; 
    margin-top: 0 !important; 
    margin-bottom: 40px !important; 
  }
  .synergy-section > .sub-desc { 
    order: 4; 
    margin-bottom: 40px !important; 
  }
  .synergy-section > .synergy-cards { order: 5; }
  
  /* Make inline grid layouts stack into 1 column without automatic gaps */
  .responsive-grid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
  .responsive-grid > div {
    margin-bottom: 0 !important;
  }
  .responsive-grid > div:empty {
    display: none !important;
  }

  /* Restore 40px gap between text/accordion and immediately following image in sections 5 & 6 */
  .core-value-section .responsive-grid > div:last-child,
  .careers-preview-section .responsive-grid > div:last-child {
    margin-top: 40px !important;
  }

  /* Stack flex rows */
  .responsive-flex {
    flex-direction: column !important;
    gap: 40px !important;
  }
  
  /* Images take full width */
  .responsive-img {
    width: 100% !important;
    height: auto !important;
  }
  
  /* Fix aspect ratio for Section 3 info-card images (2nd and 3rd images) */
  .synergy-cards .responsive-img {
    height: 220px !important;
    object-fit: cover !important;
  }
  
  /* Mobile Footer 2-Column Layout */
  .footer-cols {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 40px 20px !important;
  }
  .footer-col {
    min-width: 0 !important;
  }
  .footer-col-family {
    grid-column: 1 / -1 !important;
  }
  .family-link-cols {
    flex-direction: row !important;
    gap: 20px !important;
  }
  .family-link-col {
    flex: 1;
  }
  
  /* Global Typography rules and universal spacing (36px, 22px) */
  .sub-category {
    display: block !important;
    font-size: 16px !important;
    color: #c51f25 !important;
    margin: 0 0 36px 0 !important;
    text-align: left !important;
  }
  .sub-title-main {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #282828 !important;
    line-height: 1.4 !important;
    margin: 0 0 22px 0 !important;
    text-align: left !important;
  }
  .sub-title-mid {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #282828 !important;
    text-align: left !important;
  }
  .sub-title-aux {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #525252 !important;
    text-align: left !important;
  }
  .sub-desc {
    font-size: 16px !important;
    color: #525252 !important;
    text-align: left !important;
  }
}

/* ==========================================================================
   Family Site Details Layout
   ========================================================================== */
.family-layout {
  display: flex;
  align-items: flex-start;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  gap: 60px;
}

/* Sidebar */
.family-sidebar {
  width: 220px;
  flex-shrink: 0;
  position: sticky;
  top: 100px;
}
.family-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.family-sidebar li {
  margin-bottom: 25px;
}
.family-sidebar li a {
  text-decoration: none;
  font-size: 18px;
  color: #888;
  display: block;
  text-align: right;
  padding-right: 20px;
  transition: color 0.2s, font-weight 0.2s;
}
.family-sidebar li a:hover {
  color: #555;
}
.family-sidebar li a.active {
  color: #d32f2f;
  font-weight: bold;
}

/* Main Content */
.family-main {
  flex: 1;
  min-width: 0;
}
.family-content-header {
  text-align: center;
  margin-bottom: 60px;
  padding-top: 20px;
}
.family-content-header img {
  max-width: 220px;
  height: auto;
}
.family-content-header h3 {
  font-size: 16px;
  color: #555;
  margin-top: 15px;
  font-weight: normal;
}

/* Sections */
.company-section {
  margin-bottom: 70px;
}
.company-section-title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.company-section-title::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #d32f2f;
  margin-right: 12px;
}

/* Table Style */
.company-info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}
.company-info-table th, .company-info-table td {
  padding: 16px 24px;
  border-bottom: 1px solid #eaeaea;
  text-align: left;
}
.company-info-table tr:first-child {
  border-top: 1px solid #eaeaea;
}
.company-info-table th {
  background-color: #f8f9fa;
  width: 200px;
  color: #333;
  font-weight: 500;
}
.company-info-table td {
  color: #555;
}
.company-info-table td a {
  color: #d32f2f;
  text-decoration: none;
}
.company-info-table td a:hover {
  text-decoration: underline;
}

/* Highlight Box */
.company-highlight-box {
  background-color: #f2f2f2;
  padding: 30px;
  border-radius: 4px;
}
.company-highlight-box h4 {
  font-size: 18px;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 20px;
  color: #333;
}
.company-highlight-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.company-highlight-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}
.company-highlight-list li:last-child {
  margin-bottom: 0;
}
.company-highlight-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #333;
}

/* Grid for images */
.company-image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.company-image-grid img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 4px;
}

/* ==========================================================================
   Family Site Details Layout
   ========================================================================== */
.family-layout {
  display: flex;
  align-items: flex-start;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  gap: 60px;
}

/* Sidebar */
.family-sidebar {
  width: 220px;
  flex-shrink: 0;
  position: sticky;
  top: 100px;
}
.family-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.family-sidebar li {
  margin-bottom: 25px;
}
.family-sidebar li a {
  text-decoration: none;
  font-size: 18px;
  color: #888;
  display: block;
  text-align: right;
  padding-right: 20px;
  border-right: 2px solid transparent;
  transition: color 0.2s, font-weight 0.2s;
}
.family-sidebar li a:hover {
  color: #555;
}
.family-sidebar li a.active {
  color: #d32f2f;
  font-weight: bold;
  border-right: 2px solid #d32f2f;
}

/* Main Content */
.family-main {
  flex: 1;
  min-width: 0;
}
.family-content-header {
  text-align: center;
  margin-bottom: 60px;
  padding-top: 20px;
}
.family-content-header img {
  max-width: 220px;
  height: auto;
}
.family-content-header h3 {
  font-size: 16px;
  color: #555;
  margin-top: 15px;
  font-weight: normal;
}

/* Sections */
.company-section {
  margin-bottom: 70px;
}
.company-section-title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.company-section-title::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #d32f2f;
  margin-right: 12px;
}

/* Table Style */
.company-info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}
.company-info-table th, .company-info-table td {
  padding: 16px 24px;
  border-bottom: 1px solid #eaeaea;
  text-align: left;
}
.company-info-table tr:first-child {
  border-top: 1px solid #eaeaea;
}
.company-info-table th {
  background-color: #f8f9fa;
  width: 200px;
  color: #333;
  font-weight: 500;
}
.company-info-table td {
  color: #555;
}
.company-info-table td a {
  color: #d32f2f;
  text-decoration: none;
}
.company-info-table td a:hover {
  text-decoration: underline;
}

/* Highlight Box */
.company-highlight-box {
  background-color: #f2f2f2;
  padding: 30px;
  border-radius: 4px;
}
.company-highlight-box h4 {
  font-size: 18px;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 20px;
  color: #333;
}
.company-highlight-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.company-highlight-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}
.company-highlight-list li:last-child {
  margin-bottom: 0;
}
.company-highlight-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #333;
}

/* Grid for images */
.company-image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.company-image-grid img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 4px;
}

/* ===== Policy Pages ===== */
.policy-section {
  padding: 120px 20px 60px;
  max-width: 1000px;
  margin: 0 auto;
}
.policy-category {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
}
.policy-title {
  font-size: 40px;
  font-weight: 700;
  color: #111;
  margin-bottom: 50px;
}
.policy-desc {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 40px;
}
.policy-date {
  font-size: 15px;
  font-weight: 700;
}
.policy-banner img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 450px;
  object-fit: cover;
}

/* ===== Mobile Fix for Family Site Layout ===== */
@media (max-width: 767px) {
  .family-layout {
    flex-direction: column;
    padding: 0 15px;
    margin: 30px auto;
    gap: 40px;
  }
  .family-sidebar {
    width: 100%;
    order: 2;
    position: static;
    margin-top: 20px;
  }
  .family-sidebar ul::before {
    content: "패밀리사이트";
    display: block;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #111;
    margin-bottom: 20px;
  }
  .family-sidebar li {
    margin-bottom: 0;
    border-top: 1px solid #eaeaea;
  }
  .family-sidebar li:last-child {
    border-bottom: 1px solid #eaeaea;
  }
  .family-sidebar li a {
    text-align: center;
    padding: 15px 0;
    border-right: none;
    font-size: 16px;
  }
  .family-sidebar li a.active {
    border-right: none;
    color: #d32f2f;
  }
  .family-main {
    order: 1;
    width: 100%;
  }
  
  /* Adjusting inner elements for mobile */
  .company-info-table {
    font-size: 16px;
  }
  .company-info-table th {
    width: 90px;
    padding: 12px 10px;
  }
  .company-info-table td {
    padding: 12px 10px;
  }
  .family-content-header {
    margin-bottom: 30px !important;
    padding-bottom: 15px !important;
  }
  .family-content-header h2 {
    font-size: 24px !important;
  }
  .family-content-header img {
    height: auto !important; max-width: 100% !important;
  }
  .company-image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .company-highlight-box {
    padding: 20px;
  }
}

/* Responsive Header for Family Sites */
@media (min-width: 769px) {
  .responsive-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-end !important;
  }
  .responsive-header .header-text-wrapper {
    text-align: left !important;
  }
  .responsive-header .header-logo-wrapper {
    text-align: right !important;
    margin: 0 !important;
  }
  .responsive-header .header-logo-wrapper img {
    width: auto !important;
    max-height: 55px !important;
  }
}

@media (max-width: 768px) {
  .responsive-header {
    display: flex !important;
    flex-direction: column-reverse !important;
    align-items: stretch !important;
  }
  .responsive-header .header-logo-wrapper {
    text-align: center !important;
    margin: -30px 0 45px 0 !important;
  }
}

/* Atlas Link Specific Logo Size */
#atlas-logo { max-height: 110px !important; }

@media (max-width: 768px) {
  .scrolled-brand { gap: 10px !important; }
  .scrolled-logo-1 { width: 130px !important; max-width: 40vw !important; }
  .scrolled-logo-2 { width: 95px !important; max-width: 25vw !important; }
}
