/* ============================================================
   TaxiCall — Streaming & Freizeit Deutschland
   Palette: Deep Indigo + Coral Red + Warm Gold + White
   Font: Raleway (headlines) + Lato (body/ui)
   ============================================================ */

:root {
  --navy:       #1A1A1A;
  --navy-lt:    #2D2D2D;
  --coral:      #F5C518;
  --coral-lt:   #FFD740;
  --gold:       #E8A900;
  --gold-lt:    #F5C518;
  --gold-bg:    rgba(245,197,24,.10);
  --slate:      #4a5568;
  --muted:      #718096;
  --border:     #e2e8f0;
  --bg:         #f8f9fc;
  --bg-white:   #ffffff;
  --bg-dark:    #111111;
  --text:       #1a202c;
  --radius:     8px;
  --shadow-sm:  0 1px 4px rgba(22,36,71,.07);
  --shadow:     0 4px 20px rgba(22,36,71,.13);
  --max-w:      1240px;

  --bg-warm:    rgba(245,166,35,.07);
  --amber:      var(--gold);
  --amber-lt:   var(--gold-lt);
  --teal:       var(--navy);
  --ink:        var(--text);

}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1,h2,h3,h4 { font-family: 'Raleway', sans-serif; line-height: 1.2; color: var(--navy); }

/* ── TOP UTILITY BAR ── */
.top-bar {
  background: var(--bg-dark);
  color: rgba(255,255,255,.6);
  font-size: 11.5px;
  font-family: 'Lato', sans-serif;
}
.top-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 7px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.top-bar-date { font-weight: 700; letter-spacing: .02em; }
.top-bar-links { display: flex; align-items: center; gap: 8px; }
.top-bar-links a { color: rgba(255,255,255,.5); transition: color .15s; }
.top-bar-links a:hover { color: #fff; }
.top-bar-links span { color: rgba(255,255,255,.2); }

/* ── BRAND HEADER ── */
.site-header { background: var(--navy); }
.brand-header {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 28px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.site-logo {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 900;
  letter-spacing: -0.3px;
  line-height: 1;
  display: inline-block;
}
.logo-slate { color: #fff; }
.logo-vac { color: var(--gold); }
.site-tagline {
  font-size: 12px;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  color: rgba(255,255,255,.45);
  letter-spacing: .05em;
}
.header-partner {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.header-partner span { font-size: 11px; color: rgba(255,255,255,.35); font-family: 'Lato',sans-serif; }
.header-anzeige-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--coral);
  color: #fff;
  padding: 2px 6px;
  border-radius: 3px;
  margin-right: 4px;
  vertical-align: middle;
}
.header-cta {
  background: var(--coral);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background .18s;
  font-family: 'Lato', sans-serif;
}
.header-cta:hover { background: #c73652; }

/* ── CATEGORY NAV ── */
.cat-nav {
  background: var(--navy-lt);
  border-bottom: 3px solid var(--coral);
  position: sticky;
  top: 0;
  z-index: 200;
}
.cat-nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  scrollbar-width: none;
}
.cat-nav-inner::-webkit-scrollbar { display: none; }
.cat-nav-link {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.65);
  padding: 12px 16px;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
  transition: color .18s, border-color .18s;
  display: flex;
  align-items: center;
}
.cat-nav-link:hover { color: #fff; border-bottom-color: rgba(255,255,255,.3); }
.cat-nav-featured { color: var(--gold) !important; font-weight: 900; margin-left: auto; }
.cat-nav-featured:hover { color: var(--gold-lt) !important; border-bottom-color: var(--gold) !important; }
.hamburger { display: none; background: none; border: none; cursor: pointer; color: rgba(255,255,255,.8); padding: 12px 6px; margin-left: auto; }

/* ── CONTENT WRAPPER ── */
.content-wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }

/* ── TOP STORY GRID ── */
.top-story-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 0;
  margin-top: 32px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  max-height: 460px;
}
.lead-story { display: block; position: relative; }
.lead-img { position: relative; height: 460px; overflow: hidden; }
.lead-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.lead-story:hover .lead-img img { transform: scale(1.04); }
.lead-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,.98) 40%, rgba(13,27,42,.2) 72%, transparent);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.lead-headline {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 10px;
}
.lead-deck { font-size: 14px; color: rgba(255,255,255,.7); line-height: 1.6; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.lead-meta { font-size: 12px; color: rgba(255,255,255,.4); display: flex; align-items: center; gap: 5px; }

.sidebar-stories {
  display: flex;
  flex-direction: column;
  background: var(--bg-white);
  border-left: 1px solid var(--border);
}
.side-story {
  flex: 1;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--border);
  transition: background .18s;
  overflow: hidden;
}
.side-story:last-child { border-bottom: none; }
.side-story:hover { background: var(--bg); }
.side-story img { width: 100%; height: 160px; flex: 0 0 160px; object-fit: cover; }
.side-story-body { padding: 12px 16px 14px; flex-shrink: 0; display: flex; flex-direction: column; gap: 5px; }
.side-story-body h3 { font-size: 14px; font-family: 'Raleway', sans-serif; font-weight: 700; line-height: 1.3; color: var(--navy); }
.side-meta { font-size: 11px; color: var(--muted); }

