/* ============================================
   LE BROL - THÈME MÉDIA PROFESSIONNEL 2025
   Inspiré de lessentiel.lu - Style belge moderne
   Palette: Navy #0f2e3a, Blue #366f9f, Beige #dfc79f
   ============================================ */

/* ========== GOOGLE FONTS ========== */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700;900&family=Public+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Palette principale */
  --lb-navy: #0f2e3a;
  --lb-blue: #366f9f;
  --lb-beige: #dfc79f;
  --lb-beige-light: #f5efe4;
  --lb-white: #ffffff;
  
  /* Tons neutres */
  --lb-gray-50: #f8fafc;
  --lb-gray-100: #f1f5f9;
  --lb-gray-200: #e2e8f0;
  --lb-gray-300: #cbd5e1;
  --lb-gray-400: #94a3b8;
  --lb-gray-500: #64748b;
  --lb-gray-600: #475569;
  --lb-gray-700: #334155;
  --lb-gray-800: #1e293b;
  
  /* Accents */
  --lb-red: #dc2626;
  --lb-green: #059669;
  --lb-amber: #f59e0b;
  
  /* Typography */
  --font-heading: 'Merriweather', Georgia, serif;
  --font-body: 'Public Sans', system-ui, sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-card: 0 1px 3px rgba(15, 46, 58, 0.08);
  --shadow-card-hover: 0 8px 25px rgba(15, 46, 58, 0.12);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;
  --transition-slow: 300ms ease;
}

/* ========== BASE STYLES ========== */
.media-page {
  background: var(--lb-beige-light);
  min-height: 100vh;
}

/* ========== TYPOGRAPHY ========== */
.media-title-xl {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.15;
  color: var(--lb-navy);
  letter-spacing: -0.02em;
}

.media-title-lg {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--lb-navy);
  letter-spacing: -0.01em;
}

.media-title-md {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--lb-navy);
}

.media-title-sm {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--lb-navy);
}

.media-body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--lb-gray-700);
}

.media-caption {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--lb-gray-500);
}

.media-overline {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lb-blue);
}

/* ========== SECTION HEADERS ========== */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--lb-navy);
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--lb-navy);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0;
}

.section-header-accent {
  border-bottom-color: var(--lb-beige);
}

.section-header .view-all {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--lb-blue);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: color var(--transition-fast);
}

.section-header .view-all:hover {
  color: var(--lb-navy);
}

/* ========== ARTICLE CARDS ========== */
.news-card {
  background: var(--lb-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--lb-gray-200);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
  border-color: var(--lb-beige);
}

.news-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--lb-gray-100);
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.news-card:hover .news-card-image img {
  transform: scale(1.05);
}

.news-card-body {
  padding: 1rem 1.25rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card-category {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--lb-blue);
  background: rgba(54, 111, 159, 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.news-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--lb-navy);
  margin: 0 0 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-title:hover {
  color: var(--lb-blue);
}

.news-card-excerpt {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--lb-gray-600);
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--lb-gray-500);
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--lb-gray-100);
}

.news-card-meta svg {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}

/* ========== HERO CARD (À LA UNE) ========== */
.hero-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--lb-navy);
}

.hero-card-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.hero-card:hover .hero-card-image {
  transform: scale(1.03);
}

.hero-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 46, 58, 0.95) 0%, rgba(15, 46, 58, 0.4) 40%, transparent 70%);
}

.hero-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  color: white;
}

.hero-card-category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--lb-beige);
  color: var(--lb-navy);
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.hero-card-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.15;
  margin: 0 0 0.5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

@media (min-width: 768px) {
  .hero-card-title {
    font-size: 2.5rem;
  }
}

.hero-card-date {
  font-size: 0.875rem;
  opacity: 0.85;
}

/* ========== COMPACT ARTICLE LIST ========== */
.article-list-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--lb-gray-200);
  transition: background var(--transition-fast);
}

