/* ============================================================
   PRENSANOA — Minimal Editorial · Wide Layout
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,400&family=Lora:ital,wght@0,400;0,600;1,400&family=Inter:wght@300;400;500&display=swap');

:root {
  --ink:     #111;
  --mid:     #555;
  --muted:   #999;
  --rule:    #e5e5e5;
  --bg:      #fff;
  --bg2:     #f8f8f8;
  --red:     #c0392b;
  --font-h:  'Roboto Condensed', Arial Narrow, sans-serif;
  --font-b:  'Inter', system-ui, sans-serif;
  --font-s:  'Lora', Georgia, serif;
  --w:       100%;
  --px:      clamp(16px, 3vw, 48px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font-b); background: var(--bg); color: var(--ink); line-height: 1.5; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── Wrap ─────────────────────────────────────────────────── */
.wrap { width: 100%; max-width: 1300px; margin: 0 auto; padding: 0 var(--px); }

/* ── Topbar ───────────────────────────────────────────────── */
.topbar {
  border-bottom: 1px solid var(--rule);
  font-size: 11.5px;
  color: var(--muted);
  padding: 6px 0;
  font-family: var(--font-b);
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; }
.topbar-l { display: flex; align-items: center; gap: 20px; }
.topbar-weather { color: var(--mid); font-weight: 500; display: flex; align-items: center; gap: 5px; }
.topbar-r { display: flex; align-items: center; gap: 16px; }
.soc-row { display: flex; gap: 12px; }
.soc-row a { color: var(--muted); font-size: 13px; transition: color .15s; }
.soc-row a:hover { color: var(--ink); }
.btn-sub {
  font-family: var(--font-h); font-size: 10px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  border: 1.5px solid var(--ink); padding: 4px 12px; color: var(--ink);
  transition: background .15s, color .15s;
}
.btn-sub:hover { background: var(--ink); color: #fff; }

/* ── Header ───────────────────────────────────────────────── */
.site-header {
  background: #fff;
  padding: 28px 0 0;
  position: sticky; top: 0; z-index: 200;
  border-bottom: 2px solid var(--ink);
}
.hdr-logo { display: flex; justify-content: center; padding-bottom: 24px; }
.hdr-logo img { height: clamp(150px, 10vw, 180px); width: auto; object-fit: contain; }

/* ── Nav ──────────────────────────────────────────────────── */
.main-nav { border-top: 1px solid var(--rule); }
.main-nav ul { list-style: none; display: flex; flex-wrap: wrap; }
.main-nav li a {
  display: block;
  font-family: var(--font-h); font-size: 12px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--mid); padding: 10px 14px;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.main-nav li a:hover, .main-nav li a.on { color: var(--ink); border-bottom-color: var(--red); }
.main-nav li:first-child a { padding-left: 0; }

/* ── Ticker ───────────────────────────────────────────────── */
.ticker {
  display: flex; align-items: center; overflow: hidden;
  border-bottom: 1px solid var(--rule); height: 32px;
  font-size: 11.5px;
}
.ticker-lbl {
  flex-shrink: 0; background: var(--red); color: #fff;
  font-family: var(--font-h); font-size: 9.5px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 0 14px; height: 100%;
  display: flex; align-items: center; margin-right: 16px;
}
.ticker-track { overflow: hidden; flex: 1; }
.ticker-inner {
  display: inline-block; white-space: nowrap;
  animation: roll 55s linear infinite;
  color: var(--mid);
}
.ticker-inner a { color: var(--mid); margin: 0 28px; }
.ticker-inner a::before { content: '—'; margin-right: 8px; opacity: .4; }
@keyframes roll { 0%{transform:translateX(100vw)} 100%{transform:translateX(-100%)} }

/* ── Section label ────────────────────────────────────────── */
.sec-lbl {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--font-h); font-size: 10px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
  border-bottom: 1px solid var(--rule); padding-bottom: 6px; margin-bottom: 16px;
}
.sec-lbl .bar { width: 3px; height: 12px; background: var(--red); flex-shrink: 0; }

/* ── Chip (category) ──────────────────────────────────────── */
.chip {
  font-family: var(--font-h); font-size: 9px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--red);
  margin-bottom: 5px; display: inline-block;
}

/* ── Date ─────────────────────────────────────────────────── */
.art-date {
  font-family: var(--font-b); font-size: 10px; color: var(--muted);
  display: inline-block; margin-bottom: 4px;
}

