/* ═══════════════════════════════════════════
   BizOltenia.ro — Main Stylesheet
   Colors: Blue & White professional scheme
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #f0f5ff;
  --bg-alt: #e0eaff;
  --white: #ffffff;
  --ink: #0f1d3d;
  --ink-light: #3b4c6b;
  --ink-muted: #7b8ba8;
  --accent: #1d4ed8;
  --accent-dark: #1e3a8a;
  --accent-light: #dbeafe;
  --accent-glow: rgba(29,78,216,0.12);
  --secondary: #60a5fa;
  --border: #c7d5eb;
  --border-light: #dfe8f6;
  --sponsored: #f59e0b;
  --gradient-start: #0f1d3d;
  --gradient-end: #1e3a8a;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 3px rgba(15,29,61,0.06);
  --shadow-md: 0 4px 16px rgba(15,29,61,0.08);
  --shadow-lg: 0 8px 32px rgba(15,29,61,0.12);
  --shadow-xl: 0 16px 48px rgba(15,29,61,0.16);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--bg); color: var(--ink); font-family: 'DM Sans', sans-serif; font-size: 15px; line-height: 1.65; }
a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; object-fit: cover; border-radius: var(--radius-sm); }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 4px; }

/* ── TOPBAR ── */
.topbar {
  background: var(--ink);
  color: #8b9dc3;
  font-size: 12px;
  padding: 8px 0;
  letter-spacing: .04em;
}
.topbar a { color: var(--secondary); font-weight: 600; transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar-inner { max-width: 1240px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; }
.topbar-left { display: flex; gap: 16px; align-items: center; }
.topbar-right { display: flex; gap: 16px; align-items: center; }
.topbar-date { color: #5e7093; }

/* ── HEADER ── */
header {
  background: var(--white);
  border-bottom: 3px solid var(--accent);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-md);
}
.header-inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 12px;
}
.logo {
  display: flex;
  align-items: center;
  min-width: fit-content;
}
.logo-img {
  height: 44px;
  width: auto;
  border-radius: 0;
  display: block;
}

nav { display: flex; gap: 1px; flex-wrap: nowrap; align-items: center; }
nav a {
  padding: 8px 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-light);
  border-radius: 6px;
  transition: all .2s;
  letter-spacing: .03em;
  text-transform: uppercase;
  white-space: nowrap;
}
nav a:hover, nav a.active {
  background: var(--accent-light);
  color: var(--accent);
}

.header-actions { display: flex; gap: 8px; align-items: center; }

/* ── SEARCH BAR ── */
.search-mini { display: flex; align-items: center; }
.search-mini form { display: flex; align-items: center; gap: 4px; }
.search-mini input {
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 12px;
  width: 140px;
  outline: none;
  transition: border-color .2s, width .3s;
  font-family: 'DM Sans', sans-serif;
}
.search-mini input:focus { border-color: var(--accent); width: 180px; }
.search-mini button { background: var(--accent); color: #fff; border: none; border-radius: 50%; width: 28px; height: 28px; cursor: pointer; font-size: 13px; display: flex; align-items: center; justify-content: center; }

/* ── BUTTONS ── */
.btn {
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s;
  border: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
}
.btn-outline { border-color: var(--border); color: var(--ink); background: transparent; }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-light); }
.btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(29,78,216,.3); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #1e2d52; }