/* ── SECTION HEADERS ── */
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 52px 0 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--navy);
}
.section-head h2 { font-size: 20px; font-family: 'Raleway', sans-serif; font-weight: 900; }
.section-head a { font-size: 12px; font-weight: 700; color: var(--coral); font-family: 'Lato', sans-serif; }
.section-head a:hover { text-decoration: underline; }

/* ── ARTICLE CARDS ── */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.article-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .22s, transform .22s;
  display: flex;
  flex-direction: column;
}
.article-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--bg); }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.article-card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 16px 18px 20px; flex: 1; display: flex; flex-direction: column; }
.card-cat {
  font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase;
  color: var(--coral); margin-bottom: 7px; font-family: 'Lato', sans-serif;
}
.card-body h3 { font-size: 15px; font-family: 'Raleway', sans-serif; font-weight: 700; line-height: 1.35; margin-bottom: 9px; }
.card-body p { font-size: 13.5px; color: var(--slate); line-height: 1.6; flex: 1; margin-bottom: 12px; }
.card-meta { font-size: 11px; color: var(--muted); display: flex; gap: 8px; align-items: center; }

/* ── FEATURED CARD ── */
.featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 28px;
  transition: box-shadow .22s;
}
.featured-card:hover { box-shadow: var(--shadow); }
.featured-card .card-img { aspect-ratio: auto; min-height: 260px; }
.featured-card .card-body { padding: 28px 32px; }
.featured-card .card-body h3 { font-size: 22px; margin-bottom: 12px; }

/* ── SPONSORED BADGE ── */
.sponsored-badge {
  display: inline-block;
  background: var(--coral);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 9px;
  font-family: 'Lato', sans-serif;
}

/* ── PARTNER BLOCK ── */
.partner-block {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--coral);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin: 30px 0;
}
.partner-block-hdr {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.pb-anzeige-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--coral);
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  flex-shrink: 0;
}
.pb-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  font-family: 'Inter', sans-serif;
}
.partner-rows { display: flex; flex-direction: column; gap: 8px; }
.partner-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  background: #fafbfd;
  border: 1px solid var(--border);
  border-radius: 8px;
}
.partner-row:hover { border-color: var(--coral); }
.partner-logo {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--border);
  overflow: hidden;
}
.partner-logo img { width: 32px; height: 32px; object-fit: contain; display: block; }
.partner-info { flex: 1; min-width: 0; }
.p-name { font-weight: 700; font-size: 14px; color: var(--text); line-height: 1.2; }
.p-desc { font-size: 12px; color: var(--muted); margin-top: 2px; line-height: 1.3; }
.p-price { font-size: 12px; font-weight: 700; margin-top: 3px; line-height: 1.3; }
.partner-cta { flex-shrink: 0; }
.partner-cta a {
  display: inline-block;
  padding: 9px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
  transition: opacity .15s;
}
.partner-cta a:hover { opacity: .85; }
.pb-footer {
  font-size: 12px;
  color: var(--muted);
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  line-height: 1.5;
}

/* ── AFFILIATE DISCLOSURE BOX ── */
.affiliate-disclosure { display: flex; align-items: flex-start; gap: 10px; padding: 12px 16px; background: #fffbeb; border: 1px solid #fcd34d; border-radius: 10px; font-size: 12.5px; color: #92400e; margin: 14px 0; line-height: 1.5; }
.affiliate-disclosure .disc-icon { flex-shrink: 0; margin-top: 1px; color: #d97706; }
.affiliate-disclosure a { color: #92400e; text-decoration: underline; }
.partner-widget-footer { font-size: 11px; color: #9ca3af; margin-top: 10px; padding-top: 8px; border-top: 1px solid var(--border); }


/* ============================================
   ARTICLE PAGE — FULL STYLES
   ============================================ */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--teal); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: var(--muted); }

.article-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: start;
}

.article-main { min-width: 0; }

.article-h1 {
  font-family: 'Merriweather', serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--ink);
  line-height: 1.3;
  margin: 12px 0 16px;
}

