/* ============================================
   NEWS DOMINICA — Caribbean Editorial Style
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,400&family=Roboto+Slab:wght@400;700;900&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --navy: #0A1628;
  --navy-light: #132238;
  --ocean: #1B6B93;
  --ocean-light: #2A8AB4;
  --gold: #E8A838;
  --gold-light: #F2C46D;
  --gold-dark: #C48A20;
  --coral: #E85D4A;
  --teal: #1A9E8F;
  --sand: #FAF6F0;
  --sand-dark: #F0E8DA;
  --white: #FFFFFF;
  --gray-50: #F8F9FA;
  --gray-100: #F1F3F5;
  --gray-200: #E9ECEF;
  --gray-300: #DEE2E6;
  --gray-400: #ADB5BD;
  --gray-500: #868E96;
  --gray-600: #495057;
  --gray-700: #343A40;
  --gray-800: #212529;
  --text: #1A1A2E;
  --text-secondary: #555B6E;
  --font-display: 'Roboto Slab', Georgia, 'Times New Roman', serif;
  --font-body: 'Roboto', 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
  --max-width: 1280px;
  --header-height: 48px;
  --radius: 6px;
  --shadow-sm: 0 1px 3px rgba(10,22,40,0.08);
  --shadow-md: 0 4px 12px rgba(10,22,40,0.10);
  --shadow-lg: 0 8px 30px rgba(10,22,40,0.12);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--sand);
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: var(--ocean); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--ocean-light); }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

/* ---- UTILITIES ---- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.text-gold { color: var(--gold); }
.text-coral { color: var(--coral); }
.text-ocean { color: var(--ocean); }

/* ---- TOP BAR ---- */
.top-bar {
  background: var(--navy);
  color: var(--gray-300);
  font-size: 0.8rem;
  padding: 6px 0;
  letter-spacing: 0.02em;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a { color: var(--gray-300); }
.top-bar a:hover { color: var(--gold); }
.top-bar__date { font-family: var(--font-mono); font-size: 0.75rem; }
.top-bar__links { display: flex; gap: 16px; }
.top-bar__weather { display: flex; align-items: center; gap: 6px; }
.top-bar__weather svg { width: 16px; height: 16px; fill: var(--gold); }

/* ---- HEADER ---- */
.header {
  background: var(--white);
  border-bottom: 3px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo__icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo__icon svg { width: 26px; height: 26px; }
.logo__text h1 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}
.logo__text span {
  font-family: var(--font-body);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-dark);
  font-weight: 600;
}

/* ---- NAVIGATION ---- */
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav a:hover::after,
.nav a.active::after { transform: scaleX(1); }
.nav a:hover { color: var(--ocean); }
.nav a.active { color: var(--ocean); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- BREAKING NEWS TICKER ---- */
.ticker {
  background: var(--coral);
  color: var(--white);
  overflow: hidden;
  white-space: nowrap;
  padding: 0;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: stretch;
  height: 34px;
}
.ticker__label {
  display: flex;
  align-items: center;
  background: var(--navy);
  color: var(--gold);
  padding: 0 16px;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
  z-index: 2;
  position: relative;
}
.ticker__wrap {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
}
.ticker__content {
  display: inline-block;
  animation: scroll-left 35s linear infinite;
  padding-left: 20px;
}
.ticker__content span {
  margin-right: 60px;
  display: inline;
}
.ticker__content span::before {
  content: '\25C6';
  margin-right: 10px;
  color: var(--gold);
  font-size: 0.7em;
}

@keyframes scroll-left {
  0% { transform: translateX(10%); }
  100% { transform: translateX(-100%); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* ---- HERO SECTION ---- */
.hero {
  padding: 30px 0 10px;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
}
.hero__main {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero__main-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transition: opacity var(--transition);
}
.hero__main:hover .hero__main-img { opacity: 0.35; }
.hero__main-content {
  position: relative;
  z-index: 2;
  padding: 30px;
  background: linear-gradient(transparent, rgba(10,22,40,0.95));
}
.hero__main-content .category-tag {
  background: var(--gold);
  color: var(--navy);
}
.hero__main-content h2 {
  font-size: 2rem;
  color: var(--white);
  margin: 12px 0 10px;
  line-height: 1.15;
}
.hero__main-content h2 a { color: var(--white); }
.hero__main-content h2 a:hover { color: var(--gold-light); }
.hero__main-content p {
  color: var(--gray-300);
  font-size: 1rem;
  line-height: 1.5;
}

.hero__sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 420px;
}
.hero__side-card {
  flex: 1;
  border-radius: 6px;
  overflow: hidden;
  background: #0A1628;
  min-height: 130px;
  position: relative;
}
.hero__side-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  opacity: 0.55;
}
.hero__side-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: -webkit-linear-gradient(top, rgba(10,22,40,0), rgba(10,22,40,0.85));
  background: linear-gradient(to bottom, rgba(10,22,40,0), rgba(10,22,40,0.85));
  z-index: 2;
}
.hero__side-card-content h3 {
  font-size: 1.05rem;
  color: var(--white);
  margin-top: 6px;
}
.hero__side-card-content h3 a { color: var(--white); }
.hero__side-card-content h3 a:hover { color: var(--gold-light); }

