/**
 * CapitalTimes — style.css
 * 역할: 전체 스타일 정의 (색상/폰트/간격/반응형)
 * 수정 시 건드릴 계층: CSS only
 * 건드리지 않을 파일: index.html, app.js
 * 최종 수정: 2026-04-08
 * font-display: swap → Google Fonts URL &display=swap 파라미터로 처리
 */

/* ── RESET & BASE ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── CSS VARIABLES ────────────────────────────────── */
:root {
  --ink:      #141414;
  --paper:    #fff;
  --paper2:   #f5f0e8;
  --bg:       #f0ebe0;
  --line:     #e0d8cc;
  --line2:    #b0a090;
  --accent:   #1a6b35;
  --accent-d: #145228;
  --green:    #1a6b35;
  --muted:    #666;
  --gold:     #d7c469;
  --max:      1240px;
  --price-up: #1a6b35;
  --price-dn: #c0392b;
}

/* ── BODY & LAYOUT ────────────────────────────────── */
body {
  font-family: 'Libre Baskerville', Georgia, serif;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}
.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

/* ── ANIMATIONS ───────────────────────────────────── */
@keyframes ticker  { from { transform: translateX(0);        } to { transform: translateX(-50%);      } }
@keyframes fadeIn  { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }

/* ── BREAKING TICKER ──────────────────────────────── */
.brk { background: var(--ink); display: flex; align-items: center; height: 30px; overflow: hidden; }
.brk-lbl {
  font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: .12em; color: var(--gold); padding: 0 14px;
  border-right: 1px solid #333; white-space: nowrap;
  display: flex; align-items: center; gap: 6px; height: 100%; flex-shrink: 0;
}
.brk-dot { width: 5px; height: 5px; border-radius: 50%; background: #c9483c; }
.brk-scroll { overflow: hidden; flex: 1; }
.brk-track { display: inline-flex; white-space: nowrap; animation: ticker 60s linear infinite; }
.brk-scroll:hover .brk-track { animation-play-state: paused; }
.brk-item { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; color: #bbb; padding: 0 22px; transition: color .15s; }
.brk-item:hover { color: var(--gold); }
.brk-sep { color: #444; }

/* ── MASTHEAD ─────────────────────────────────────── */
.mast { background: #196c36; border-bottom: 1px solid var(--line2); }
.mast-top {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; padding: 22px 0 7px;
}
.mast-meta {
  font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 600;
  letter-spacing: .1em; color: rgba(255,255,255,.6);
}
.logo {
  font-family: 'UnifrakturMaguntia', serif; font-size: 94px; color: #fff;
  line-height: 1; text-align: center; letter-spacing: 0.06em;
  text-shadow: 6px 9px 0 rgba(0,0,0,.85), 7px 10px 12px rgba(0,0,0,.65);
}
.logo-space { display: inline-block; width: 16px; }
.tagline-row { display: flex; align-items: center; justify-content: center; padding-top: 18px; padding-bottom: 23px; }
.tagline {
  font-family: 'Barlow Condensed', sans-serif; font-size: 21px; font-weight: 700;
  letter-spacing: .3em; color: rgba(255,255,255,.92);
}

/* ── NAV BAR ──────────────────────────────────────── */
.nav-bar { background: var(--ink); border-bottom: 1px solid var(--line2); }
.nav-inner { display: flex; align-items: stretch; overflow-x: auto; scrollbar-width: none; }
.nav-inner::-webkit-scrollbar { display: none; }
.nav-inner a {
  font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: .08em; color: #555; background: var(--paper); padding: 0 18px;
  height: 34px; display: flex; align-items: center; border-right: 1px solid var(--line);
  white-space: nowrap; flex-shrink: 0; transition: color .15s;
}
.nav-inner a.active { background: var(--ink); color: #fff; }
.nav-inner a:hover:not(.active) { color: var(--ink); }

/* ── MARKET TICKER ────────────────────────────────── */
.tkr-bar { background: var(--paper); border-bottom: 1px solid var(--line); }
.tkr-inner { display: flex; align-items: center; height: 30px; }
.tkr-lbl {
  font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: .1em; color: #555; padding: 0 16px 0 18px; white-space: nowrap; flex-shrink: 0;
}
.tkr-scroll { overflow: hidden; flex: 1; }
.tkr-track { display: inline-flex; white-space: nowrap; animation: ticker 29s linear infinite; }
.tkr-item { display: inline-flex; align-items: center; gap: 5px; padding: 0 20px; border-right: 1px solid var(--line); }
.t-sym { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700; color: var(--ink); }
.t-val { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; color: #555; }
.t-chg { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700; }
.up { color: var(--price-up); }
.dn { color: var(--price-dn); }

/* ── HERO ─────────────────────────────────────────── */
.main-area { background: var(--paper); }
.hero { border-bottom: 1px solid var(--line); }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; }
.hero-col { padding: 24px 28px 24px; min-height: 395px; overflow: hidden; display: flex; flex-direction: column; }
.hero-col:first-child { border-right: 1px solid var(--line); }
.eyebrow {
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: .14em; color: var(--accent); margin-bottom: 14px;
}
.headline-top       { display: grid; align-items: start; }
.headline-top-left  { display: grid; grid-template-columns: 1fr 220px; gap: 18px; align-items: start; }
.headline-top-right { display: grid; grid-template-columns: 1fr 180px; gap: 14px; align-items: start; }
.headline-text { min-width: 0; }
.headline-image-link { display: block; align-self: start; }
.headline-image {
  width: 100%; height: 148px; object-fit: cover; object-position: top center;
  display: block; background: #c8c0b4; transition: opacity .2s;
}
.headline-image:hover { opacity: .85; }
.h-lead {
  font-family: 'Libre Baskerville', serif; font-size: 28px; line-height: 1.22; color: var(--ink);
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; transition: color .15s;
}
.h-lead:hover { color: var(--accent); }
.h-feat {
  font-family: 'Libre Baskerville', serif; font-size: 20px; line-height: 1.25; color: var(--ink);
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; transition: color .15s;
}
.h-feat:hover { color: var(--accent); }
.divider { width: 32px; height: 2px; background: var(--accent); margin: 12px 0 10px; }
.art-sum {
  font-family: 'Libre Baskerville', serif; font-size: 12px; color: #555; line-height: 1.55;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin: 0 0 10px;
}
.art-body {
  font-family: 'Libre Baskerville', serif; font-size: 13px; color: #444; line-height: 1.62;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 0; flex: 1;
}
.art-meta {
  font-family: 'Barlow Condensed', sans-serif; font-size: 9px; font-weight: 600;
  color: var(--muted); letter-spacing: .08em; margin-top: auto; padding-top: 6px;
}

/* ── TODAY'S SECTIONS ─────────────────────────────── */
.sections {
  background: var(--paper2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.sec-head { display: flex; align-items: center; gap: 14px; padding: 16px 0 14px; }
.sec-title {
  font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: .16em; color: var(--accent); white-space: nowrap;
}
.sec-line { flex: 1; height: 1px; background: var(--ink); }
.sec-5col { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border-top: 1px solid var(--line); }
.sec-card { background: var(--paper); padding: 14px 14px 16px; border-right: 1px solid var(--line); display: flex; flex-direction: column; }
.sec-card:last-child { border-right: none; }
.sec-card-img { width: 100%; height: 130px; object-fit: cover; display: block; margin-bottom: 10px; background: #c8c0b4; transition: opacity .15s; }
.sec-card-img:hover { opacity: .85; }
.sec-cat { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .12em; color: var(--accent); margin-bottom: 5px; display: block; }
.sec-h {
  font-family: 'Libre Baskerville', serif; font-size: 13px; font-weight: 700; line-height: 1.3; color: var(--ink);
  margin-bottom: 6px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; transition: color .15s;
}
.sec-h:hover { color: var(--accent); }
.sec-body {
  font-family: 'Libre Baskerville', serif; font-size: 11px; color: var(--muted); line-height: 1.6; font-style: italic;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.sec-meta { font-family: 'Barlow Condensed', sans-serif; font-size: 9px; color: var(--muted); margin-top: auto; padding-top: 8px; letter-spacing: .06em; }

/* ── SECTIONS 3-ROW (Today / AI / Health 공용) ────── */
.sec-3row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); }
.row-card { display: flex; flex-direction: column; padding: 14px 14px 16px; border-right: 1px solid var(--line); background: var(--paper); }
.row-card:last-child { border-right: none; }
.row-img-lnk { display: block; margin-bottom: 10px; }
.row-img { width: 100%; height: 130px; object-fit: cover; display: block; background: #c8c0b4; transition: opacity .15s; }
.row-img:hover { opacity: .85; }
.row-cat { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .12em; color: var(--accent); display: block; margin-bottom: 5px; }
.row-h {
  font-family: 'Libre Baskerville', serif; font-size: 13px; font-weight: 700; line-height: 1.28; color: var(--ink);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; transition: color .15s; margin-bottom: 5px;
}
.row-h:hover { color: var(--accent); }
.row-body {
  font-family: 'Libre Baskerville', serif; font-size: 11px; color: var(--muted); line-height: 1.55;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.row-meta { font-family: 'Barlow Condensed', sans-serif; font-size: 9px; color: var(--muted); margin-top: auto; padding-top: 8px; letter-spacing: .06em; }

/* ── OPINION (DARK) ───────────────────────────────── */
.dark-row { background: #111; border-top: 1px solid #222; border-bottom: 1px solid #222; }
.dark-inner { display: grid; grid-template-columns: 170px 1px 1fr; align-items: stretch; }
.dark-lbl-wrap { display: flex; align-items: center; justify-content: center; padding: 24px 20px; }
.dark-lbl-txt { font-family: 'Libre Baskerville', serif; font-style: italic; font-weight: 700; font-size: 34px; line-height: 1.1; color: var(--accent); max-width: 100%; word-break: keep-all; overflow: hidden; }
.dark-divider { background: #3a3030; }
.dark-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.dark-card { padding: 24px 20px; border-right: 1px solid #2a2a2a; display: flex; flex-direction: column; gap: 6px; }
.dark-card:last-child { border-right: none; }
.dark-cat { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .14em; color: var(--accent); display: block; }
.dark-h {
  font-family: 'Libre Baskerville', serif; font-style: italic; font-size: 15px; font-weight: 700; line-height: 1.3; color: #fff;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; transition: color .15s;
}
.dark-h:hover { color: #e8c84a; }
.dark-meta { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; color: #555; letter-spacing: .06em; margin-top: auto; padding-top: 6px; }

/* ── AI & TECHNOLOGY (light / .sections 확장) ─────── */
.ai-row { background: var(--paper); }

/* ── HEALTH & SCIENCE (light / .sections 확장) ───── */
.health-row { background: var(--paper); }

/* ── MARKET SNAPSHOT ──────────────────────────────── */
.mkt-snap { background: var(--paper2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 18px 0 20px; }
.mkt-snap-hd { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.mkt-snap-title { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .16em; color: var(--ink); }
.mkt-snap-ts { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; color: var(--muted); letter-spacing: .04em; }
.mkt-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.mkt-card { background: var(--paper); border: 1px solid var(--line); padding: 14px 16px; }
.mkt-nm { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.mkt-cd { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; color: var(--muted); margin-bottom: 10px; }
.mkt-v  { font-family: 'Libre Baskerville', serif; font-size: 26px; font-weight: 700; color: var(--ink); line-height: 1; margin-bottom: 4px; }
.mkt-c  { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700; margin-bottom: 6px; }
.mkt-est { font-size: 10px; color: var(--muted); margin-top: 2px; }
.mkt-n  { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; color: var(--muted); line-height: 1.4; }

/* ── COMMODITY STRIP ──────────────────────────────── */
.commodity { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.commodity-inner { display: flex; height: 52px; }
.c-item { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; border-right: 1px solid var(--line); padding: 0 8px; transition: background .15s; }
.c-item:last-child { border-right: none; }
.c-item:hover { background: #f5f0e8; }
.c-lbl { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .12em; color: var(--muted); }
.c-val { font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 700; color: var(--ink); }
.c-chg { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700; display: flex; align-items: center; gap: 2px; }
.c-up  { color: var(--green); }
.c-dn  { color: var(--accent); }
.c-nt  { color: var(--muted); }
.tri-up::before { content: "▲"; font-size: 8px; margin-right: 1px; }
.tri-dn::before { content: "▼"; font-size: 8px; margin-right: 1px; }

/* ── ABOUT ────────────────────────────────────────── */
.about-band { background: var(--paper2); border-bottom: 1px solid var(--line); padding: 22px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1px 1fr 1px 1fr; }
.about-div  { background: var(--line); }
.about-item { padding: 0 26px; }
.about-item:first-child { padding-left: 0; }
.about-num  { font-family: 'Libre Baskerville', serif; font-size: 30px; font-weight: 700; color: var(--ink); line-height: 1; margin-bottom: 3px; }
.about-lbl  { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .1em; color: var(--accent); margin-bottom: 5px; }
.about-body { font-size: 11px; color: var(--muted); line-height: 1.55; }

/* ── SUBSCRIBE ────────────────────────────────────── */
.sub-band { background: #1a1a1a; padding: 32px 0; }
.sub-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.sub-badge { display: inline-block; background: var(--accent); color: #fff; font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .12em; padding: 3px 10px; margin-bottom: 12px; }
.sub-h    { font-family: 'Libre Baskerville', serif; font-size: 22px; font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 10px; }
.sub-h em { color: var(--gold); font-style: italic; }
.sub-body { font-size: 12px; color: #888; line-height: 1.6; }
.sub-form { background: #222; padding: 18px; }
.sub-ft   { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.sub-fs   { font-size: 11px; color: #888; margin-bottom: 12px; }
.sub-field { width: 100%; background: #2a2a2a; border: 1px solid #333; color: #fff; font-size: 12px; padding: 8px 10px; margin-bottom: 8px; outline: none; }
.sub-plans { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 12px; }
.sub-plan  { border: 1px solid #333; padding: 8px 10px; display: flex; align-items: center; gap: 8px; cursor: pointer; }
.sub-plan.sel { border-color: var(--accent); }
.sub-pdot  { width: 10px; height: 10px; border-radius: 50%; border: 1px solid #555; flex-shrink: 0; }
.sub-plan.sel .sub-pdot { background: var(--accent); border-color: var(--accent); }
.sub-pname { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700; color: #fff; }
.sub-pdesc { font-size: 10px; color: #888; }
.sub-btn   { width: 100%; background: var(--accent); color: #fff; border: none; font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: .1em; padding: 10px; cursor: pointer; margin-bottom: 6px; transition: background .15s; }
.sub-btn:hover { background: var(--accent-d); }
.sub-priv  { font-size: 9px; color: #555; }

/* ── CONTACT ──────────────────────────────────────── */
.contact { background: var(--ink); padding: 50px 0; text-align: center; }
.ct-logo { font-family: 'UnifrakturMaguntia', serif; font-size: 44px; color: #fff; margin-bottom: 8px; }
.ct-tag  { font-family: 'Libre Baskerville', serif; font-style: italic; font-size: 18px; color: #666; margin-bottom: 20px; }
.ct-note { font-family: 'Libre Baskerville', serif; font-style: italic; font-size: 13px; color: #555; line-height: 1.7; margin-bottom: 26px; }
.ct-btn  { display: inline-flex; align-items: center; gap: 10px; background: var(--accent); color: #fff; font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: .18em; padding: 14px 32px; transition: background .15s; }
.ct-btn:hover { background: var(--accent-d); }

/* ── FOOTER ───────────────────────────────────────── */
.footer { background: var(--paper2); border-top: 1px solid var(--line2); padding: 16px 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.f-logo { font-family: 'Libre Baskerville', serif; font-size: 18px; font-weight: 700; color: var(--ink); }
.f-copy { font-size: 9px; color: var(--muted); }
.f-links { display: flex; gap: 16px; flex-wrap: wrap; }
.f-link  { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .08em; color: var(--accent); transition: opacity .15s; }
.f-link:hover { opacity: .7; }
.delayed { font-size: 9px; color: var(--muted); letter-spacing: .04em; opacity: .7; margin-left: 3px; }

/* ── SCROLL TO TOP ────────────────────────────────── */
#scroll-top {
  position: fixed; bottom: 32px; right: 28px; width: 44px; height: 44px;
  background: var(--accent); color: #fff; border: none; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.28); opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .25s; z-index: 9999;
}
#scroll-top.visible { opacity: 1; pointer-events: auto; }
#scroll-top:hover   { background: var(--accent-d); transform: translateY(-4px); }

/* ── UTILITY ──────────────────────────────────────── */
.img-fail { position: relative; background: #1a1a1a !important; min-height: 130px; display: flex !important; align-items: center; justify-content: center; }
.img-fail::after { content: attr(data-label); font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .14em; color: rgba(255,255,255,.35); text-align: center; }
.art-photo.img-fail, .art-photo-sm.img-fail { min-height: 148px; }
.news-fade { animation: fadeIn .4s ease forwards; }
.news-err  { display: flex; align-items: center; justify-content: center; min-height: 200px; font-family: 'Barlow Condensed', sans-serif; font-size: 13px; letter-spacing: .1em; color: var(--muted); text-align: center; padding: 20px; line-height: 1.8; }

/* ── RESPONSIVE (≤720px) ──────────────────────────── */
@media (max-width: 720px) {
  #scroll-top { bottom: 20px; right: 16px; width: 40px; height: 40px; }

  .mast-top { grid-template-columns: 1fr; text-align: center; gap: 1vw; padding: 2vw 0 1vw; }
  .mast-meta { text-align: center; padding: 2.5vw 0 1.5vw; }
  .logo { font-size: 11.2vw; letter-spacing: 0.04em; white-space: nowrap; }
  .tagline-row { padding-top: 2vw; padding-bottom: 3vw; }
  .tagline { font-size: 2.66vw; letter-spacing: .18em; }

  .wrap { width: 100%; }
  .nav-inner { padding-left: 0; }
  .nav-inner a:first-child { padding-left: 4.07vw; }
  .tkr-inner { padding: 0 4.07vw; }
  .tkr-lbl { padding-left: 0; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-col  { padding: 4.07vw 4.07vw; height: auto; min-height: 0; }
  .hero-col:first-child { border-right: none; border-bottom: 1px solid var(--line); }
  .headline-top,
  .headline-top-left,
  .headline-top-right { display: flex !important; grid-template-columns: none !important; flex-direction: row; gap: 10px; align-items: flex-start; justify-content: space-between; }
  .headline-text { display: block; min-width: 0; flex: 0 0 calc(62% - 5px); max-width: calc(62% - 5px); }
  .headline-image-link { display: block; flex: 0 0 calc(38% - 5px); width: calc(38% - 5px); align-self: flex-start; }
  .headline-image { width: 100% !important; height: auto !important; aspect-ratio: 1/0.756 !important; object-fit: cover !important; object-position: top center; margin-bottom: 0; align-self: start !important; flex-shrink: 0 !important; }
  .h-lead { font-size: 5.1vw; }
  .h-feat { font-size: 4.33vw; }

  .sec-5col { grid-template-columns: 1fr; }
  .sec-card { border-right: none; border-bottom: 1px solid var(--line); padding: 0; }
  .sec-card-img { width: 100%; height: 50.9vw; margin-bottom: 0; }
  .sec-card .sec-cat,
  .sec-card .sec-h,
  .sec-card .sec-body,
  .sec-card .sec-meta { padding-left: 4.07vw; padding-right: 4.07vw; }
  .sec-card .sec-cat  { padding-top: 3.05vw; }
  .sec-card .sec-meta { padding-bottom: 3.56vw; }

  .sec-3row { grid-template-columns: 1fr; }
  .row-card  { border-right: none; border-bottom: 1px solid var(--line); padding: 0; }
  .row-img-lnk { display: block; margin-bottom: 0; }
  .row-img   { width: 100%; height: 50.9vw; }
  .row-card .row-cat,
  .row-card .row-h,
  .row-card .row-body,
  .row-card .row-meta { padding-left: 4.07vw; padding-right: 4.07vw; }
  .row-card .row-cat  { padding-top: 3.05vw; }
  .row-card .row-meta { padding-bottom: 3.56vw; }

  .dark-inner { grid-template-columns: 1fr; }
  .dark-lbl-wrap { padding: 4.58vw 4.07vw; justify-content: flex-start; }
  .dark-grid  { grid-template-columns: 1fr; }
  .dark-card  { border-right: none; border-bottom: 1px solid #222; padding: 4.58vw 4.07vw; }

  .sec-head { padding: 16px 4.07vw 14px !important; }

  .mkt-snap .wrap { padding: 0 4.07vw; }
  .mkt-grid { grid-template-columns: 1fr 1fr; }
  .commodity-inner { flex-wrap: wrap; height: auto; }
  .c-item { flex: 1 1 30%; border-bottom: 1px solid var(--line); padding: 2.04vw; }

  .about-band .wrap { padding: 0 4.07vw; }
  .about-grid { grid-template-columns: 1fr; gap: 4vw; }
  .about-div  { display: none; }
  .about-item { padding: 0; }

  .sub-band .wrap { padding: 0 4.07vw; }
  .sub-grid { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer .wrap { padding: 0 4.07vw; }

  .art-sum  { -webkit-line-clamp: 2 !important; margin-bottom: 8px !important; }
  .art-body { -webkit-line-clamp: 3 !important; }
}
