/* ============================================
   LA VANGUARDIA NACIONAL — CSS
   Estética editorial clásica + detalles modernos
   ============================================ */

:root {
  --ink: #1a1208;
  --ink-soft: #3d3020;
  --paper: #f5f0e8;
  --paper-alt: #ede8dc;
  --cream: #faf7f0;
  --red: #c0392b;
  --red-dark: #922b21;
  --gold: #b8860b;
  --gold-light: #d4a017;
  --border: #c8bca0;
  --border-light: #e0d8c4;
  --text-body: #2c2416;
  --text-muted: #7a6e5a;
  --shadow: 0 2px 12px rgba(26,18,8,.12);
  --shadow-lg: 0 8px 32px rgba(26,18,8,.18);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Libre Baskerville', Georgia, serif;
  --font-sans: 'Source Sans 3', Arial, sans-serif;
  --radius: 2px;
  --transition: all 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ── BREAKING TICKER ── */
.breaking-bar {
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  height: 38px;
  overflow: hidden;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.breaking-label {
  background: var(--red-dark);
  padding: 0 18px;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  letter-spacing: .05em;
  flex-shrink: 0;
}

.ticker-wrap { flex: 1; overflow: hidden; position: relative; }

.ticker {
  display: inline-block;
  white-space: nowrap;
  animation: ticker-scroll 40s linear infinite;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── HEADER ── */
.site-header {
  background: var(--cream);
  border-bottom: 3px double var(--border);
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 32px;
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-light);
  letter-spacing: .04em;
}

.separator { margin: 0 10px; opacity: .4; }

.masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px 16px;
  border-bottom: 1px solid var(--border);
}

.masthead-left .edition-tag {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 4px 10px;
  text-transform: uppercase;
}

.newspaper-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--ink);
  text-align: center;
  letter-spacing: -.02em;
  text-shadow: 1px 1px 0 rgba(0,0,0,.08);
}

.newspaper-title em {
  font-style: italic;
  color: var(--red);
}

.tagline {
  text-align: center;
  font-family: var(--font-body);
  font-style: italic;
  font-size: .9rem;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: .1em;
}

.masthead-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.social-links { display: flex; gap: 12px; }
.social-links a {
  font-size: 15px;
  color: var(--text-muted);
  transition: var(--transition);
  font-family: var(--font-sans);
  font-weight: 700;
}
.social-links a:hover { color: var(--red); }

.subscribe-btn {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 8px 20px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
}
.subscribe-btn:hover { background: var(--red-dark); }

/* NAV */
.main-nav {
  display: flex;
  align-items: center;
  padding: 0 32px;
  background: var(--ink);
  gap: 0;
  position: relative;
}

.main-nav ul {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
}

.main-nav ul li a {
  display: block;
  padding: 13px 16px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
  color: #fff;
  border-bottom-color: var(--gold-light);
}

.nav-search {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.search-input {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  padding: 7px 12px;
  font-family: var(--font-sans);
  font-size: 13px;
  width: 180px;
  outline: none;
  transition: var(--transition);
}

.search-input::placeholder { color: rgba(255,255,255,.4); }
.search-input:focus { background: rgba(255,255,255,.2); width: 220px; }

.search-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,.7);
  font-size: 15px;
  cursor: pointer;
  padding: 7px 10px;
  transition: var(--transition);
}
.search-btn:hover { color: #fff; }

.hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  padding: 10px 0;
}

/* ── SECTION HEADERS ── */
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
  border-bottom: 3px double var(--border);
  padding-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.01em;
}

.ver-mas {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: var(--transition);
}
.ver-mas:hover { color: var(--red-dark); text-decoration: underline; }