.article-h2 {
  font-family: 'Merriweather', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--teal);
  margin: 36px 0 14px;
  line-height: 1.35;
}

.article-byline {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.article-hero-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin: 16px 0 24px;
  display: block;
  object-fit: cover;
}

.disclosure-text {
  background: var(--bg-warm);
  border-left: 3px solid var(--amber);
  padding: 12px 16px;
  border-radius: 0 6px 6px 0;
  font-size: 13px;
  color: var(--muted);
  margin: 16px 0 24px;
  line-height: 1.6;
}

/* Number cards */
.num-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg-warm);
  border: 1px solid #fde8c0;
  border-radius: var(--radius);
  padding: 14px 16px;
  margin: 16px 0;
}
.num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--amber);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
}
.num-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 4px;
  line-height: 1.3;
}
.num-card p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
}

/* Mid partner blocks */
.mid-partner-single,
.mid-partner-grid {
  border: 1px solid var(--border);
  border-top: 3px solid var(--amber);
  border-radius: 6px;
  padding: 16px 18px;
  margin: 28px 0;
  background: #fff;
}
.mp-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--muted);
  margin-bottom: 12px;
}
.mp-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
  line-height: 1.5;
}
.mp-note a { color: var(--amber); }

/* Bottom picks */
.bottom-picks {
  background: var(--teal);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin: 32px 0;
  color: #fff;
}
.bp-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.6);
  margin-bottom: 12px;
}
.bp-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bp-links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: rgba(255,255,255,.08);
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: background .15s;
  flex-wrap: wrap;
  gap: 6px;
}
.bp-links a:hover { background: rgba(255,255,255,.15); }
.bp-links a span {
  font-size: 11px;
  font-weight: 700;
  background: var(--amber);
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

/* Sidebar */
.article-sidebar {
  position: sticky;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Featured product box */
.fp-box {
  background: var(--bg-warm);
  border: 1px solid #fde8c0;
  border-top: 3px solid var(--amber);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.fp-star {
  font-size: 12px;
  font-weight: 700;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 10px;
}
.fp-body { margin-bottom: 10px; }
.fp-name {
  font-size: 18px;
  font-weight: 900;
  color: var(--teal);
  font-family: 'Merriweather', serif;
}
.fp-desc {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.4;
}
.fp-btn {
  background: var(--amber);
  color: #fff;
  padding: 11px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: opacity .15s;
}
.fp-btn:hover { opacity: .88; }
.fp-label {
  font-size: 11px;
  color: var(--muted);
  margin-top: 6px;
}

/* Sidebar widget */
.sb-widget {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.sb-widget-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 12px;
}
.sb-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sb-widget li a {
  font-size: 13px;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
}
.sb-widget li a:hover { color: var(--teal); }
.sb-sp {
  font-size: 11px;
  font-weight: 700;
  background: var(--bg-warm);
  color: var(--amber);
  padding: 2px 7px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Author bio */
.author-bio {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-top: 32px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  background: var(--teal);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
}
.author-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 4px;
}
.author-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* Article responsive */
@media (max-width: 900px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .article-h1 { font-size: 22px; }
}
@media (max-width: 680px) {
  .article-h2 { font-size: 17px; }
  .bp-links a { font-size: 12px; }
}

/* Article partner widget remaining classes */
.p-rate { font-size: 13px; font-weight: 600; margin-top: 2px; line-height: 1.3; }
.partner-cards { display: flex; flex-direction: column; gap: 8px; }


/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--teal);
  color: rgba(255,255,255,.85);
  margin-top: 60px;
  padding: 48px 0 0;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
}

.footer-inner {
  max-width: var(--max-w, 1240px);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-brand .site-logo {
  font-size: 22px;
  font-weight: 900;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
  margin: 0 0 10px;
  max-width: 280px;
}

.footer-brand a {
  font-size: 13px;
  color: var(--amber);
  text-decoration: none;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.5);
  margin: 0 0 14px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul li a {
  color: rgba(255,255,255,.8);
  text-decoration: none;
  font-size: 13px;
  transition: color .15s;
}

.footer-col ul li a:hover { color: #fff; }

.footer-bottom {
  max-width: var(--max-w, 1240px);
  margin: 36px auto 0;
  padding: 16px 28px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,.4);
}

.footer-bottom a { color: rgba(255,255,255,.4); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }

@media (max-width: 1040px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 680px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }
}


/* Cookie banner buttons */
.cookie-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.btn-accept-all {
  background: var(--amber, #d97706);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: opacity .15s;
}
.btn-accept-all:hover { opacity: .88; }
.btn-reject {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.5);
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: opacity .15s;
}
.btn-reject:hover { opacity: .75; }

/* Partner widget header (article inline blocks) */
.partner-widget-hdr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.pwh-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted, #718096);
}
.pwh-powered {
  font-size: 11px;
  color: #9ca3af;
}