.article-list-item:hover {
  background: var(--lb-gray-50);
  margin: 0 -1rem;
  padding: 1rem;
  border-radius: 8px;
}

.article-list-item:last-child {
  border-bottom: none;
}

.article-list-thumb {
  flex-shrink: 0;
  width: 100px;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  background: var(--lb-gray-100);
}

.article-list-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-list-content {
  flex: 1;
  min-width: 0;
}

.article-list-title {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--lb-navy);
  margin: 0 0 0.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-list-title:hover {
  color: var(--lb-blue);
}

.article-list-date {
  font-size: 0.8rem;
  color: var(--lb-gray-500);
}

/* ========== MOST READ RANKING ========== */
.ranking-list {
  counter-reset: ranking;
  list-style: none;
  padding: 0;
  margin: 0;
}

.ranking-item {
  counter-increment: ranking;
  position: relative;
  padding: 1rem 1rem 1rem 3.5rem;
  border-bottom: 1px solid var(--lb-gray-200);
  transition: background var(--transition-fast);
}

.ranking-item:hover {
  background: var(--lb-gray-50);
}

.ranking-item::before {
  content: counter(ranking);
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.875rem;
  border-radius: 50%;
  background: var(--lb-beige);
  color: var(--lb-navy);
}

.ranking-item:first-child::before {
  background: var(--lb-navy);
  color: white;
}

.ranking-item a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--lb-navy);
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ranking-item a:hover {
  color: var(--lb-blue);
}

/* ========== REGION BLOCKS ========== */
.region-block {
  background: var(--lb-white);
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--lb-gray-200);
}

.region-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.region-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  background: var(--lb-navy);
  color: white;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  text-decoration: none;
  transition: background var(--transition-fast);
}

.region-badge:hover {
  background: var(--lb-blue);
  color: white;
}

.region-badge svg {
  width: 12px;
  height: 12px;
}

.region-articles {
  list-style: none;
  padding: 0;
  margin: 0;
}

.region-article {
  margin-bottom: 1rem;
}

.region-article:last-child {
  margin-bottom: 0;
}

.region-article-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 0.5rem;
  background: var(--lb-gray-100);
  position: relative;
}

.region-article-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.region-article:hover .region-article-thumb img {
  transform: scale(1.05);
}

.region-article-title {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--lb-navy);
  margin: 0 0 0.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.region-article-title:hover {
  color: var(--lb-blue);
}

.region-article-date {
  font-size: 0.75rem;
  color: var(--lb-gray-500);
}

.region-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--lb-gray-200);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--lb-blue);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.region-more:hover {
  color: var(--lb-navy);
}

/* ========== SIDEBAR ========== */
.sidebar-block {
  background: var(--lb-white);
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--lb-gray-200);
  margin-bottom: 1.5rem;
}

.sidebar-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--lb-navy);
}

.sidebar-header h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--lb-navy);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--lb-red);
  color: white;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  animation: pulse-live 2s ease-in-out infinite;
}

@keyframes pulse-live {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.live-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
}

/* ========== LIVE FEED (FIL INFO) ========== */
.live-feed {
  position: relative;
  padding-left: 1rem;
}

.live-feed::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--lb-gray-200);
}

.live-feed-item {
  position: relative;
  padding: 0.75rem 0 0.75rem 1rem;
  border-bottom: 1px solid var(--lb-gray-100);
}

.live-feed-item::before {
  content: '';
  position: absolute;
  left: -1rem;
  top: 1.1rem;
  width: 10px;
  height: 10px;
  background: var(--lb-white);
  border: 2px solid var(--lb-blue);
  border-radius: 50%;
  transform: translateX(-50%);
}

.live-feed-item:first-child::before {
  background: var(--lb-blue);
}

.live-feed-item a {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--lb-navy);
  text-decoration: none;
  display: block;
  margin-bottom: 0.25rem;
}

.live-feed-item a:hover {
  color: var(--lb-blue);
}

.live-feed-time {
  font-size: 0.75rem;
  color: var(--lb-gray-500);
}