/* ── CONTAINER ── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ── BREAKING NEWS TICKER ── */
.breaking-bar {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: white;
  padding: 10px 0;
  overflow: hidden;
  position: relative;
}
.breaking-inner { max-width: 1240px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 16px; }
.breaking-label {
  background: rgba(255,255,255,.95);
  color: var(--accent-dark);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.breaking-text { font-size: 13px; font-weight: 500; white-space: nowrap; animation: ticker 30s linear infinite; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── WAVE / CURVES ── */
.wave-divider { width: 100%; line-height: 0; overflow: hidden; }
.wave-divider svg { display: block; width: 100%; height: auto; }
.wave-divider.flip { transform: rotate(180deg); }

/* ── BADGES ── */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
}
.badge-stiri-business { background: #1d4ed8; color: white; }
.badge-antreprenori-oltenia { background: #0369a1; color: white; }
.badge-firme-craiova { background: #4338ca; color: white; }
.badge-investitii { background: #0d9488; color: white; }
.badge-fonduri-europene { background: #b45309; color: white; }
.badge-advertoriale { background: #64748b; color: white; }
.badge-local-oltenia { background: #be123c; color: white; }
.badge-agricultura { background: #15803d; color: white; }
.badge-sponsored { background: var(--sponsored); color: #1a1a1a; }

/* ── SECTION TITLE ── */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  padding-bottom: 14px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}
.section-title a {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}
.section-title a:hover { color: var(--accent-dark); }

/* ── HERO ── */
.hero { padding: 32px 0; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 24px;
}
.hero-main {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.hero-main img { height: 480px; transition: transform .5s; border-radius: 0; }
.hero-main:hover img { transform: scale(1.03); }
.hero-main-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,29,61,.88) 35%, transparent 65%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}
.hero-main-overlay h2 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 700;
  color: white;
  line-height: 1.25;
  margin: 12px 0 10px;
}
.hero-main-overlay p { color: rgba(255,255,255,.78); font-size: 14px; line-height: 1.5; }
.hero-meta { color: rgba(255,255,255,.5); font-size: 12px; margin-top: 8px; }

.hero-side { display: flex; flex-direction: column; gap: 24px; }
.hero-card {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: all .25s;
  display: flex;
  flex-direction: column;
}
.hero-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.hero-card-img { overflow: hidden; }
.hero-card-img img { height: 160px; transition: transform .4s; border-radius: 0; }
.hero-card:hover .hero-card-img img { transform: scale(1.05); }
.hero-card-body { padding: 16px; flex: 1; }
.hero-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  margin: 8px 0 6px;
}
.card-meta { font-size: 11px; color: var(--ink-muted); }

/* ── WIDGETS ── */
.widgets-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 32px; }
.widget-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.widget-title { font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 12px; }
.weather-display { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.weather-temp { font-size: 36px; font-weight: 700; color: var(--accent); }
.weather-info { font-size: 13px; color: var(--ink-light); }
.weather-city { font-size: 11px; color: var(--ink-muted); margin-top: 4px; }
.currency-grid { display: flex; gap: 16px; flex-wrap: wrap; }
.currency-item { text-align: center; flex: 1; min-width: 60px; }
.currency-item .code { font-size: 11px; font-weight: 700; color: var(--ink-muted); text-transform: uppercase; }
.currency-item .rate { font-size: 20px; font-weight: 700; color: var(--accent); margin: 2px 0; }
.currency-item .change { font-size: 11px; color: var(--ink-muted); }
.currency-src { font-size: 10px; color: var(--ink-muted); margin-top: 8px; text-align: right; }

/* ── MAIN LAYOUT ── */
.main-layout { display: grid; grid-template-columns: 1fr 320px; gap: 32px; padding-bottom: 48px; }

/* ── ARTICLE CARD ── */
.article-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  overflow: hidden;
  margin-bottom: 20px;
  transition: all .25s;
}
.article-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.article-card-img { overflow: hidden; }
.article-card-img img { height: 100%; min-height: 180px; transition: transform .4s; border-radius: 0; }
.article-card:hover .article-card-img img { transform: scale(1.05); }
.article-content { padding: 20px 20px 20px 0; display: flex; flex-direction: column; }
.article-meta { font-size: 12px; color: var(--ink-muted); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 4px; }
.article-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 8px;
  color: var(--ink);
}
.article-excerpt { font-size: 13px; color: var(--ink-light); line-height: 1.6; flex: 1; }
.article-read { font-size: 13px; color: var(--accent); font-weight: 600; margin-top: 8px; }

/* ── SIDEBAR ── */
.sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.sidebar-box-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  padding-bottom: 12px;
  margin-bottom: 14px;
  border-bottom: 2px solid var(--accent);
}
.popular-item {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  transition: all .2s;
}
.popular-item:last-child { border-bottom: none; }
.popular-item:hover { padding-left: 4px; }
.popular-num {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-light);
  font-family: 'Playfair Display', serif;
  min-width: 32px;
  line-height: 1;
  padding-top: 4px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.popular-text h4 { font-size: 14px; font-weight: 600; line-height: 1.35; }
.popular-text span { font-size: 11px; color: var(--ink-muted); }
.cat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
  transition: all .2s;
}
.cat-item:last-child { border-bottom: none; }
.cat-item:hover { padding-left: 4px; color: var(--accent); }
.cat-count {
  background: var(--accent-light);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
}

/* ── PROMO BOX ── */
.promo-box {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  color: white;
}
.promo-box .icon { font-size: 36px; margin-bottom: 12px; }
.promo-box h3 { font-family: 'Playfair Display', serif; font-size: 18px; margin-bottom: 8px; }
.promo-box p { font-size: 13px; opacity: .85; margin-bottom: 16px; line-height: 1.5; }
.promo-btn {
  display: inline-block;
  background: rgba(255,255,255,.95);
  color: var(--accent-dark);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  transition: all .2s;
}
.promo-btn:hover { background: #fff; transform: translateY(-1px); }

/* ── TRENDING ── */
.trending-section {
  background: var(--ink);
  padding: 48px 0;
  color: white;
}
.trending-section .section-title { color: white; }
.trending-section .section-title::after { background: var(--secondary); }
.trending-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trending-card {
  background: rgba(255,255,255,.06);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  transition: all .25s;
}
.trending-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.3); background: rgba(255,255,255,.1); }
.trending-card-img { overflow: hidden; }
.trending-card-img img { height: 180px; transition: transform .4s; border-radius: 0; }
.trending-card:hover .trending-card-img img { transform: scale(1.05); }
.trending-card-body { padding: 16px; }
.trending-card-body h3 { font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 600; line-height: 1.35; margin: 8px 0 6px; }
.trending-card-body p { font-size: 12px; color: rgba(255,255,255,.5); }
.trending-num {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  z-index: 2;
}

/* ── CATEGORY SECTIONS ── */
.cat-section { padding: 32px 0; }
.cat-section:nth-child(even) { background: var(--white); }
.cat-section-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.mini-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: all .25s;
}
.cat-section:nth-child(even) .mini-card { background: var(--bg); }
.mini-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.mini-card-img { overflow: hidden; }
.mini-card-img img { height: 180px; transition: transform .4s; border-radius: 0; }
.mini-card:hover .mini-card-img img { transform: scale(1.05); }
.mini-card-body { padding: 16px; }
.mini-card-body h3 { font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 600; line-height: 1.35; margin: 8px 0 6px; }
.mini-card-body p { font-size: 13px; color: var(--ink-light); line-height: 1.5; }
.mini-date { font-size: 11px; color: var(--ink-muted); margin-top: 8px; }