/* ============================================
   COOKIE BANNER + MODAL
   ============================================ */

#cookie-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--teal, #0f4c3a);
  color: #fff;
  padding: 14px 24px;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
  font-size: 13px;
  line-height: 1.5;
}

#cookie-banner p {
  flex: 1;
  margin: 0;
  min-width: 240px;
}

#cookie-banner a {
  color: var(--amber, #d97706);
  text-decoration: underline;
}

#cookie-banner .cookie-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 0;
  align-items: center;
}

#cookie-banner .btn-accept-all {
  background: var(--amber, #d97706);
  color: #fff;
  border: none;
  padding: 9px 18px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: opacity .15s;
}
#cookie-banner .btn-accept-all:hover { opacity: .88; }

#cookie-banner .btn-reject {
  background: transparent;
  color: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.4);
  padding: 9px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: opacity .15s;
}
#cookie-banner .btn-reject:hover { opacity: .75; }

@media (max-width: 680px) {
  #cookie-banner { flex-direction: column; align-items: flex-start; gap: 10px; padding: 16px 20px; }
  #cookie-banner .cookie-btns { width: 100%; }
}


/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */

/* Top utility bar */
@media (max-width: 640px) {
  .top-bar-inner { flex-direction: column; align-items: flex-start; gap: 3px; padding: 7px 16px; }
  .top-bar-links { flex-wrap: wrap; gap: 6px; }
}

/* Brand header */
@media (max-width: 768px) {
  .brand-header { padding: 14px 16px 12px; flex-wrap: wrap; gap: 4px; }
  .header-partner { display: none; }
}
@media (max-width: 480px) {
  .site-tagline { display: none; }
}

/* Category nav — stays horizontal scroll, just tighten padding */
@media (max-width: 768px) {
  .cat-nav-inner { padding: 0 8px; }
  .cat-nav-link { font-size: 12px; padding: 11px 12px; }
}
@media (max-width: 480px) {
  .cat-nav-link { font-size: 11.5px; padding: 10px 10px; }
}

/* Content wrap padding */
@media (max-width: 640px) {
  .content-wrap { padding: 0 14px; }
}

/* Top story grid */
@media (max-width: 768px) {
  .top-story-grid {
    grid-template-columns: 1fr;
    max-height: none;
    margin-top: 20px;
    border-radius: 10px;
  }
  .sidebar-stories { display: none; }
  .lead-img { height: 280px; }
  .lead-img-overlay { padding: 22px; }
}
@media (max-width: 480px) {
  .lead-img { height: 230px; }
  .lead-img-overlay { padding: 16px; }
}

/* Section head */
@media (max-width: 640px) {
  .section-head { margin: 32px 0 16px; }
}

/* Article card grid */
@media (max-width: 900px) {
  .card-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 16px !important; }
}
@media (max-width: 480px) {
  .card-grid { grid-template-columns: 1fr !important; gap: 14px !important; }
}

/* Featured card */
@media (max-width: 768px) {
  .featured-card { grid-template-columns: 1fr; }
  .featured-card .card-img { min-height: 200px; aspect-ratio: 16/9; }
  .featured-card .card-body { padding: 20px 22px; }
  .featured-card .card-body h3 { font-size: 18px; }
}

/* Partner block rows — wrap on mobile */
@media (max-width: 768px) {
  .partner-block { padding: 16px !important; }
  .partner-block-hdr { flex-wrap: wrap; gap: 6px; }
  .pb-title { font-size: 12px; }
  .partner-row {
    display: grid !important;
    grid-template-columns: 56px 1fr !important;
    grid-template-rows: auto auto !important;
    gap: 8px 12px !important;
    padding: 12px !important;
    align-items: start !important;
  }
  .partner-logo { grid-column: 1; grid-row: 1 / 3; align-self: center; }
  .partner-info { grid-column: 2; grid-row: 1; min-width: 0; }
  .partner-cta { grid-column: 2; grid-row: 2; }
  .partner-cta a { width: 100% !important; text-align: center !important; display: block !important; padding: 10px !important; box-sizing: border-box !important; }
}