/* ---- CATEGORY TAG ---- */
.category-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 3px;
  background: var(--ocean);
  color: var(--white);
}
.category-tag--politics { background: #5C6BC0; }
.category-tag--sports { background: var(--teal); }
.category-tag--business { background: var(--gold-dark); color: var(--white); }
.category-tag--culture { background: var(--coral); }

/* ---- SECTION HEADINGS ---- */
.section-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--navy);
}
.section-heading h2 {
  font-size: 1.4rem;
  white-space: nowrap;
}
.section-heading::after {
  content: '';
  flex: 1;
  height: 2px;
  background: var(--gold);
}

/* ---- NEWS GRID ---- */
.news-section { padding: 30px 0; }

.content-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 36px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.news-grid--3col { grid-template-columns: repeat(3, 1fr); }

/* ---- NEWS CARD ---- */
.news-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.news-card__image {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: var(--navy-light);
}
.news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.news-card:hover .news-card__image img { transform: scale(1.05); }
.news-card__image .category-tag {
  position: absolute;
  top: 12px;
  left: 12px;
}
.news-card__body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.news-card__body h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  line-height: 1.3;
}
.news-card__body h3 a { color: var(--navy); }
.news-card__body h3 a:hover { color: var(--ocean); }
.news-card__body p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
  flex: 1;
}
.news-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--gray-200);
  font-size: 0.78rem;
  color: var(--gray-500);
}
.news-card__meta .author { font-weight: 600; color: var(--gray-700); }

/* ---- NEWS LIST (horizontal card) ---- */
.news-list { display: flex; flex-direction: column; gap: 18px; }
.news-list-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.news-list-item:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.news-list-item__image {
  height: 100%;
  min-height: 100px;
  overflow: hidden;
  background: var(--navy-light);
}
.news-list-item__image img { width: 100%; height: 100%; object-fit: cover; }
.news-list-item__body { padding: 14px 14px 14px 0; }
.news-list-item__body h4 { font-size: 0.95rem; line-height: 1.3; margin-bottom: 6px; }
.news-list-item__body h4 a { color: var(--navy); }
.news-list-item__body h4 a:hover { color: var(--ocean); }
.news-list-item__body .news-card__meta { margin-top: 8px; padding-top: 8px; }

/* ---- SIDEBAR ---- */
.sidebar { display: flex; flex-direction: column; gap: 28px; }