/* ── NEWSLETTER ── */
.newsletter-section {
  background: var(--ink);
  padding: 48px 0;
  color: white;
}
.newsletter-inner { max-width: 600px; margin: 0 auto; text-align: center; }
.newsletter-inner h2 { font-family: 'Playfair Display', serif; font-size: 28px; margin-bottom: 10px; }
.newsletter-inner p { color: rgba(255,255,255,.7); margin-bottom: 24px; font-size: 14px; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  outline: none;
  background: rgba(255,255,255,.1);
  color: white;
  border: 1px solid rgba(255,255,255,.2);
  font-family: 'DM Sans', sans-serif;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.5); }
.newsletter-form input:focus { border-color: var(--secondary); background: rgba(255,255,255,.15); }
.newsletter-form button {
  padding: 14px 28px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  font-family: 'DM Sans', sans-serif;
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--secondary); }

/* ── PARTNERS ── */
.partners-section {
  background: var(--white);
  padding: 40px 0;
  border-top: 1px solid var(--border-light);
}
.partners-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.partner-logo { height: 40px; width: auto; filter: grayscale(100%); opacity: .6; transition: all .3s; border-radius: 0; }
.partner-logo:hover { filter: grayscale(0%); opacity: 1; }

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding: 48px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 32px; }
.footer-brand .logo { font-size: 22px; margin-bottom: 12px; }
.footer-brand .logo span { color: var(--secondary); }
.footer-brand p { font-size: 13px; line-height: 1.65; margin-bottom: 16px; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact a { font-size: 13px; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-contact a:hover { color: var(--secondary); }
.footer-col h4 { color: white; font-size: 15px; font-weight: 700; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-col ul li a:hover { color: var(--secondary); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,.4);
}
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { color: rgba(255,255,255,.4); transition: color .2s; }
.footer-bottom-links a:hover { color: var(--secondary); }

/* ── FOOTER CREDIT ── */
.footer-credit {
  text-align: center;
  padding: 14px 0 20px;
  font-size: 13px;
  color: rgba(255,255,255,.35);
}
.footer-credit a {
  color: rgba(255,255,255,.6);
  position: relative;
  display: inline-block;
  margin: 0 3px;
  transition: all .3s ease;
}
.footer-credit a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background: var(--secondary);
  transition: width .3s ease;
}
.footer-credit a:hover::after { width: 100%; }
.footer-credit a:hover { color: var(--secondary); text-shadow: 0 0 8px rgba(96,165,250,.5); }
.footer-credit a:active { transform: scale(.92); }

/* ── ARTICLE PAGE ── */
.article-page { padding: 32px 0; }
.article-page-grid { display: grid; grid-template-columns: 1fr 320px; gap: 32px; }
.article-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
}
.article-featured-img { margin: 24px 0; }
.article-featured-img img { border-radius: var(--radius); max-height: 500px; }
.article-body { font-size: 16px; line-height: 1.8; color: var(--ink-light); }
.article-body p { margin-bottom: 16px; }
.article-body h2 { font-family: 'Playfair Display', serif; font-size: 22px; margin: 28px 0 12px; color: var(--ink); }
.article-body h3 { font-size: 18px; margin: 20px 0 10px; color: var(--ink); }
.article-body ul, .article-body ol { margin: 12px 0 16px 24px; }
.article-body li { margin-bottom: 6px; }
.article-body blockquote { border-left: 4px solid var(--accent); padding: 16px 20px; margin: 16px 0; background: var(--accent-light); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-style: italic; }
.article-body img { margin: 16px 0; border-radius: var(--radius-sm); }
.article-body a { color: var(--accent); font-weight: 600; }

