@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/brand/fonts/inter-400.woff2") format("woff2");
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/brand/fonts/inter-500.woff2") format("woff2");
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/brand/fonts/inter-700.woff2") format("woff2");
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("/assets/brand/fonts/inter-800.woff2") format("woff2");
}

:root {
  --night: #061B36;
  --brand: #075EE5;
  --news: #079BEA;
  --accent: #19B5F1;
  --urgent: #E52535;
  --gold: #D4A84B;
  --gold-soft: #E8C96A;
  --gold-deep: #B8892F;
  --bg: #FFFFFF;
  --bg2: #F4F7FA;
  --ink: #101828;
  --muted: #667085;
  --line: #E4E7EC;
  --card: #FFFFFF;
  --chip: #061B36;
  --shadow: 0 10px 30px rgba(6,27,54,.08);
  --radius: 16px;
  --max: 1120px;
  --font: Inter, system-ui, -apple-system, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(7,94,229,.06), transparent 32%),
    linear-gradient(180deg, #fff 0%, var(--bg2) 55%);
  line-height: 1.5;
  font-weight: 400;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { width: min(var(--max), calc(100% - 2rem)); margin: 0 auto; }
.top {
  background: var(--night);
  color: #f5f8fc;
  padding-bottom: 0;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: none;
  transition: box-shadow .2s ease;
}
.top.is-stuck {
  box-shadow: 0 10px 28px rgba(0,0,0,.28);
}
.site-chrome .chrome-nav {
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.18);
}
.site-chrome .chrome-bar {
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.chrome-bar-inner {
  display: flex;
  align-items: center;
  gap: .85rem;
  min-height: 3.35rem;
  padding: .65rem 0;
}
.brand-lockup { display:inline-flex; align-items:center; flex: 0 0 auto; }
.brand-logo {
  height: 2.55rem;
  width: auto;
  display: block;
}
.footer .brand-logo { height: 2.8rem; margin-bottom: .5rem; }

.search-live {
  position: relative;
  flex: 1 1 auto;
  max-width: 420px;
  display: flex;
  align-items: center;
}
.search-live .search-ico {
  position: absolute;
  left: .85rem;
  color: #8fa3b5;
  pointer-events: none;
}
.search-live input {
  width: 100%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  border-radius: 999px;
  padding: .48rem 1rem .48rem 2.35rem;
  font-family: inherit;
  font-size: .9rem;
  outline: none;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.search-live input::placeholder { color: #8fa3b5; }
.search-live input:focus {
  background: rgba(255,255,255,.1);
  border-color: rgba(25,181,241,.55);
  box-shadow: 0 0 0 3px rgba(7,94,229,.22);
}

.chrome-market {
  display: none;
  align-items: center;
  gap: .4rem;
  flex: 0 0 auto;
  margin-left: auto;
}
.chrome-pill {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .28rem .6rem;
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  color: #d7e2eb;
  font-size: .72rem;
  font-weight: 700;
  white-space: nowrap;
}
.chrome-pill em { font-style: normal; color: #8fa3b5; font-weight: 600; }
.chrome-pill .pill-ico {
  display: inline-flex;
  color: var(--accent);
  line-height: 0;
}
.chrome-pill .pill-ico svg { width: 15px; height: 15px; }
.chrome-pill.money .pill-ico { color: #7dcea0; }
.chrome-pill.money.blue .pill-ico { color: #5dade2; }
.chrome-pill:hover { background: rgba(255,255,255,.12); color: #fff; }

.chrome-nav-inner { min-height: 2.05rem; }
.chrome-nav .nav {
  display:flex;
  gap:.15rem;
  overflow:auto;
  padding: .3rem 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.chrome-nav .nav::-webkit-scrollbar { display: none; }
.chrome-nav .nav a {
  white-space:nowrap;
  padding: .32rem .65rem;
  border-radius: 999px;
  color:#dce4ea;
  border:1px solid transparent;
  font-size: .8rem;
  font-weight: 700;
}
.chrome-nav .nav a:hover { border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.06); }

.chrome-ticker-wrap .marketbar { margin: 0; }
.chrome-ticker-wrap .market-desktop { display: none !important; }

@media (min-width: 901px) {
  .chrome-market { display: inline-flex; }
  .chrome-ticker-wrap { display: none; }
}

/* Clima / dólar mobile: franja dorada, sin pastillas */
.marketbar {
  border: 0;
  background:
    linear-gradient(180deg, var(--gold-soft) 0%, var(--gold) 55%, var(--gold-deep) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.28);
}
.marketbar-inner {
  display: flex;
  align-items: center;
  padding: .32rem 0;
  min-height: 0;
}
.market-rail {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  width: 100%;
}
.market-rail::-webkit-scrollbar { display: none; }
.market-rail.is-dragging { cursor: grabbing; scroll-behavior: auto; }
.market-cell {
  flex: 0 0 auto;
  scroll-snap-align: start;
  display: inline-flex;
  align-items: center;
  gap: .28rem;
  padding: .1rem .7rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--night);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
}
.market-cell:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: rgba(6,27,54,.2);
}
.market-cell .wx-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: var(--night);
  flex: 0 0 auto;
  line-height: 0;
  opacity: .85;
}
.market-cell .wx-icon svg { width: 12px; height: 12px; }
.market-cell .wx-icon.money { color: var(--night); background: transparent; opacity: .8; }
.market-cell.blue .wx-icon.money { color: var(--night); background: transparent; }
.market-cell-text {
  display: inline-flex;
  align-items: baseline;
  gap: .25rem;
  min-width: 0;
  line-height: 1.1;
}
.market-cell-text em {
  font-style: normal;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .01em;
  color: rgba(6,27,54,.72);
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 5.6rem;
}
.market-cell-text strong {
  font-size: .74rem;
  font-weight: 800;
  color: var(--night);
  font-variant-numeric: tabular-nums;
  letter-spacing: -.01em;
}
.market-cell:hover {
  background: rgba(6,27,54,.06);
}
.market-cell:hover .market-cell-text em,
.market-cell:hover .market-cell-text strong {
  color: var(--night);
}
.market-cell.money,
.market-cell.money.blue {
  background: transparent;
  border: 0;
}

/* legacy helpers */
.market-link { color: #9aabb6; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; font-size: .68rem; }
.market-val { color: #fff; font-weight: 800; font-variant-numeric: tabular-nums; }
.market-desc { color: #c5d0d8; }
.market-ticker, .market-desktop, .market-dots { display: none !important; }

.breaking {
  background: var(--night);
  border-bottom: 1px solid rgba(229,37,53,.4);
}
.breaking-inner { display:flex; gap:.4rem; align-items:center; padding:.16rem 0; min-height: 0; }
.breaking-label {
  background: var(--urgent); color:#fff; font-weight:700; font-size:.5rem;
  letter-spacing:.04em; padding:.1rem .32rem; border-radius:3px; flex:0 0 auto;
  white-space: nowrap; text-transform: lowercase; line-height: 1.1;
}
.breaking-track { display:flex; gap:.7rem; overflow:auto; white-space:nowrap; scrollbar-width:none; min-width: 0; flex: 1; }
.breaking-track::-webkit-scrollbar { display:none; }
.breaking-track a { color:#aebcc8; font-size:.6rem; font-weight: 500; line-height: 1.2; }
.breaking-track a:hover { color: var(--accent); }

.share {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: .65rem;
  margin: 1rem 0 1.2rem;
}
.share-label {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  flex: 0 0 auto;
}
.share-btns {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: .4rem;
  min-width: 0;
}
.share-ico {
  appearance: none;
  width: 2.2rem;
  height: 2.2rem;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--ink);
  border-radius: 999px;
  cursor: pointer;
  padding: 0;
  transition: background .15s ease, border-color .15s ease, color .15s ease, transform .15s ease;
}
.share-ico:hover { transform: translateY(-1px); border-color: var(--brand); color: var(--brand); }
.share-ico.wa:hover { border-color: #25D366; color: #128C7E; background: #f0fff6; }
.share-ico.fb:hover { border-color: #1877F2; color: #1877F2; background: #f0f6ff; }
.share-ico.x:hover { border-color: #111; color: #111; }
.share-ico.tg:hover { border-color: #229ED9; color: #229ED9; background: #f0f9ff; }
.share-ico.is-copied { background: #ecfdf3; border-color: #12b76a; color: #027a48; }
.share-ico.native { display: none; }
.share-btn { display: none; }

.volanta {
  display: inline-block;
  color: var(--brand);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.volanta.mini { font-size: .68rem; margin-right: .25rem; }
.meta-tags { display: flex; flex-wrap: wrap; gap: .35rem; align-items: center; margin-bottom: .35rem; }
.tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .15rem .5rem;
}
.article-tags { margin: .55rem 0 0; }
main.wrap { padding: 1.4rem 0 3rem; }
.card { background: var(--card); border:1px solid var(--line); border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow); }
.meta { display:flex; gap:.7rem; align-items:center; color:var(--muted); font-size:.85rem; }
.chip {
  display:inline-block; text-transform:uppercase; letter-spacing:.06em; font-size:.68rem; font-weight:700;
  background:var(--chip); color:#fff; padding:.28rem .55rem; border-radius:999px;
}
.chip.mini { font-size:.62rem; padding:.2rem .45rem; }
.kicker {
  margin: 0 0 .35rem;
  color: var(--brand);
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.article-meta {
  margin-top: .75rem;
  color: var(--muted);
  font-size: .9rem;
}
.article-meta a { color: var(--muted); font-weight: 700; }
.article-meta a:hover { color: var(--brand); }

/* Spotlight: mega + rail lateral */
.spotlight {
  display: grid;
  grid-template-columns: 1.55fr .95fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: stretch;
}
.mega {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--night);
  box-shadow: var(--shadow);
  min-height: 100%;
}
.mega-link {
  position: relative;
  display: block;
  color: #fff;
  min-height: 420px;
  height: 100%;
}
.mega-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mega-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,27,54,.15) 0%, rgba(6,27,54,.55) 45%, rgba(6,27,54,.92) 100%);
}
.mega-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: .45rem;
  min-height: 420px;
  height: 100%;
  padding: 1.35rem 1.4rem 1.5rem;
}
.mega-copy .chip { align-self: flex-start; background: var(--brand); }
.mega-copy h1 {
  margin: 0;
  font-size: clamp(1.55rem, 3.2vw, 2.35rem);
  line-height: 1.12;
  letter-spacing: -.03em;
  font-weight: 800;
  max-width: 28ch;
  text-wrap: balance;
}
.mega-copy p {
  margin: 0;
  color: rgba(255,255,255,.82);
  font-weight: 500;
  max-width: 46ch;
  font-size: 1.02rem;
}
.mega-copy time { color: rgba(255,255,255,.7); font-size: .85rem; }

.spotlight-side {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  min-width: 0;
}
.side-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  flex: 1;
  box-shadow: var(--shadow);
}
.side-card-link {
  display: flex;
  align-items: stretch;
  gap: 0;
  color: inherit;
  text-decoration: none;
  min-height: 102px;
  height: 100%;
}
.side-thumb {
  flex: 0 0 112px;
  width: 112px;
  align-self: stretch;
  overflow: hidden;
  background: var(--bg2);
}
.side-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.side-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .3rem;
  padding: .7rem .85rem;
}
.side-body .chip { align-self: flex-start; }
.side-body h2 {
  margin: 0;
  font-size: .95rem;
  line-height: 1.25;
  font-weight: 800;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.side-body time { color: var(--muted); font-size: .76rem; }

/* Rail / slider */
.rail-block .block-head { align-items: center; }
.rail-actions { display: flex; gap: .35rem; }
.rail-btn {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  font-weight: 700;
}
.rail-btn:hover { border-color: var(--brand); color: var(--brand); }
.rail {
  display: flex;
  gap: .85rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: .15rem .1rem .55rem;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.rail.is-dragging { cursor: grabbing; scroll-behavior: auto; }
.rail-card {
  flex: 0 0 min(78vw, 260px);
  scroll-snap-align: start;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.rail-card a { display: block; color: inherit; text-decoration: none; }
.rail-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}
.rail-card-body { padding: .75rem .85rem .9rem; }
.rail-card-body .chip { margin-bottom: .35rem; }
.rail-card-body h3 {
  margin: 0 0 .35rem;
  font-size: .98rem;
  line-height: 1.25;
  font-weight: 800;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.rail-card-body time { color: var(--muted); font-size: .78rem; }

/* Ads — look de aviso real */
.ad-slot {
  margin: .85rem 0 1.15rem;
  display: flex;
  justify-content: center;
}
.ad-slot > * { max-width: 100%; width: 100%; }
.ad-unit {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 8px 24px rgba(6,27,54,.12);
  border: 1px solid rgba(6,27,54,.08);
  min-height: 88px;
  padding: 1rem 1.15rem;
  isolation: isolate;
}
.ad-unit::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: inherit;
}
.ad-unit-label {
  position: absolute;
  top: .45rem;
  right: .55rem;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .72;
  color: inherit;
}
.ad-unit-body {
  display: grid;
  gap: .15rem;
  min-width: 0;
  flex: 1;
  padding-right: .25rem;
}
.ad-unit-kicker {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .85;
}
.ad-unit-title {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.2;
}
.ad-unit-text {
  font-size: .86rem;
  font-weight: 500;
  opacity: .88;
  line-height: 1.3;
}
.ad-unit-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .55rem .95rem;
  border-radius: 999px;
  background: rgba(255,255,255,.95);
  color: #061B36;
  font-weight: 800;
  font-size: .82rem;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0,0,0,.12);
}
.ad-unit--leader {
  min-height: 90px;
  background:
    radial-gradient(circle at 85% 20%, rgba(255,255,255,.22), transparent 35%),
    linear-gradient(105deg, #075EE5 0%, #079BEA 55%, #19B5F1 100%);
}
.ad-unit--billboard {
  min-height: 140px;
  padding: 1.25rem 1.35rem;
  background:
    radial-gradient(circle at 12% 80%, rgba(7,155,234,.35), transparent 40%),
    radial-gradient(circle at 90% 10%, rgba(255,255,255,.12), transparent 28%),
    linear-gradient(135deg, #061B36 0%, #0a3a6e 48%, #075EE5 100%);
}
.ad-unit--billboard .ad-unit-title { font-size: clamp(1.15rem, 2.5vw, 1.45rem); }
.ad-unit--strip {
  min-height: 78px;
  background:
    linear-gradient(100deg, #0f766e 0%, #14b8a6 55%, #2dd4bf 100%);
}
.ad-unit--native {
  min-height: 110px;
  background:
    linear-gradient(120deg, #7c2d12 0%, #c2410c 45%, #ea580c 100%);
}
.ad-unit--sand {
  background:
    linear-gradient(120deg, #92400e 0%, #d97706 50%, #f59e0b 100%);
  color: #fff7ed;
}
.ad-unit--rose {
  background:
    linear-gradient(120deg, #9f1239 0%, #e11d48 55%, #fb7185 100%);
}
.ad-unit--sky { color: #fff; }
.ad-unit--night { color: #f5f8fc; }
.ad-unit--mint { color: #ecfdf8; }

.block { margin: 2rem 0; }
.block-head { display:flex; justify-content:space-between; align-items:end; margin-bottom:.9rem; gap:1rem; }
.block-head h1, .block-head h2 { margin:0; letter-spacing:-.03em; font-weight: 800; }
.block-head a { color:var(--brand); font-weight:700; }
.grid3 { display:grid; grid-template-columns: repeat(3, 1fr); gap:1rem; }
.card.soft a { display:block; color: inherit; text-decoration: none; }
.card.soft img { width:100%; aspect-ratio: 16/10; object-fit:cover; display:block; }
.card.soft .card-body { padding: .75rem 1rem 1rem; }
.card.soft .chip { margin-bottom: .35rem; }
.card.soft h3 { margin:.35rem 0 .35rem; font-size:1.05rem; line-height:1.25; font-weight: 800; }
.card.soft time { display:block; color:var(--muted); font-size:.8rem; }
.list { display:flex; flex-direction:column; gap:.85rem; }
.list-item { background:var(--card); border:1px solid var(--line); border-radius:16px; overflow:hidden; box-shadow: var(--shadow); }
.list-link {
  display: flex;
  align-items: stretch;
  color: inherit;
  text-decoration: none;
  min-height: 110px;
}
.list-thumb {
  flex: 0 0 160px;
  width: 160px;
  overflow: hidden;
  background: var(--bg2);
}
.list-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.list-body {
  flex: 1;
  min-width: 0;
  padding: .9rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .25rem;
}
.list-body h3 { margin:0; font-weight: 800; }
.list-body p { margin:0; color:var(--muted); font-weight: 500; }
.list-body time { color:var(--muted); font-size:.8rem; }
.article { max-width: 760px; margin: 0 auto 2rem; }
.article-head h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); line-height:1.12; letter-spacing:-.035em; margin:.4rem 0; font-weight: 800; }
.dek { font-size:1.15rem; color:var(--muted); font-weight: 500; }
.article-media { margin: 1.2rem 0; }
.article-media img { width:100%; border-radius: 18px; }
.article-media figcaption { color:var(--muted); font-size:.8rem; margin-top:.4rem; }
.article-body { font-size:1.08rem; }
.article-body p { margin: 0 0 1rem; }
.article-body .source-note { margin-top:1.5rem; color:var(--muted); font-size:.9rem; border-top:1px solid var(--line); padding-top:1rem; }
.empty-home { text-align:center; padding: 4rem 1rem; }
.btn, button, .search.big button {
  display:inline-block;
  background: linear-gradient(90deg, #075EE5, #079BEA);
  color:#fff; border:0; border-radius:999px;
  padding:.7rem 1.1rem; font-weight:700; cursor:pointer; font-family: inherit;
}
.search.big { display:flex; gap:.6rem; margin-bottom:1rem; }
.search.big input { flex:1; border:1px solid var(--line); border-radius:999px; padding:.75rem 1rem; font-family: inherit; }
.muted { color: var(--muted); }
.footer {
  background:
    radial-gradient(circle at 12% 0%, rgba(7,94,229,.22), transparent 42%),
    linear-gradient(180deg, #0a2748 0%, var(--night) 55%);
  color:#d5dee4;
  padding: 3rem 0 1.4rem;
  margin-top:2.5rem;
}
.footer a { color:#fff; }
.footer a:hover { color: var(--accent); }
.footer-grid { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap:1.75rem; }
.footer-brand p { margin: .35rem 0; color:#aebcc6; max-width: 22rem; }
.footer-meta { font-size: .85rem; }
.footer strong {
  display:block;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #8fa0ab;
  margin-bottom: .2rem;
}
.footer ul { list-style:none; padding:0; margin:.5rem 0 0; }
.footer li { margin:.35rem 0; }
.copy { opacity:.7; margin-top:1.75rem; padding-top:1rem; border-top:1px solid rgba(255,255,255,.08); font-size:.85rem; }

.pager {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: .75rem;
  margin: 1.75rem 0 .5rem;
  flex-wrap: wrap;
}
.pager-pages { display:flex; align-items:center; gap: .35rem; flex-wrap: wrap; justify-content:center; flex:1; }
.pager-btn, .pager-page {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height: 2.35rem;
  padding: .4rem .85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--card);
  font-weight: 700;
  font-size: .9rem;
}
.pager-page { min-width: 2.35rem; padding: .4rem .55rem; }
.pager-page.is-current {
  background: var(--night);
  color: #fff;
  border-color: var(--night);
}
.pager-btn:hover, .pager-page:hover { border-color: var(--brand); }
.pager-btn.is-disabled { opacity: .4; pointer-events: none; }
.pager-gap { color: var(--muted); padding: 0 .2rem; }

.service-page { padding: .25rem 0 1rem; }
.service-head { margin-bottom: 1.4rem; max-width: 40rem; }
.service-kicker {
  margin: 0 0 .35rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .72rem;
  font-weight: 800;
  color: var(--brand);
}
.service-head h1 { margin: 0 0 .4rem; letter-spacing: -.03em; font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800; }
.service-lead { margin: 0; color: var(--muted); font-size: 1.05rem; font-weight: 500; }
.service-updated, .service-note { margin-top: .75rem; font-size: .85rem; }
.page-blocks { display: grid; gap: 1rem; max-width: 44rem; }
.page-block {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.15rem 1.25rem;
  box-shadow: var(--shadow);
}
.page-block h2 {
  margin: 0 0 .55rem;
  font-size: 1.15rem;
  letter-spacing: -.02em;
  font-weight: 800;
}
.page-prose { color: var(--ink); font-size: 1.02rem; line-height: 1.55; }
.page-prose p { margin: 0 0 .75rem; }
.page-prose p:last-child { margin-bottom: 0; }
.page-prose ul { margin: .35rem 0 .75rem; padding-left: 1.15rem; }
.page-prose a { color: var(--brand); font-weight: 700; }
.weather-grid, .dollar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: .9rem;
}
.weather-card, .dollar-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem 1.05rem;
  box-shadow: var(--shadow);
}
.weather-card-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: .75rem;
  align-items: center;
}
.weather-card h2, .dollar-card h2 { margin: 0; font-size: 1.05rem; font-weight: 800; }
.weather-card p { margin: .15rem 0 0; color: var(--muted); font-size: .85rem; }
.weather-temp { font-size: 1.8rem; font-weight: 800; letter-spacing: -.03em; }
.weather-meta {
  display: flex;
  gap: 1rem;
  margin: .9rem 0 0;
  padding-top: .75rem;
  border-top: 1px solid var(--line);
}
.weather-meta div { margin: 0; }
.weather-meta dt { font-size: .68rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.weather-meta dd { margin: .1rem 0 0; font-weight: 700; }
.wx-icon.lg { color: var(--news); display: inline-flex; }
.dollar-card.is-primary { border-color: rgba(7,94,229,.35); }
.dollar-prices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-top: .85rem;
}
.dollar-prices span { display:block; color: var(--muted); font-size: .75rem; margin-bottom: .15rem; }
.dollar-prices strong { font-size: 1.25rem; letter-spacing: -.02em; }

@media (max-width: 900px) {
  .wrap { width: min(var(--max), calc(100% - 1.25rem)); }
  main.wrap { padding: .75rem 0 2.25rem; }

  .spotlight, .hero, .grid3, .footer-grid { grid-template-columns: 1fr; }
  .spotlight { gap: .7rem; margin-bottom: .9rem; }

  .mega { border-radius: 14px; }
  .mega-link, .mega-copy { min-height: 260px; }
  .mega-copy { padding: 1rem 1rem 1.1rem; gap: .35rem; }
  .mega-copy h1 { font-size: 1.35rem; max-width: none; }
  .mega-copy p { display: none; }
  .mega-copy time { font-size: .75rem; }

  .spotlight-side {
    display: flex;
    flex-direction: row;
    gap: .65rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: .2rem;
    margin: 0 -.15rem;
    scrollbar-width: none;
  }
  .spotlight-side::-webkit-scrollbar { display: none; }
  .side-card {
    flex: 0 0 min(78vw, 280px);
    scroll-snap-align: start;
    min-height: 0;
  }
  .side-card-link { min-height: 88px; }
  .side-thumb { flex-basis: 88px; width: 88px; }
  .side-body { padding: .55rem .7rem; gap: .2rem; }
  .side-body h2 { font-size: .88rem; -webkit-line-clamp: 2; }
  .side-body time { font-size: .7rem; }

  .block { margin: 1.35rem 0; }
  .block-head { margin-bottom: .65rem; align-items: center; }
  .block-head h1, .block-head h2 { font-size: 1.15rem; }
  .block-head a { font-size: .85rem; }

  .grid3 { gap: .75rem; }
  .card.soft { border-radius: 14px; }
  .card.soft .card-body { padding: .65rem .8rem .8rem; }
  .card.soft h3 { font-size: .95rem; margin: .25rem 0; }
  .card.soft time { font-size: .72rem; }

  .rail-card { flex-basis: min(72vw, 220px); }
  .rail-card-body { padding: .65rem .75rem .75rem; }
  .rail-card-body h3 { font-size: .9rem; -webkit-line-clamp: 2; }
  .rail-actions { display: none; }

  .list { gap: .65rem; }
  .list-item { border-radius: 12px; }
  .list-link { min-height: 78px; }
  .list-thumb { flex-basis: 84px; width: 84px; }
  .list-body { padding: .55rem .7rem; gap: .15rem; }
  .list-body h3 { font-size: .92rem; line-height: 1.25; }
  .list-body p {
    font-size: .78rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .list-body time, .list-body .meta { font-size: .7rem; }
  .list-body .chip.mini { font-size: .58rem; padding: .12rem .35rem; }

  .ad-slot { margin: .7rem 0 .95rem; }
  .ad-unit {
    flex-direction: column;
    align-items: flex-start;
    gap: .65rem;
    min-height: 0;
    padding: 1rem .95rem .9rem;
    border-radius: 12px;
  }
  .ad-unit-label { top: .4rem; right: .5rem; font-size: .55rem; }
  .ad-unit-title { font-size: .98rem; }
  .ad-unit-text { font-size: .8rem; }
  .ad-unit-cta { align-self: stretch; text-align: center; width: 100%; padding: .55rem .75rem; }
  .ad-unit--leader, .ad-unit--strip { min-height: 0; }
  .ad-unit--billboard { min-height: 0; padding: 1.1rem .95rem 1rem; }
  .ad-unit--billboard .ad-unit-title { font-size: 1.08rem; }

  .breaking-inner { gap: .3rem; padding: .12rem 0; }
  .breaking-label { font-size: .48rem; padding: .08rem .28rem; }
  .breaking-track { gap: .55rem; }
  .breaking-track a { font-size: .55rem; }
  .marketbar-inner { padding: .26rem 0; }
  .market-cell { padding: .08rem .58rem; }
  .market-cell-text em { font-size: .56rem; max-width: 5rem; }
  .market-cell-text strong { font-size: .7rem; }

  .chrome-bar-inner { gap: .55rem; min-height: 2.9rem; padding: .5rem 0; }
  .brand-logo { height: 2.15rem; }
  .search-live { max-width: none; }
  .search-live input { font-size: .84rem; padding: .42rem .85rem .42rem 2.15rem; }
  .chrome-nav .nav a { padding: .28rem .55rem; font-size: .75rem; }
  .marketbar-inner { min-height: 1.9rem; padding: .22rem 0; }
  .pager { justify-content: center; }
  .share {
    flex-direction: column;
    align-items: flex-start;
    gap: .45rem;
  }
  .share-btns { flex-wrap: nowrap; }
  .share-ico { width: 2.05rem; height: 2.05rem; }
  .share-ico.native { display: inline-flex; }
  .share-btn.native { display: inline-flex; }
  .article-head h1 { font-size: 1.55rem; }
  .dek { font-size: 1rem; }
  .footer { padding: 2.2rem 0 1.2rem; margin-top: 1.75rem; }
}

@media (max-width: 480px) {
  .mega-link, .mega-copy { min-height: 230px; }
  .mega-copy h1 { font-size: 1.22rem; }
  .side-card { flex-basis: 86vw; }
  .chip { font-size: .6rem; padding: .2rem .45rem; }
}