.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.sidebar-widget__header {
  background: var(--navy);
  color: var(--white);
  padding: 12px 18px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-widget__header svg { width: 18px; height: 18px; fill: var(--gold); }
.sidebar-widget__body { padding: 18px; }

/* Weather Widget */
.weather {
  text-align: center;
}
.weather__temp {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.weather__condition {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 4px 0 12px;
}
.weather__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--gray-600);
}
.weather__details span { display: block; }
.weather__details strong { color: var(--navy); }

/* Betting Banner */
.betting-banner {
  display: block;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #1a3a5c 100%);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  color: var(--white);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.betting-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(232,168,56,0.1) 50%, transparent 70%);
  transition: transform 0.6s ease;
}
.betting-banner:hover::before { transform: translateX(100%); }
.betting-banner:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); color: var(--white); }
.betting-banner__label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}
.betting-banner__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--white);
}
.betting-banner__text {
  font-size: 0.85rem;
  color: var(--gray-300);
  margin-bottom: 14px;
  line-height: 1.4;
}
.betting-banner__cta {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 28px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all var(--transition);
}
.betting-banner:hover .betting-banner__cta { background: var(--gold-light); }

/* Popular Posts */
.popular-list { list-style: none; counter-reset: popular; }
.popular-list li {
  counter-increment: popular;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.popular-list li:last-child { border-bottom: none; padding-bottom: 0; }
.popular-list li::before {
  content: counter(popular, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  min-width: 36px;
}
.popular-list li a {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  line-height: 1.35;
}
.popular-list li a:hover { color: var(--ocean); }
.popular-list li .meta {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-top: 3px;
}

/* ---- ARTICLE PAGE ---- */
.article-header {
  padding: 30px 0 0;
}
.article-header .category-tag { margin-bottom: 14px; }
.article-header h1 {
  font-size: 2.4rem;
  line-height: 1.15;
  margin-bottom: 16px;
  max-width: 800px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 16px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 28px;
  font-size: 0.88rem;
  color: var(--gray-600);
}
.article-meta .author-name { font-weight: 700; color: var(--navy); }
.article-meta .separator { color: var(--gray-300); }

.article-body {
  max-width: 760px;
}
.article-body p {
  font-size: 1.08rem;
  line-height: 1.75;
  margin-bottom: 20px;
  color: var(--text);
}
.article-body h2 {
  font-size: 1.5rem;
  margin: 32px 0 14px;
}
.article-body h3 {
  font-size: 1.2rem;
  margin: 24px 0 10px;
}
.article-body blockquote {
  border-left: 4px solid var(--gold);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--sand-dark, #F0E8DA);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--navy);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.article-body ul, .article-body ol {
  margin: 16px 0;
  padding-left: 28px;
}
.article-body li {
  margin-bottom: 8px;
  font-size: 1.05rem;
  line-height: 1.65;
}
.article-body a {
  color: var(--ocean);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
}
.article-body a:hover { color: var(--gold-dark); }

.article-featured-img {
  width: 100%;
  border-radius: var(--radius);
  margin-bottom: 8px;
  background: var(--navy-light);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 0.85rem;
  overflow: hidden;
}
.article-featured-img img { width: 100%; height: auto; }
.article-img-caption {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-style: italic;
  margin-bottom: 24px;
}

/* Related Articles */
.related-articles { margin-top: 40px; padding-top: 30px; border-top: 2px solid var(--navy); }

/* ---- CATEGORY PAGE ---- */
.category-header {
  padding: 30px 0 20px;
}
.category-header h1 {
  font-size: 2.2rem;
  margin-bottom: 6px;
}
.category-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--navy);
  color: var(--gray-300);
  margin-top: 50px;
}
.footer-wave {
  height: 40px;
  background: var(--sand);
  position: relative;
}
.footer-wave::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: var(--navy);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
  padding: 40px 0 30px;
}
.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 14px 0;
  color: var(--gray-400);
}
.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer__social a {
  width: 36px;
  height: 36px;
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 0.85rem;
  transition: all var(--transition);
}
.footer__social a:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.footer h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 8px; }
.footer ul a {
  color: var(--gray-400);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer ul a:hover { color: var(--white); }

.footer__partners {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer__partners a {
  color: var(--gold-light);
  font-weight: 600;
}
.footer__partners a:hover { color: var(--gold); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ---- IMAGE PLACEHOLDERS (SVG patterns) ---- */
.placeholder-img {
  width: 100%;
  height: 100%;
  background: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.placeholder-img::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.15;
}
.placeholder-img.img-politics::before {
  background: linear-gradient(135deg, #5C6BC0, #3949AB);
  opacity: 0.3;
}
.placeholder-img.img-sports::before {
  background: linear-gradient(135deg, var(--teal), #0D7377);
  opacity: 0.3;
}
.placeholder-img.img-business::before {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  opacity: 0.3;
}
.placeholder-img.img-culture::before {
  background: linear-gradient(135deg, var(--coral), #C0392B);
  opacity: 0.3;
}
.placeholder-img.img-tourism::before {
  background: linear-gradient(135deg, #26a69a, #00796b);
  opacity: 0.3;
}
.placeholder-img.img-hero::before {
  background: linear-gradient(135deg, var(--ocean), var(--navy));
  opacity: 0.3;
}
.placeholder-img span {
  position: relative;
  z-index: 2;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}

/* ---- BREADCRUMB ---- */
.breadcrumb {
  padding: 14px 0;
  font-size: 0.82rem;
  color: var(--gray-500);
}
.breadcrumb a { color: var(--gray-500); }
.breadcrumb a:hover { color: var(--ocean); }
.breadcrumb .sep { margin: 0 8px; color: var(--gray-300); }

/* ---- SHARE BUTTONS ---- */
.share-bar {
  display: flex;
  gap: 10px;
  margin: 20px 0;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  transition: all var(--transition);
}
.share-btn:hover { opacity: 0.85; color: var(--white); transform: translateY(-1px); }
.share-btn--facebook { background: #1877F2; }
.share-btn--twitter { background: #1DA1F2; }
.share-btn--whatsapp { background: #25D366; }

/* ---- PAGINATION ---- */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
}
.pagination a, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.pagination a { color: var(--navy); background: var(--white); box-shadow: var(--shadow-sm); }
.pagination a:hover { background: var(--navy); color: var(--white); }
.pagination .active { background: var(--navy); color: var(--white); pointer-events: none; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .content-layout { grid-template-columns: 1fr; }
  .sidebar { flex-direction: row; flex-wrap: wrap; }
  .sidebar > * { flex: 1; min-width: 280px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__main { min-height: 300px; }
  .hero__main-content h2 { font-size: 1.5rem; }
  .news-grid { grid-template-columns: 1fr; }
  .news-grid--3col { grid-template-columns: 1fr; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 10px 20px 20px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--gray-200);
  }
  .nav.open { display: flex; }
  .nav a { padding: 10px 0; }
  .nav a::after { bottom: 4px; left: 0; right: auto; width: 30px; }
  .nav-toggle { display: flex; }
  .article-header h1 { font-size: 1.8rem; }
  .footer__top { grid-template-columns: 1fr; gap: 24px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .news-list-item { grid-template-columns: 110px 1fr; }
  .top-bar__links { display: none; }
}

@media (max-width: 480px) {
  .hero__main { min-height: 240px; }
  .hero__main-content h2 { font-size: 1.25rem; }
  .logo__text h1 { font-size: 1.3rem; }
  .article-header h1 { font-size: 1.5rem; }
}

/* ---- ANIMATIONS ---- */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger > *:nth-child(1) { transition-delay: 0.05s; }
.stagger > *:nth-child(2) { transition-delay: 0.1s; }
.stagger > *:nth-child(3) { transition-delay: 0.15s; }
.stagger > *:nth-child(4) { transition-delay: 0.2s; }
.stagger > *:nth-child(5) { transition-delay: 0.25s; }
.stagger > *:nth-child(6) { transition-delay: 0.3s; }
