/* common_new1/css/layout.css
 * KVIC MarketWatch 공통 레이아웃 시스템 (여러 호 재사용)
 *  - 페이지 골격: section / section-shell / section-heading
 *  - 구성(형태) 클래스: cols-2 / cols-3 / media-text / card
 *  - 공통 컴포넌트: btn / editorial-link / hero / toc-card
 *  - 서브 골격: sub-main / side-quick / side-toggle / side-pdf / sub-article
 * 호별 값 조정(배너 딤·색 등)은 각 호 css 에서 override.
 */

/* ─── 섹션 기본 단위 ─────────────────────────── */
.section { padding: clamp(64px, 8vw, 104px) 0; background: var(--surface); }
.section--tint { background: var(--surface-2); }

.section-shell {
  width: min(100% - 64px, var(--max-w));
  margin-inline: auto;
}

.section-heading {
  padding-bottom: 22px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
}
.section-heading__kicker {
  margin-bottom: 7px;
  color: var(--kvic-navy);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.section-heading h2 {
  color: var(--ink-strong);
  font-size: clamp(2rem, 3vw, 2.65rem);
  font-weight: 760;
  line-height: 1.16;
  letter-spacing: -0.035em;
}
.section-heading__desc {
  max-width: 430px;
  color: var(--ink-sub);
  font-size: 1rem;
  line-height: 1.65;
  text-align: right;
  word-break: keep-all;
}

/* ─── 컬럼 그리드 (구성 클래스) ───────────────── */
.cols-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px 24px;
}
.cols-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 24px;
}

/* ─── 이미지 + 글 (구성 클래스) ───────────────── */
.media-text-list { display: grid; gap: clamp(56px, 8vw, 96px); }

.media-text {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 440px;
  border-block: 2px solid var(--kvic-gray);
}
.media-text__media {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  background: var(--kvic-indigo);
}
.media-text__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--ease-slow);
}
.media-text:hover .media-text__media img { transform: scale(1.025); }

.media-text__body {
  padding: clamp(36px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--ink-strong);
}
/* 이미지 우측 배치 */
.media-text--reverse .media-text__media { grid-column: 2; grid-row: 1; }
.media-text--reverse .media-text__body {
  grid-column: 1;
  grid-row: 1;
  border-right: 1px solid var(--ink-strong);
  border-left: 0;
}

.media-text__title {
  margin-bottom: 20px;
  color: var(--ink-strong);
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 760;
  line-height: 1.16;
  letter-spacing: -0.035em;
}
.media-text__desc {
  margin-bottom: 20px;
  color: var(--ink-sub);
  font-size: 1.1rem;
  line-height: 1.5;
  word-break: keep-all;
}
.media-text__summary {
  margin-bottom: 12px;
  overflow: hidden;
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.75;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  line-clamp: 6;
  word-break: keep-all;
}
.media-text__summary:not(:has(+ .media-text__author)) { margin-bottom: 32px; }
.media-text__author {
  margin: 0 0 32px;
  color: var(--ink-sub);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.01em;
  word-break: keep-all;
}

/* ─── 카드 (구성 클래스) ─────────────────────── */
.card {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.card__thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 18px;
  border-radius: var(--radius-sm);
  background: var(--kvic-indigo);
}
.card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88);
  transition: transform var(--ease-slow), filter var(--ease-slow);
}
.card:hover .card__thumb img { transform: scale(1.025); filter: saturate(1); }

.card__index {
  display: none;
  position: absolute;
  left: 12px;
  bottom: 12px;
  min-width: 34px;
  padding: 5px 7px;
  background: rgba(8, 59, 118, 0.9);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
}
.card__body { flex: 1; display: flex; flex-direction: column; }
.card__title {
  margin-bottom: 10px;
  color: var(--ink-strong);
  font-size: 1.3rem;
  font-weight: 760;
  line-height: 1.35;
  letter-spacing: -0.025em;
  word-break: keep-all;
}
.card__desc {
  margin-bottom: 14px;
  color: var(--ink-sub);
  font-size: 1rem;
  line-height: 1.6;
}
.card__summary {
  margin-bottom: 10px;
  overflow: hidden;
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  word-break: keep-all;
  line-clamp: 3;
}
.card__summary:not(:has(+ .card__author)) { margin-bottom: 20px; }
.card__author {
  margin: 0 0 20px;
  color: var(--ink-sub);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.01em;
  word-break: keep-all;
}
.card .editorial-link { margin-top: auto; }