/* ── Titles ───────────────────────────────────────────────── */
.t-xl { font-family: var(--font-h); font-size: clamp(1.8rem, 2.8vw, 2.6rem); font-weight: 700; line-height: 1.1; color: var(--ink); }
.t-lg { font-family: var(--font-h); font-size: clamp(1.2rem, 1.8vw, 1.65rem); font-weight: 700; line-height: 1.12; color: var(--ink); }
.t-md { font-family: var(--font-h); font-size: clamp(1rem, 1.2vw, 1.2rem); font-weight: 700; line-height: 1.18; color: var(--ink); }
.t-sm { font-family: var(--font-h); font-size: .93rem; font-weight: 700; line-height: 1.22; color: var(--ink); }
.t-xl a:hover, .t-lg a:hover, .t-md a:hover, .t-sm a:hover { color: var(--red); }
.t-xl a, .t-lg a, .t-md a, .t-sm a { color: inherit; }

.bajada { font-family: var(--font-b); font-size: 14px; color: var(--mid); line-height: 1.55; margin-top: 6px; }
.art-meta { font-size: 10px; color: var(--muted); margin-top: 5px; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 3fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1px; background: var(--rule);
  margin-bottom: 32px;
}
.hero-main {
  grid-row: 1 / 3; background: var(--bg2); overflow: hidden; position: relative;
}
.hero-main > a { display: block; height: 100%; }
.hero-main img { width: 100%; height: 100%; min-height: 420px; max-height: 580px; object-fit: cover; transition: transform .5s ease; }
.hero-main:hover img { transform: scale(1.02); }
.hero-main .caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.85) 0%, transparent 100%);
  padding: 48px 24px 24px;
}
.hero-main .caption .chip { color: #ff7b6a; }
.hero-main .caption .t-xl { color: #fff; }
.hero-main .caption .bajada { color: rgba(255,255,255,.8); font-size: 13.5px; }
.hero-main .caption .art-date { color: rgba(255,255,255,.5); }

.hero-side { background: #fff; overflow: hidden; display: flex; flex-direction: column; }
.hero-side-img { overflow: hidden; flex-shrink: 0; }
.hero-side-img img { width: 100%; height: clamp(130px, 12vw, 200px); object-fit: cover; transition: transform .4s; }
.hero-side:hover .hero-side-img img { transform: scale(1.04); }
.hero-side-body { padding: 12px 16px 16px; }

/* ── Grids ────────────────────────────────────────────────── */
.g3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 28px; }
.g4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: 24px; }
.g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 28px; }
.g5 { display: grid; grid-template-columns: repeat(5,1fr); gap: 20px; margin-bottom: 24px; }