/* ── ARTICLE META ── */
.article-category {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.article-meta {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  gap: 12px;
  margin-top: 10px;
  align-items: center;
}

.time { font-style: italic; }
.author strong { color: var(--ink-soft); }

/* ── HERO SECTION ── */
.hero-section {
  padding: 40px 32px 32px;
  max-width: 1180px;
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 340px 220px;
  gap: 0;
  border: 1px solid var(--border);
}

.hero-main {
  padding: 32px 32px 32px 28px;
  border-right: 1px solid var(--border);
  position: relative;
}

.hero-main::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 900;
  line-height: 1.18;
  color: var(--ink);
  margin: 12px 0 16px;
  letter-spacing: -.02em;
}

.hero-excerpt {
  font-size: .97rem;
  line-height: 1.7;
  color: var(--ink-soft);
  border-top: 1px solid var(--border-light);
  padding-top: 14px;
}

.read-more {
  display: inline-block;
  margin-top: 18px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: .04em;
  transition: var(--transition);
}
.read-more:hover { color: var(--red-dark); letter-spacing: .08em; }

.hero-secondary { display: flex; flex-direction: column; border-right: 1px solid var(--border); }
.hero-sub {
  padding: 20px 24px;
  flex: 1;
}
.hero-sub h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
  margin-top: 6px;
}
.divider-h { height: 1px; background: var(--border-light); margin: 0 20px; }

.hero-side { padding: 20px 18px; display: flex; flex-direction: column; gap: 20px; }

.side-block { background: var(--paper-alt); border: 1px solid var(--border-light); padding: 16px; }
.side-title {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--ink-soft);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.data-list li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid var(--border-light);
  font-family: var(--font-sans);
  font-size: 13px;
}
.data-label { color: var(--text-muted); }
.data-val { font-weight: 700; }
.up { color: #1a7a3f; }
.down { color: var(--red); }

.poll-question {
  font-size: .88rem;
  font-style: italic;
  color: var(--ink-soft);
  margin-bottom: 12px;
  line-height: 1.4;
}
.poll-options { display: flex; flex-direction: column; gap: 8px; }
.poll-btn {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 8px 10px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
}
.poll-btn:hover { background: var(--red); color: #fff; border-color: var(--red); }
.poll-result { font-family: var(--font-sans); font-size: 12px; margin-top: 10px; color: var(--ink-soft); line-height: 1.6; }

/* ── BREAKING NEWS SECTION ── */
.breaking-section {
  background: var(--ink);
  padding: 28px 32px;
}

.breaking-section .section-header { border-color: rgba(255,255,255,.2); margin-bottom: 20px; }
.breaking-section .section-title { color: #fff; }
.red-dot { display: inline-block; width: 10px; height: 10px; background: var(--red); border-radius: 50%; margin-right: 10px; animation: pulse 1.2s infinite; }

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.8); }
}

.live-badge {
  background: var(--red);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 4px 10px;
  animation: pulse 2s infinite;
}

.breaking-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.1);
}

.breaking-card {
  background: var(--ink);
  padding: 16px 20px;
  border-left: 3px solid var(--red);
}
.bk-time {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: .06em;
  display: block;
  margin-bottom: 6px;
}
.breaking-card p {
  color: rgba(255,255,255,.85);
  font-size: .88rem;
  line-height: 1.5;
}

/* ── NEWS SECTION ── */
.news-section { padding: 48px 0; }
.alt-bg { background: var(--paper-alt); }

.news-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
}

.news-card { overflow: hidden; background: var(--cream); border: 1px solid var(--border-light); transition: var(--transition); }
.news-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }

