/* ============================================================
   UptownDayCare — Familienratgeber Deutschland
   Palette: Deep Teal + Warm Amber + Cream
   Font: Merriweather (headlines) + Inter (body/ui)
   ============================================================ */

:root {
  --teal:       #0f4c3a;
  --teal-lt:    #1a6650;
  --amber:      #d97706;
  --amber-lt:   #f59e0b;
  --amber-bg:   rgba(217,119,6,.09);
  --slate:      #475569;
  --muted:      #64748b;
  --border:     #e2e8f0;
  --bg:         #fafaf7;
  --bg-white:   #ffffff;
  --bg-warm:    #fef9f0;
  --text:       #1e293b;
  --ink:        #1e293b;
  --radius:     7px;
  --shadow-sm:  0 1px 4px rgba(15,76,58,.07);
  --shadow:     0 4px 18px rgba(15,76,58,.11);
  --max-w:      1240px;
}

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

/* ── TOP UTILITY BAR ── */
.top-bar {
  background: var(--teal);
  color: rgba(255,255,255,.65);
  font-size: 11.5px;
  font-family: 'Inter', 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: 500; letter-spacing: .01em; }
.top-bar-links { display: flex; align-items: center; gap: 8px; }
.top-bar-links a { color: rgba(255,255,255,.55); 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(--bg-white); }
.brand-header {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px 28px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.site-logo {
  font-family: 'Merriweather', serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1;
  display: inline-block;
}
.logo-up { color: var(--teal); }
.logo-town { color: var(--amber); }
.site-tagline {
  font-size: 11.5px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 5px;
}

/* ── CATEGORY NAV ── */
.cat-nav {
  background: var(--teal);
  border-bottom: 3px solid var(--amber);
  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: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  padding: 13px 16px;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color .18s, border-color .18s;
  display: flex;
  align-items: center;
}
.cat-nav-link:hover { color: #fff; border-bottom-color: rgba(255,255,255,.35); }
.cat-nav-featured {
  margin-left: auto;
  color: var(--amber-lt) !important;
  font-weight: 700;
}
.cat-nav-featured:hover { color: #fcd34d !important; border-bottom-color: var(--amber-lt) !important; }
.hamburger { display: none; background: none; border: none; cursor: pointer; color: rgba(255,255,255,.8); padding: 12px 6px; margin-left: auto; }

/* ── TICKER ── */
.ticker-bar {
  background: var(--amber);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 0;
  overflow: hidden;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
}
.ticker-inner { display: inline-block; animation: ticker 30s linear infinite; }
@keyframes ticker { 0% { transform: translateX(100vw); } 100% { transform: translateX(-100%); } }

/* ── 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: 1fr 300px;
  gap: 0;
  margin-top: 28px;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  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 .4s; }
.lead-story:hover .lead-img img { transform: scale(1.03); }
.lead-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,28,20,.95) 35%, rgba(10,28,20,.3) 70%, transparent);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.lead-headline {
  font-family: 'Merriweather', serif;
  font-size: clamp(20px, 2.8vw, 32px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 10px;
}
.lead-deck {
  font-size: 14px;
  color: rgba(255,255,255,.72);
  line-height: 1.65;
  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,.45); display: flex; align-items: center; gap: 5px; }

.sidebar-stories {
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--border);
  background: var(--bg-white);
}
.side-story {
  display: flex;
  flex-direction: column;
  flex: 1;
  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; display: flex; flex-direction: column; gap: 5px; flex-shrink: 0; }
.side-story-body h3 { font-size: 14px; font-family: 'Merriweather', serif; line-height: 1.35; color: var(--teal); }
.side-meta { font-size: 11px; color: var(--muted); }

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

/* ── ARTICLE CARDS ── */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

.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.04); }
.card-body { padding: 16px 18px 20px; flex: 1; display: flex; flex-direction: column; }
.card-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 7px;
  font-family: 'Inter', sans-serif;
}
.card-body h3 { font-size: 15.5px; font-family: 'Merriweather', serif; line-height: 1.35; margin-bottom: 9px; }
.card-body p { font-size: 13.5px; color: var(--slate); line-height: 1.62; flex: 1; margin-bottom: 12px; }
.card-meta { font-size: 11px; color: var(--muted); display: flex; gap: 8px; align-items: center; font-family: 'Inter', sans-serif; }

/* ── 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; }
.featured-card .card-body p { font-size: 15px; }

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

/* ── PARTNER BLOCK ── */
.partner-block {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--amber);
  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(--amber);
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  flex-shrink: 0;
}
.pb-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  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: var(--bg-warm);
  border: 1px solid #fde8c0;
  border-radius: 8px;
}
.partner-row:hover { border-color: var(--amber); }
.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(--ink); 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 HEADER ── */
.partner-widget-hdr { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.partner-widget-hdr .pwh-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: #6b7280; }
.partner-widget-hdr .pwh-powered { font-size: 11px; color: #9ca3af; }
.partner-widget-footer { font-size: 11px; color: #9ca3af; margin-top: 10px; padding-top: 8px; border-top: 1px solid var(--border); }

.header-anzeige-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--amber);
  color: #fff;
  padding: 2px 6px;
  border-radius: 3px;
  margin-right: 4px;
  vertical-align: middle;
}


/* ============================================
   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; }
}

@media (max-width: 700px) {
  /* Card grids → 1 column */
  .card-grid { grid-template-columns: 1fr !important; gap: 16px; }
  .card-grid.cols-2 { grid-template-columns: 1fr !important; }
  .featured-card { grid-template-columns: 1fr !important; }
  .featured-card .card-img { min-height: 200px; aspect-ratio: 16/9; }
  .featured-card .card-body { padding: 18px 20px 22px; }
  .featured-card .card-body h3 { font-size: 17px; }

  /* Top story hero → full width, sidebar hidden */
  .top-story-grid { grid-template-columns: 1fr !important; }
  .lead-img { height: 260px; }
  .lead-headline { font-size: 18px !important; }
  .lead-deck { font-size: 13px; }
  .sidebar-stories { display: none; }
}


/* 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%; }
}