/* ========== ARTICLE PAGE ========== */
.article-page {
  max-width: 800px;
  margin: 0 auto;
}

.article-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.article-breadcrumb a {
  color: var(--lb-blue);
  text-decoration: none;
  font-weight: 500;
}

.article-breadcrumb a:hover {
  text-decoration: underline;
}

.article-breadcrumb span {
  color: var(--lb-gray-400);
}

.article-header {
  margin-bottom: 2rem;
}

.article-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.article-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.article-chip-category {
  background: var(--lb-beige);
  color: var(--lb-navy);
}

.article-chip-category:hover {
  background: var(--lb-navy);
  color: white;
}

.article-chip-region {
  background: var(--lb-gray-100);
  color: var(--lb-gray-700);
  border: 1px solid var(--lb-gray-200);
}

.article-chip-region:hover {
  background: var(--lb-blue);
  color: white;
  border-color: var(--lb-blue);
}

.article-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.15;
  color: var(--lb-navy);
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .article-title {
    font-size: 2.75rem;
  }
}

.article-excerpt {
  font-family: var(--font-body);
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--lb-gray-600);
  font-style: italic;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  border-left: 4px solid var(--lb-beige);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--lb-gray-200);
  border-bottom: 1px solid var(--lb-gray-200);
  margin-bottom: 1.5rem;
}

.article-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.article-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--lb-beige);
}

.article-author-info {
  display: flex;
  flex-direction: column;
}

.article-author-name {
  font-weight: 600;
  color: var(--lb-navy);
  text-decoration: none;
}

.article-author-name:hover {
  color: var(--lb-blue);
}

.article-date {
  font-size: 0.85rem;
  color: var(--lb-gray-500);
}

.article-share {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.share-btn-facebook {
  background: #1877f2;
  color: white;
}

.share-btn-facebook:hover {
  background: #166fe5;
  color: white;
}

.share-btn-x {
  background: #000;
  color: white;
}

.share-btn-x:hover {
  background: #333;
  color: white;
}

.share-btn-copy {
  background: var(--lb-gray-100);
  color: var(--lb-gray-700);
  border: 1px solid var(--lb-gray-300);
}

.share-btn-copy:hover {
  background: var(--lb-gray-200);
}

/* ========== VOTE MINI SUMMARY ========== */
.vote-mini-summary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.6rem;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.vote-mini-summary:hover {
  opacity: 0.8;
}

.vote-mini-summary:focus {
  outline: 2px solid var(--lb-blue);
  outline-offset: 2px;
}

.vote-mini-item {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-body);
  padding: 0.3rem 0.5rem;
  border-radius: 6px;
}

.vote-mini-up {
  color: #16a34a;
  background: #dcfce7;
}

.vote-mini-up svg {
  stroke: #16a34a;
  width: 14px;
  height: 14px;
}

.vote-mini-down {
  color: #dc2626;
  background: #fee2e2;
}

.vote-mini-down svg {
  stroke: #dc2626;
  width: 14px;
  height: 14px;
}

.vote-mini-summary .count-up,
.vote-mini-summary .count-down {
  min-width: 1rem;
  text-align: center;
}

/* ========== LIVE READERS FOMO WIDGET ========== */
.live-readers-widget {
  margin: 1rem 0 1.5rem;
}

.live-readers-widget.hidden {
  display: none;
}

.live-readers-inner {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 1px solid #f59e0b;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #92400e;
  font-family: var(--font-body);
  animation: fomo-fade-in 0.4s ease-out;
}

@keyframes fomo-fade-in {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.live-readers-pulse {
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

.live-readers-inner svg {
  stroke: #b45309;
  flex-shrink: 0;
}

.live-readers-text {
  white-space: nowrap;
}

.live-readers-text strong {
  font-weight: 700;
  color: #78350f;
}

/* ========== VOTE BUTTONS ========== */
.vote-block {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  background: var(--lb-gray-50);
  border-radius: 12px;
  border: 1px solid var(--lb-gray-200);
}

.vote-block-label {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--lb-navy);
  margin-right: auto;
}

.vote-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--lb-white);
  border: 1px solid var(--lb-gray-300);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.vote-btn:hover {
  border-color: var(--lb-gray-400);
  box-shadow: var(--shadow-sm);
}