/* 2열 맥락: 큰 카드(16:9 + 요약 노출) */
.cols-2 .card__thumb { aspect-ratio: 16 / 9; margin-bottom: 22px; }
.cols-2 .card__title { font-size: clamp(1.55rem, 2.1vw, 2rem); }

/* 3열 맥락: 컴팩트 카드(요약 숨김) */
.cols-3 .card__summary { display: none; }

/* 박스형 카드 변형 */
.card--boxed {
  padding: 20px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

/* ─── 버튼 ───────────────────────────────────── */
.btn {
  min-height: 50px;
  padding: 12px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  transition: background-color var(--ease), border-color var(--ease), color var(--ease), transform var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { border-color: var(--kvic-navy); background: var(--kvic-navy); color: #ffffff; }
.btn--primary:hover { border-color: var(--kvic-indigo); background: var(--kvic-indigo); }
.btn--outline { border-color: var(--border-strong); background: transparent; color: var(--ink-strong); }

/* ─── 편집형 링크 ────────────────────────────── */
.editorial-link {
  width: fit-content;
  padding-bottom: 4px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid currentColor;
  color: var(--kvic-indigo);
  font-size: 1.1rem;
  font-weight: 750;
}

/* ─── Hero ───────────────────────────────────── */
.hero {
  position: relative;
  min-height: 760px;
  padding: calc(var(--header-h) + 72px) 0 80px;
  overflow: hidden;
  isolation: isolate;
  background: var(--surface-2);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-color: var(--surface-2);
  /* background-position: center; */
  background-repeat: no-repeat;
  background-size: cover;
}
.hero__bg::after { content: ""; position: absolute; inset: 0; background: transparent; }
/* 검정만 — 색 틴트·blur 없이 어둡게만 (이미지는 선명 유지) */
.hero--has-banner .hero__bg::after { background: rgba(0, 0, 0, 0.3); } 

.hero__inner {
  width: min(100% - 64px, var(--max-w));
  margin-inline: auto;
  margin-top: 3rem;
  display: grid;
  /* grid-template-columns: minmax(0, 1.1fr) minmax(410px, 0.9fr); */
  gap: clamp(48px, 7vw, 104px);
  align-items: center;
}
.hero__text { 
  max-width: 950px; 
  padding-block: 40px; 
  margin:0 auto;
}
.hero__eyebrow {
  margin-bottom: 18px;
  color: #FFF798;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.05em;
}
.hero--has-banner .hero__eyebrow {
  color: #FFE566;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.65),
    0 2px 6px rgba(0, 0, 0, 0.7),
    0 4px 18px rgba(0, 0, 0, 0.55),
    0 8px 32px rgba(0, 0, 0, 0.4);
}
.hero__title {
  margin-bottom: 4rem;
  color: var(--ink-strong);
  font-size: clamp(3rem, 5.3vw, 3.5rem);
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.hero--has-banner .hero__title {
  color: #ffffff;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.7),
    0 2px 8px rgba(0, 0, 0, 0.75),
    0 6px 24px rgba(0, 0, 0, 0.55),
    0 12px 40px rgba(0, 0, 0, 0.4);
}
.hero__desc {
  /* max-width: 680px; */
  margin-bottom: 38px;
  color: var(--ink-sub);
  font-size: clamp(1.075rem, 1.4vw, 1.5rem);
  font-weight: 430;
  line-height: 2;
  letter-spacing: -0.012em;
  /* 데스크탑: <br> 에서만 줄바꿈 */
  white-space: nowrap;
  word-break: normal;
  overflow-wrap: normal;
}
.hero__desc--mobile { display: none; }
.hero--has-banner .hero__desc {
  color: #ffffff;
  font-weight: 700;
  /* text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.65),
    0 2px 6px rgba(0, 0, 0, 0.7),
    0 4px 18px rgba(0, 0, 0, 0.5),
    0 8px 28px rgba(0, 0, 0, 0.35); */
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero--has-banner .btn--outline { border-color: rgba(255, 255, 255, 0.65); color: #ffffff; }
.hero--has-banner .btn--outline:hover { border-color: #ffffff; background: rgba(255, 255, 255, 0.1); }

/* ─── 목차 카드 (Hero 우측) ───────────────────── */
.toc-card {
  display: none;
  overflow: hidden;
  border: 1px solid white;
  border-radius: var(--radius-lg);
  background: rgba(5, 21, 42, 0.62);
  color: #ffffff;
  box-shadow: 0 20px 48px rgba(4, 18, 36, 0.2);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  padding-bottom: 20px;
}
.hero:not(.hero--has-banner) .toc-card {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink-strong);
  box-shadow: var(--shadow-md);
}
.toc-card__head { padding: 24px 26px 18px; border-bottom: 1px solid rgba(255, 255, 255, 0.22); }
.hero:not(.hero--has-banner) .toc-card__head { border-color: var(--border-light); }
.toc-card__kicker {
  margin-bottom: 3px;
  color: #8fd5f2;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}
.hero:not(.hero--has-banner) .toc-card__kicker { color: var(--kvic-navy); }
.toc-card__title { font-size: 1.3rem; font-weight: 760; line-height: 1.35; letter-spacing: -0.025em; }
.toc-card__list li + li { border-top: 1px solid rgba(255, 255, 255, 0.14); }
.hero:not(.hero--has-banner) .toc-card__list li + li { border-color: var(--border-light); }
.toc-card__item {
  min-height: 64px;
  padding: 10px 18px;
  display: grid;
  grid-template-columns: 28px 62px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 12px;
  transition: background-color var(--ease);
}
.toc-card__item--no-thumb { grid-template-columns: 28px minmax(0, 1fr) 18px; }
.toc-card__item:hover,
.toc-card__item:focus-visible { background: rgba(255, 255, 255, 0.11); }
.hero:not(.hero--has-banner) .toc-card__item:hover,
.hero:not(.hero--has-banner) .toc-card__item:focus-visible { background: var(--surface-2); }
.toc-card__number { color: #8fd5f2; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.06em; }
.hero:not(.hero--has-banner) .toc-card__number { color: var(--kvic-navy); }
.toc-card__thumb {
  width: 62px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-xs);
  background: rgba(255, 255, 255, 0.12);
}
.toc-card__thumb img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.72) contrast(1.05); }
.toc-card__body { min-width: 0; display: grid; gap: 2px; }
.toc-card__body strong {
  overflow: hidden;
  color: inherit;
  font-size: 1.1rem;
  font-weight: 650;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.toc-card__body em {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  font-style: normal;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hero:not(.hero--has-banner) .toc-card__body em { color: var(--ink-sub); }
.toc-card__chevron { color: rgba(255, 255, 255, 0.62); font-size: 0.76rem; transition: transform var(--ease); }
.hero:not(.hero--has-banner) .toc-card__chevron { color: var(--ink-faint); }
.toc-card__item:hover .toc-card__chevron { transform: translateX(3px); }

/* ─── 반응형 ─────────────────────────────────── */
@media (max-width: 1100px) {
  .hero { min-height: auto; padding-bottom: 64px; }
  .hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .hero__text { max-width: 780px; padding-block: 30px 0; }
  .hero__title { max-width: 14ch; }
  .toc-card { max-width: 780px; }
  .media-text { grid-template-columns: 1fr 1fr; }
  .cols-2 { grid-template-columns: 1fr; }
  .cols-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  .section-shell,
  .hero__inner { width: min(100% - 40px, var(--max-w)); }
  .hero { padding: calc(var(--header-h) + 36px) 0 44px; }
  .hero__text { padding-top: 24px; }
  .hero__title { margin-bottom: 20px; font-size: clamp(2rem, 8vw, 3.4rem); }
  .hero__desc {
    margin-bottom: 28px;
    font-size: 1rem;
    line-height: 1.72;
    white-space: nowrap; /* 모바일 전용 카피(<br>) 기준 고정 줄바꿈 */
  }
  .hero__desc--desktop { display: none; }
  .hero__desc--mobile { display: block; }
  .hero__actions { display: grid; grid-template-columns: 1fr 1fr; }
  .btn { min-height: 48px; padding-inline: 14px; }
  .toc-card { border-radius: var(--radius-md); box-shadow: none; }
  .toc-card__head { padding: 20px 18px 14px; }
  .toc-card__item { grid-template-columns: 26px 52px minmax(0, 1fr) 14px; gap: 10px; padding: 9px 14px; }
  .toc-card__item--no-thumb { grid-template-columns: 26px minmax(0, 1fr) 14px; }
  .toc-card__thumb { width: 52px; }
  .toc-card__body em { display: none; }

  .section { padding: 72px 0; }
  .section-heading { margin-bottom: 28px; align-items: start; flex-direction: column; gap: 12px; }
  .section-heading__desc { max-width: none; text-align: left; }

  .media-text { display: block; min-height: 0; border-block-color: var(--border-strong); }
  .media-text__media { min-height: 0; aspect-ratio: 16 / 10; }
  .media-text__body { padding: 30px 0 34px; border-left: 0; }
  .media-text--reverse .media-text__media,
  .media-text--reverse .media-text__body { grid-column: auto; grid-row: auto; }
  .media-text--reverse .media-text__body { border-right: 0; }
  .media-text__title { margin-bottom: 16px; }
  .media-text__summary { -webkit-line-clamp: 6; line-clamp: 6; font-size:1rem;}

  .cols-2 { gap: 38px 16px; }
  .cols-3 { grid-template-columns: 1fr; gap: 38px 16px; }
  .card__thumb,
  .cols-2 .card__thumb { aspect-ratio: 16 / 10; }
  .cols-3 .card__summary { 
    display: -webkit-box; 
    font-size:1rem;
  }
}

@media (max-width: 430px) {
  .hero__actions { grid-template-columns: 1fr; }
  .toc-card__item { grid-template-columns: 24px 48px minmax(0, 1fr); }
  .toc-card__item--no-thumb { grid-template-columns: 24px minmax(0, 1fr); }
  .toc-card__chevron { display: none; }
}

/* ═══════════════════════════════════════════════
 * 서브(기사) 페이지 골격 — 모든 호 공통
 *  좌측 목차(side-quick) + 우측 본문(sub-article)
 * 기사 본문 콘텐츠(article-*, kvic-now, report-, mi-, subscribe)는
 * 각 호 css/sub.css 에서 관리.
 * ═══════════════════════════════════════════════ */

.sub-main {
  min-height: calc(100vh - var(--header-h));
  padding: calc(var(--header-h) + 34px) 0 104px;
  background: #ffffff;
}
.sub-main__inner {
  width: min(100% - 64px, var(--max-w));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 236px minmax(0, 1fr);
  gap: 34px 56px;
  align-items: start;
}
/* 툴바의 유일한 자식이 .side-toggle 이므로, 토글을 숨긴 지금은 툴바도 접는다.
 * (안 접으면 본문 위에 44px + row-gap 34px 짜리 빈 줄이 남는다)
 * 토글을 다시 노출할 때는 아래 display 를 flex 로 되돌릴 것. */
.sub-main__toolbar {
  grid-column: 1 / -1;
  min-height: 44px;
  display: none;
  align-items: center;
  justify-content: flex-end;
}
.sub-back { display: none !important; }

.side-toggle {
  width: fit-content;
  min-height: 40px;
  padding: 0 12px;
  display: none;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  color: var(--ink-sub);
  font-size: 0.88rem;
  font-weight: 650;
  transition: color var(--ease), border-color var(--ease);
}
.side-toggle:hover { border-color: var(--kvic-navy); color: var(--kvic-navy); }

.side-quick {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  display: grid;
  gap: 24px;
}
.side-quick__card {
  border-top: 2px solid var(--kvic-indigo);
  border-bottom: 1px solid var(--border);
}
.side-quick__eyebrow {
  padding: 18px 4px 12px;
  color: var(--kvic-navy);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.side-quick__list li + li { border-top: 1px solid var(--border-light); }
.side-quick__item {
  min-height: 54px;
  padding: 10px 4px;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  color: var(--ink-sub);
  font-size: 1rem;
  font-weight: 520;
  line-height: 1.45;
  word-break: keep-all;
  transition: color var(--ease), padding-left var(--ease);
}
.side-quick__item:hover { padding-left: 8px; color: var(--ink-strong); }
.side-quick__item.is-active { color: var(--kvic-indigo); font-weight: 720; }
.side-quick__number {
  color: var(--kvic-gray);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}
.side-quick__item.is-active .side-quick__number { color: var(--kvic-sky); }

.side-pdf {
  padding: 17px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-block: 1px solid var(--border);
  color: var(--ink-strong);
  transition: color var(--ease), border-color var(--ease);
}
.side-pdf:hover { border-color: var(--kvic-navy); color: var(--kvic-navy); }
.side-pdf__title { display: block; font-size: 0.92rem; font-weight: 720; }

.sub-article { grid-column: 2; min-width: 0; width: 100%; }
.sub-article__content { display: block; }

.article-empty {
  padding: 64px 24px;
  border-block: 1px solid var(--border);
  color: var(--ink-sub);
  font-size: 1rem;
  text-align: center;
}

/* 기사 하단 이전/다음 이동 — 모든 호 공통 (라운드 보더 버튼) */
.article-nav {
  margin-top: 56px;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--border);
}
.article-nav__spacer { flex: 1; }
.article-nav__link {
  max-width: 48%;
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  background: var(--surface);
  text-align: center;
  transition: border-color var(--ease), background-color var(--ease),
              transform var(--ease), box-shadow var(--ease);
}
.article-nav__name {
  color: var(--ink-strong);
  font-size: 1.05rem;
  font-weight: 720;
  line-height: 1.4;
  letter-spacing: -0.02em;
  word-break: keep-all;
  transition: color var(--ease);
}
.article-nav__link:hover {
  border-color: var(--kvic-navy);
  background: var(--kvic-navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.article-nav__link:hover .article-nav__name { color: #ffffff; }

@media (max-width: 768px) {
  .article-nav { flex-direction: column; gap: 12px; }
  .article-nav__spacer { display: none; }
  .article-nav__link { max-width: none; }
}

/* 목차 접힘 시 본문 1단 확장 */
.is-side-quick-hidden .sub-main__inner {
  grid-template-columns: minmax(0, 1fr);
  justify-content: stretch;
}
.is-side-quick-hidden .sub-main__toolbar,
.is-side-quick-hidden .sub-article { grid-column: 1; }
.is-side-quick-hidden .sub-article,
.is-side-quick-hidden .sub-article__content { width: 100%; max-width: none; }
.is-side-quick-hidden .side-quick { display: none; }

/* 다른 기사 카드(other-cards) — wz-sub.js 가 .is-active 토글 */
.other-cards { display: none; }
.other-cards.is-active { display: grid; }
.other-card__thumb {
  aspect-ratio: 2 / 2.1;
  overflow: hidden;
  border-radius: var(--radius-sm, 4px);
}
.other-card__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.other-card__subtitle {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: keep-all;
}
.other-card__subtitle:empty { display: none; }

@media (max-width: 1024px) {
  .sub-main__inner { grid-template-columns: 1fr; }
  .sub-main__toolbar,
  .side-quick,
  .sub-article { grid-column: 1; }
  .side-quick { position: static; }
  .side-quick__list { display: grid; grid-template-columns: 1fr 1fr; }
  .side-quick__list li + li { border-top: 0; }
  .side-quick__item { border-bottom: 1px solid var(--border-light); }
  .side-pdf { display: none; }
}

@media (max-width: 768px) {
  .sub-main { padding: calc(var(--header-h) + 22px) 0 64px; }
  .sub-main__inner { width: min(100% - 40px, var(--max-w)); gap: 24px; }
  .side-quick__list { grid-template-columns: 1fr; }
}