/* ── READ ALSO ── */
.read-also {
  margin: 32px 0;
  padding: 20px;
  background: var(--white);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  box-shadow: var(--shadow-sm);
}
.read-also-label { font-size: 13px; font-weight: 700; color: var(--accent); margin-bottom: 4px; }
.read-also a { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 600; color: var(--ink); }
.read-also a:hover { color: var(--accent); }

/* ── ARTICLE TAGS ── */
.article-tags { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin: 24px 0; padding: 16px 0; border-top: 1px solid var(--border-light); }

/* ── SHARE BAR ── */
.share-bar { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin: 24px 0; }
.share-btn {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  transition: all .2s;
  border: 1px solid var(--border);
}
.share-btn:hover { transform: translateY(-1px); }
.share-btn.fb { background: #1877f2; color: white; border-color: #1877f2; }
.share-btn.tw { background: #1da1f2; color: white; border-color: #1da1f2; }
.share-btn.wa { background: #25d366; color: white; border-color: #25d366; }
.share-btn.li { background: #0077b5; color: white; border-color: #0077b5; }

/* ── NEXT ARTICLE ── */
.next-article {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--accent-light);
  border-radius: var(--radius);
  padding: 16px;
  margin-top: 32px;
  transition: all .25s;
  border: 1px solid var(--border-light);
}
.next-article:hover { box-shadow: var(--shadow-md); }
.next-article-img { width: 100px; height: 70px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; }
.next-article-img img { height: 100%; border-radius: 0; }
.next-article-label { font-size: 11px; color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.next-article h4 { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 600; line-height: 1.35; }

/* ── CATEGORY PAGE ── */
.page-header {
  padding: 36px 0 28px;
  border-bottom: 3px solid var(--accent);
  margin-bottom: 32px;
}
.page-header h1 { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; }
.page-header p { color: var(--ink-light); margin-top: 8px; font-size: 15px; }
.articles-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: all .25s;
}
.grid-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.grid-card-img { overflow: hidden; }
.grid-card-img img { height: 200px; transition: transform .4s; border-radius: 0; }
.grid-card:hover .grid-card-img img { transform: scale(1.05); }
.grid-card-body { padding: 20px; }
.grid-card-body h3 { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 600; line-height: 1.35; margin: 8px 0 10px; }
.grid-card-body p { font-size: 13px; color: var(--ink-light); }

/* ── CONTACT & STATIC PAGES ── */
.static-page { padding: 48px 0; }
.static-page h1 { font-family: 'Playfair Display', serif; font-size: 36px; margin-bottom: 24px; }
.static-page p { font-size: 15px; line-height: 1.75; color: var(--ink-light); margin-bottom: 16px; max-width: 720px; }
.static-page h2 { font-family: 'Playfair Display', serif; font-size: 22px; margin: 28px 0 12px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 32px; }
.contact-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.contact-box h3 { font-family: 'Playfair Display', serif; font-size: 20px; margin-bottom: 16px; }
.contact-box p { font-size: 14px; color: var(--ink-light); margin-bottom: 10px; }
.contact-box a { color: var(--accent); font-weight: 600; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--ink); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  background: var(--bg);
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.alert { padding: 16px 20px; border-radius: var(--radius-sm); margin-bottom: 20px; font-size: 14px; font-weight: 500; }
.alert-success { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.alert-error { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }

/* ── NEWSLETTER POPUP ── */
.nl-popup-overlay {
  position: fixed; inset: 0; background: rgba(15,29,61,.65); backdrop-filter: blur(4px);
  z-index: 9000; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all .3s;
}
.nl-popup-overlay.show { opacity: 1; visibility: visible; }
.nl-popup {
  background: var(--white); border-radius: 20px; padding: 40px; max-width: 440px; width: 90%;
  text-align: center; position: relative; transform: scale(.9); transition: transform .3s; box-shadow: var(--shadow-xl);
}
.nl-popup-overlay.show .nl-popup { transform: scale(1); }
.nl-popup-close { position: absolute; top: 14px; right: 18px; font-size: 24px; cursor: pointer; color: var(--ink-muted); background: none; border: none; transition: color .2s; }
.nl-popup-close:hover { color: var(--ink); }
.nl-popup h3 { font-family: 'Playfair Display', serif; font-size: 24px; margin-bottom: 10px; }
.nl-popup p { color: var(--ink-light); font-size: 14px; margin-bottom: 24px; line-height: 1.6; }
.nl-popup .newsletter-form { flex-direction: column; }
.nl-popup .newsletter-form input { background: var(--bg); border: 1px solid var(--border); color: var(--ink); }
.nl-popup .newsletter-form input::placeholder { color: var(--ink-muted); }
.nl-popup-btns { display: flex; gap: 10px; margin-top: 16px; }
.nl-popup-btns .btn { flex: 1; justify-content: center; padding: 12px; }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 8000;
  width: 60px; height: 60px; background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 30px;
  box-shadow: 0 4px 20px rgba(37,211,102,.4); cursor: pointer; transition: all .3s; animation: pulseWa 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.5); }
@keyframes pulseWa { 0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); } 50% { box-shadow: 0 4px 30px rgba(37,211,102,.6); } }