.vote-btn.up:hover,
.vote-btn.up.active {
  background: #dcfce7;
  border-color: #22c55e;
  color: #16a34a;
}

.vote-btn.down:hover,
.vote-btn.down.active {
  background: #fee2e2;
  border-color: #ef4444;
  color: #dc2626;
}

.vote-btn svg {
  width: 18px;
  height: 18px;
}

/* ========== CTA BLOCKS (APP & WHATSAPP) ========== */
.cta-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.cta-block-app {
  background: linear-gradient(135deg, var(--lb-beige-light) 0%, var(--lb-beige) 100%);
  border: 1px solid var(--lb-beige);
}

.cta-block-whatsapp {
  background: linear-gradient(135deg, #0b1d12 0%, #163828 100%);
  color: white;
  border: 1px solid #1f4031;
}

.cta-block-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.cta-block-app .cta-block-icon {
  background: var(--lb-navy);
  color: white;
}

.cta-block-whatsapp .cta-block-icon {
  background: #25d366;
  color: white;
}

.cta-block-content {
  flex: 1;
  min-width: 0;
}

.cta-block-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
}

.cta-block-app .cta-block-title {
  color: var(--lb-navy);
}

.cta-block-desc {
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.9;
}

.cta-block-app .cta-block-desc {
  color: var(--lb-gray-700);
}

.cta-block-action {
  flex-shrink: 0;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.cta-btn-app {
  background: var(--lb-navy);
  color: white;
}

.cta-btn-app:hover {
  background: var(--lb-blue);
  color: white;
}

.cta-btn-whatsapp {
  background: #25d366;
  color: #0b1d12;
}

.cta-btn-whatsapp:hover {
  background: #20bd5a;
  color: #0b1d12;
}

/* ========== READ ALSO GRID ========== */
.read-also-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .read-also-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

/* ========== PAGINATION ========== */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.75rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.pagination a {
  background: var(--lb-white);
  color: var(--lb-navy);
  border: 1px solid var(--lb-gray-300);
}

.pagination a:hover {
  background: var(--lb-gray-50);
  border-color: var(--lb-blue);
  color: var(--lb-blue);
}

.pagination .active {
  background: var(--lb-navy);
  color: white;
  border-color: var(--lb-navy);
}

/* ========== CATEGORY/REGION PAGE HEADER ========== */
.page-header {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--lb-navy);
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--lb-navy);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.page-header h1 .icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lb-beige);
  color: var(--lb-navy);
  border-radius: 8px;
}

.page-header h1 .icon svg {
  width: 18px;
  height: 18px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 767px) {
  .hero-card-content {
    padding: 1.25rem;
  }
  
  .hero-card-title {
    font-size: 1.5rem;
  }
  
  .news-card-body {
    padding: 0.875rem 1rem 1rem;
  }
  
  .news-card-title {
    font-size: 1rem;
  }
  
  .article-title {
    font-size: 1.75rem;
  }
  
  .article-excerpt {
    font-size: 1.1rem;
  }
  
  .cta-block {
    flex-direction: column;
    text-align: center;
  }
  
  .vote-block {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .vote-block-label {
    width: 100%;
    text-align: center;
    margin-bottom: 0.5rem;
    margin-right: 0;
  }
  
  .article-meta {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .article-share {
    margin-left: 0;
    margin-top: 0.75rem;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    gap: 0.5rem;
  }
  
  .vote-mini-summary {
    width: 100%;
    justify-content: center;
    margin-bottom: 0.25rem;
  }
  
  .article-share .share-btn {
    flex: 1;
    min-width: 0;
    justify-content: center;
  }
}