/* ── Card ─────────────────────────────────────────────────── */
.card { background: #fff; }
.card-img { overflow: hidden; background: var(--bg2); }
.card-img img { width: 100%; aspect-ratio: 16/7; object-fit: cover; transition: transform .4s; }
.card:hover .card-img img { transform: scale(1.04); }
.card-body { padding: 10px 0; }

/* Horizontal card */
.card-h {
  display: grid; grid-template-columns: 110px 1fr; gap: 12px;
  padding: 11px 0; border-bottom: 1px solid var(--rule);
}
.card-h:last-child { border-bottom: none; }
.card-h-img { overflow: hidden; background: var(--bg2); flex-shrink: 0; }
.card-h-img img { width: 110px; height: 72px; object-fit: cover; transition: transform .4s; }
.card-h:hover .card-h-img img { transform: scale(1.05); }
.card-h-body { display: flex; flex-direction: column; justify-content: center; }

/* ── Layout ───────────────────────────────────────────────── */
.page { padding: 28px 0; }
.two-col { display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: start; }

/* ── Divider ──────────────────────────────────────────────── */
hr.rule { border: none; border-top: 1px solid var(--rule); margin: 28px 0; }

/* ── Ads ──────────────────────────────────────────────────── */
.ad {
  background: var(--bg2); border: 1px dashed var(--rule);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; position: relative;
}
.ad::after {
  content: 'PUBLICIDAD'; position: absolute; top: 6px; right: 8px;
  font-size: 8px; font-family: var(--font-h); letter-spacing: .12em; color: #ccc;
}
.ad-txt { font-size: 11px; color: #ccc; }
.ad-dim { font-size: 18px; font-weight: 700; color: #ddd; display: block; }
.ad-banner { height: 90px; margin-bottom: 24px; }
.ad-rect { height: 250px; margin-bottom: 24px; }
.ad-side { height: 250px; margin-bottom: 20px; }
.ad-strip { height: 90px; margin: 24px 0; }

/* ── MUNDIAL BLOCK ────────────────────────────────────────── */
.mundial-block {
  background: #0d1b2a;
  padding: 36px 0;
  margin: 36px 0;
  position: relative;
  overflow: hidden;
}
.mundial-block::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='28' fill='none' stroke='rgba(255,255,255,.04)' stroke-width='1'/%3E%3Cpolygon points='30,2 35,20 55,20 39,32 45,52 30,40 15,52 21,32 5,20 25,20' fill='none' stroke='rgba(255,255,255,.04)' stroke-width='1'/%3E%3C/svg%3E") center/60px;
  pointer-events: none;
}
.mundial-head {
  text-align: center; margin-bottom: 28px; position: relative;
}
.mundial-flag { font-size: 2rem; line-height: 1; margin-bottom: 8px; }
.mundial-head h2 {
  font-family: var(--font-h); font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: #fff; line-height: 1;
}
.mundial-head h2 span { color: #75aadb; }
.mundial-head p { font-size: 13px; color: rgba(255,255,255,.55); margin-top: 8px; font-style: italic; }
.mundial-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3px;
  background: rgba(255,255,255,.06);
}
.m-main { position: relative; overflow: hidden; }
.m-main img { width: 100%; aspect-ratio: 16/8; object-fit: cover; transition: transform .5s; opacity: .85; }
.m-main:hover img { transform: scale(1.03); opacity: 1; }
.m-main .cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(13,27,42,.92) 0%, transparent 100%);
  padding: 48px 20px 20px;
}
.m-main .cap .chip { color: #75aadb; }
.m-main .cap .t-lg { color: #fff; }
.m-main .cap .bajada { color: rgba(255,255,255,.7); font-size: 13px; }
.m-main .cap .art-date { color: rgba(255,255,255,.4); }
.m-side { background: rgba(255,255,255,.05); display: flex; flex-direction: column; }
.m-side-img { overflow: hidden; }
.m-side-img img { width: 100%; aspect-ratio: 16/9; object-fit: cover; opacity: .85; transition: transform .4s, opacity .4s; }
.m-side:hover .m-side-img img { transform: scale(1.04); opacity: 1; }
.m-side-body { padding: 12px 14px 14px; flex: 1; }
.m-side-body .chip { color: #75aadb; }
.m-side-body .t-md { color: #e8e8e8; }
.m-side-body .art-date { color: rgba(255,255,255,.4); }
.m-extra {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 3px;
  background: rgba(255,255,255,.06); margin-top: 3px;
}
.m-small { background: rgba(255,255,255,.04); padding: 14px; display: flex; flex-direction: column; gap: 6px; }
.m-small .chip { color: #75aadb; }
.m-small .t-sm { color: #e0e0e0; }
.m-small .art-date { color: rgba(255,255,255,.35); }

/* ── HORÓSCOPO ────────────────────────────────────────────── */
.horscopo {
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--rule);
  background: var(--bg2);
  padding: 32px 0;
  margin: 32px 0;
}
.horscopo-head { text-align: center; margin-bottom: 24px; }
.horscopo-head h2 {
  font-family: var(--font-h); font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink);
}
.horscopo-head p { font-size: 13px; color: var(--muted); margin-top: 5px; font-style: italic; }
.signos {
  display: grid; grid-template-columns: repeat(12,1fr); gap: 8px;
  max-width: 1060px; margin: 0 auto 20px;
}
.signo {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 12px 4px; background: #fff; border: 1px solid var(--rule);
  cursor: pointer; transition: border-color .15s, box-shadow .15s;
  text-decoration: none; color: inherit;
}
.signo:hover { border-color: var(--ink); box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.s-sym { font-size: 24px; line-height: 1; }
.s-nom { font-family: var(--font-h); font-size: 8.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--mid); }
.s-dat { font-size: 8px; color: var(--muted); }
.h-cta { text-align: center; }
.btn-hor {
  display: inline-block; font-family: var(--font-h);
  font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: #fff; background: var(--ink); padding: 10px 28px;
  transition: background .15s;
}
.btn-hor:hover { background: var(--red); color: #fff; }

/* ── Sidebar ──────────────────────────────────────────────── */
.sb-item {
  display: grid; grid-template-columns: 80px 1fr; gap: 10px;
  padding: 10px 0; border-bottom: 1px solid var(--rule);
}
.sb-item:last-child { border-bottom: none; }
.sb-img { overflow: hidden; background: var(--bg2); }
.sb-img img { width: 80px; height: 54px; object-fit: cover; transition: transform .4s; }
.sb-item:hover .sb-img img { transform: scale(1.06); }
.sb-item .t-sm { font-size: .82rem; }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer { border-top: 2px solid var(--ink); margin-top: 48px; }
.footer-grid {
  padding: 36px 0;
  display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr; gap: 36px;
  border-bottom: 1px solid var(--rule);
}
.footer-logo { max-height: 44px; margin-bottom: 14px; filter: grayscale(1); opacity: .7; }
.footer-about { font-size: 12.5px; color: var(--muted); line-height: 1.7; margin-bottom: 14px; }
.footer-soc { display: flex; gap: 12px; }
.footer-soc a { color: var(--muted); font-size: 14px; transition: color .15s; }
.footer-soc a:hover { color: var(--ink); }
.footer-col h4 {
  font-family: var(--font-h); font-size: 10px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--ink);
  margin-bottom: 12px; padding-bottom: 6px; border-bottom: 1px solid var(--rule);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 7px; }
.footer-col a { font-size: 12.5px; color: var(--muted); transition: color .15s; }
.footer-col a:hover { color: var(--ink); }
.footer-btm {
  padding: 14px 0; text-align: center; font-size: 11px; color: var(--muted);
}
.footer-btm a { color: var(--muted); }
.footer-btm a:hover { color: var(--ink); }

/* ── Nota individual ──────────────────────────────────────── */
.nota-wrap { max-width: 800px; }
.breadcrumb { font-size: 11.5px; color: var(--muted); margin-bottom: 20px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb span { margin: 0 5px; opacity: .5; }
.nota-ante { font-family: var(--font-h); font-size: 10.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.nota-title { font-family: var(--font-h); font-size: clamp(1.9rem, 3vw, 2.7rem); font-weight: 700; line-height: 1.08; color: var(--ink); margin-bottom: 14px; }
.nota-bajada { font-family: var(--font-s); font-size: 1.1rem; color: var(--mid); line-height: 1.6; margin-bottom: 18px; font-style: italic; }
.nota-bar {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  font-size: 11px; color: var(--muted);
  padding: 12px 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  margin-bottom: 24px;
}
.nota-bar .src { font-weight: 600; color: var(--mid); }
.nota-img { margin-bottom: 26px; }
.nota-img img { width: 100%; aspect-ratio: 16/7; object-fit: cover; }
.nota-img figcaption { font-size: 11.5px; color: var(--muted); padding: 6px 0; border-bottom: 1px solid var(--rule); font-style: italic; }
.nota-body { font-family: var(--font-s); font-size: 1.05rem; line-height: 1.85; color: #222; }
.nota-body p { margin-bottom: 22px; }
.nota-source { margin-top: 28px; padding: 14px 16px; background: var(--bg2); border-left: 3px solid var(--rule); font-size: 12.5px; color: var(--muted); }
.nota-source a { color: var(--mid); text-decoration: underline; }

/* ── Share buttons ────────────────────────────────────────── */
.share-bar { display: flex; align-items: center; gap: 10px; margin-top: 24px; flex-wrap: wrap; }
.share-bar span { font-family: var(--font-h); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.share-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-h); font-size: 10.5px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 7px 14px; border: 1.5px solid var(--rule);
  color: var(--mid); transition: all .15s; white-space: nowrap;
}
.share-btn:hover { border-color: var(--ink); color: var(--ink); }
.share-btn.fb:hover { border-color: #1877f2; color: #1877f2; }
.share-btn.tw:hover { border-color: #000; color: #000; }
.share-btn.wa:hover { border-color: #25d366; color: #25d366; }
.share-btn.tg:hover { border-color: #0088cc; color: #0088cc; }
.nota-back { margin-top: 24px; font-size: 12.5px; }
.nota-back a { color: var(--muted); border-bottom: 1px solid var(--rule); transition: color .15s; }
.nota-back a:hover { color: var(--ink); }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1300px) {
  .two-col { grid-template-columns: 1fr; }
  .g4 { grid-template-columns: repeat(2,1fr); }
  .mundal-grid { grid-template-columns: 1fr; }
  .signos { grid-template-columns: repeat(6,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; grid-template-rows: auto; }
  .hero-main { grid-row: auto; }
  .g3 { grid-template-columns: 1fr; gap: 0; }
  .g3 .card { border-bottom: 1px solid var(--rule); padding-bottom: 16px; margin-bottom: 16px; }
  .g3 .card:last-child { border-bottom: none; margin-bottom: 0; }
  .mundial-grid { grid-template-columns: 1fr; }
  .m-extra { grid-template-columns: 1fr; }
  .g5 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  .g4, .g2, .g5 { grid-template-columns: 1fr; }
  .signos { grid-template-columns: repeat(4,1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar-l .topbar-date { display: none; }
  .main-nav li a { font-size: 11px; padding: 8px 10px; }
  .nota-title { font-size: 1.6rem; }
  .hdr-logo img { height: 80px; }
  .hdr-logo { padding-bottom: 14px; }
  .site-header { padding-top: 16px; }
}
@media (max-width: 400px) {
  .signos { grid-template-columns: repeat(3,1fr); }
}