.card-img-wrap { position: relative; overflow: hidden; }
.card-img { height: 220px; background-size: cover; background-position: center; transition: transform .4s ease; }
.news-card:hover .card-img { transform: scale(1.03); }
.card-img.img-politica { background: linear-gradient(135deg, #1a2a4a 0%, #2c4a80 100%); }
.card-img.img-sociedad { background: linear-gradient(135deg, #2d4a2d 0%, #4a7c4a 100%); }
.card-img.img-justicia { background: linear-gradient(135deg, #4a2d2d 0%, #7c4a4a 100%); }

.card-category {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
}

.featured-card .card-img { height: 280px; }

.card-body { padding: 20px; }
.card-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 8px;
}
.featured-card .card-body h3 { font-size: 1.3rem; }
.card-body p { font-size: .88rem; color: var(--ink-soft); line-height: 1.6; }

/* ── LIST ARTICLES ── */
.news-list { display: flex; flex-direction: column; gap: 0; }
.list-article {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-light);
  align-items: flex-start;
}
.list-article:last-child { border-bottom: none; }
.list-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
  width: 44px;
  text-align: center;
}
.list-content h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin: 6px 0 8px;
}
.list-content p { font-size: .88rem; color: var(--ink-soft); line-height: 1.6; }

/* ── TWO COL ── */
.two-col-section { padding: 48px 0; background: var(--cream); }
.two-col-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.col-block { padding: 0; }

.sport-article {
  background: var(--ink);
  color: #fff;
  padding: 20px;
  margin-bottom: 20px;
  text-align: center;
}
.sport-score-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
}
.team { font-family: var(--font-display); font-size: .95rem; font-weight: 700; }
.score { font-family: var(--font-display); font-size: 1.8rem; font-weight: 900; color: var(--gold-light); }
.sport-article p { font-size: .85rem; color: rgba(255,255,255,.8); line-height: 1.5; }

.mini-article {
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
}
.mini-article:last-child { border-bottom: none; }
.mini-article h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-top: 6px;
  line-height: 1.35;
  transition: var(--transition);
}
.mini-article:hover h4 { color: var(--red); }

.culture-feature { display: flex; gap: 14px; margin-bottom: 20px; border-bottom: 1px solid var(--border-light); padding-bottom: 20px; }
.culture-img { width: 110px; height: 90px; flex-shrink: 0; background: linear-gradient(135deg, #4a2d4a 0%, #7c4a7c 100%); }
.culture-body h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin: 6px 0 6px; line-height: 1.3; }
.culture-body p { font-size: .82rem; color: var(--ink-soft); line-height: 1.5; }

/* ── TECNOLOGÍA ── */
.tech-section { padding: 48px 0; background: var(--paper-alt); }
.tech-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tech-card {
  background: var(--cream);
  border: 1px solid var(--border-light);
  padding: 28px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.tech-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
}
.tech-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.tech-icon { font-size: 2rem; margin-bottom: 12px; }
.tech-card h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; margin: 8px 0 10px; line-height: 1.3; }
.tech-card p { font-size: .88rem; color: var(--ink-soft); line-height: 1.6; margin-bottom: 12px; }
.tech-card .time { font-family: var(--font-sans); font-size: 12px; color: var(--text-muted); font-style: italic; }

/* ── REPORTES ── */
.reports-section { padding: 52px 0; }
.reports-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.report-card {
  background: var(--cream);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}