/* ── COOKIE BAR ── */
.cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0; background: var(--ink);
  color: rgba(255,255,255,.8); padding: 18px 24px; z-index: 9500;
  display: none; align-items: center; justify-content: center; gap: 20px;
  font-size: 13px; box-shadow: 0 -4px 20px rgba(0,0,0,.2);
}
.cookie-bar.show { display: flex; }
.cookie-bar a { color: var(--secondary); font-weight: 600; }
.cookie-bar .btn { padding: 8px 20px; }

/* ── MENU TOGGLE ── */
.menu-toggle { display: none; cursor: pointer; font-size: 24px; background: none; border: none; color: var(--ink); padding: 4px; }

/* ── SPONSORED LABEL ── */
.sponsored-label {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #1a1a1a; padding: 4px 12px; border-radius: 20px; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em; display: inline-flex; align-items: center; gap: 4px;
}

.no-articles { padding: 60px 0; text-align: center; color: var(--ink-muted); }

/* ── PAGINATION ── */
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 32px; }
.pagination a, .pagination span {
  padding: 8px 14px; border-radius: var(--radius-sm); font-size: 13px; font-weight: 600;
  border: 1px solid var(--border); transition: all .2s;
}
.pagination a:hover { background: var(--accent-light); border-color: var(--accent); color: var(--accent); }
.pagination .current { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp .5s ease both; }

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trending-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  nav { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: white; padding: 16px; box-shadow: var(--shadow-lg); border-top: 1px solid var(--border-light); z-index: 200; }
  nav.open { display: flex; }
  nav a { padding: 12px 16px; font-size: 14px; }
  .menu-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-side { flex-direction: row; }
  .hero-side .hero-card { flex: 1; }
  .main-layout, .article-page-grid { grid-template-columns: 1fr; }
  .widgets-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .cat-section-grid, .articles-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-side { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .article-card { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .hero-main img { height: 300px; }
  .header-actions { display: none; }
  .trending-grid { grid-template-columns: 1fr; }
  .topbar-inner { flex-direction: column; gap: 4px; }
  .breaking-inner { flex-direction: column; gap: 8px; text-align: center; }
  .search-mini { display: none; }
  .footer-credit { font-size: 11px; padding: 10px 0 16px; }
}