.report-card:hover { box-shadow: var(--shadow); }
.report-header {
  background: var(--ink);
  color: #fff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.report-icon { font-size: 1.3rem; }
.report-header h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; flex: 1; }
.report-date { font-family: var(--font-sans); font-size: 11px; color: rgba(255,255,255,.6); }
.report-list { padding: 8px 0; }
.report-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
  border-bottom: 1px solid var(--border-light);
  font-family: var(--font-sans);
  font-size: 13px;
}
.report-list li:last-child { border-bottom: none; }
.report-list li span:first-child { color: var(--text-muted); }
.report-list li span:last-child { font-weight: 700; color: var(--ink); }
.report-list .up { color: #1a7a3f; }
.report-list .down { color: var(--red); }

/* ── OPINIÓN ── */
.opinion-section { padding: 48px 0; background: var(--paper-alt); }
.opinion-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.opinion-card {
  display: flex;
  gap: 16px;
  background: var(--cream);
  border: 1px solid var(--border-light);
  padding: 24px;
  transition: var(--transition);
}
.opinion-card:hover { box-shadow: var(--shadow); }
.columnist-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--border);
}
.av1 { background: linear-gradient(135deg, #8b6914, #c8960c); }
.av2 { background: linear-gradient(135deg, #1a4a8b, #2c6bba); }
.av3 { background: linear-gradient(135deg, #4a1a2d, #7c2d4a); }

.opinion-body h4 {
  font-family: var(--font-display);
  font-size: .98rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.35;
  margin-bottom: 8px;
  color: var(--ink);
}
.opinion-body p { font-size: .82rem; color: var(--ink-soft); line-height: 1.6; margin-bottom: 8px; }
.columnist-name { font-family: var(--font-sans); font-size: 12px; font-weight: 600; color: var(--text-muted); display: block; }

/* ── NEWSLETTER ── */
.newsletter-section {
  background: var(--red);
  padding: 52px 32px;
}
.newsletter-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-text h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}
.newsletter-text p { color: rgba(255,255,255,.85); font-size: .95rem; margin-bottom: 28px; }
.newsletter-form { display: flex; gap: 0; max-width: 480px; margin: 0 auto; }
.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  font-family: var(--font-sans);
  font-size: 14px;
  border: none;
  outline: none;
  background: rgba(255,255,255,.95);
  color: var(--ink);
}
.newsletter-form button {
  background: var(--ink);
  color: #fff;
  border: none;
  padding: 14px 24px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}
.newsletter-form button:hover { background: var(--gold); }
.newsletter-note { color: rgba(255,255,255,.9); margin-top: 16px; font-family: var(--font-sans); font-size: 14px; }

/* ── CONTACT ── */
.contact-section { padding: 60px 0; background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; }

.contact-info h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; color: var(--ink); }
.contact-info p { font-family: var(--font-sans); font-size: 14px; color: var(--ink-soft); margin-bottom: 6px; }
.contact-info hr { border: none; border-top: 1px solid var(--border-light); margin: 20px 0; }
.dept-list li { font-family: var(--font-sans); font-size: 13px; color: var(--ink-soft); padding: 5px 0; border-bottom: 1px solid var(--border-light); }
.dept-list li strong { color: var(--ink); }

.contact-form h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; margin-bottom: 20px; color: var(--ink); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: var(--transition);
  margin-bottom: 12px;
  display: block;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--red); background: #fff; }
.contact-form textarea { resize: vertical; }
.submit-btn {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}
.submit-btn:hover { background: var(--red-dark); }
.form-success { font-family: var(--font-sans); font-size: 14px; color: #1a7a3f; margin-top: 12px; }

/* ── FOOTER ── */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.75);
  padding-top: 52px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
  font-style: italic;
}

.footer-brand p { font-size: .85rem; line-height: 1.7; }

.footer-social { display: flex; gap: 14px; margin-top: 18px; }
.footer-social a {
  color: rgba(255,255,255,.5);
  font-weight: 700;
  font-family: var(--font-sans);
  font-size: 14px;
  transition: var(--transition);
}
.footer-social a:hover { color: var(--gold-light); }

.footer-links h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.footer-links ul li { margin-bottom: 8px; }
.footer-links ul li a {
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.footer-links ul li a:hover { color: #fff; }

.footer-bottom {
  text-align: center;
  padding: 18px 32px;
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(255,255,255,.35);
}
.footer-bottom p { margin-bottom: 4px; }

/* ── ANIMATIONS ── */
.fade-in { opacity: 0; transform: translateY(16px); animation: fadeUp .6s ease forwards; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero-side { display: none; }
  .reports-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .featured-card { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .masthead { flex-direction: column; gap: 12px; text-align: center; }
  .masthead-left, .masthead-right { display: none; }

  .hamburger { display: block; }
  .main-nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--ink);
    z-index: 999;
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .main-nav ul.open { display: flex; }
  .nav-search { display: none; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-secondary { border-right: none; }
  .breaking-grid { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: 1fr; }
  .two-col-grid { grid-template-columns: 1fr; }
  .opinion-grid { grid-template-columns: 1fr; }
  .reports-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-section { padding: 20px 16px; }
  .breaking-section { padding: 20px 16px; }
}

@media (max-width: 480px) {
  .breaking-grid { grid-template-columns: 1fr; }
  .reports-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
}
