/* ==========================================================================
   Vannkopper.org - hovedstilark
   Palett: rolig helse-blå/teal + myk korall på lys, kjølig off-white. Trygt,
   rent, lettlest. Egen identitet, skilt fra systersidene.
   ========================================================================== */

:root {
  --brand:        #1C5C82;   /* rolig medisinsk blå */
  --brand-d:      #134761;
  --brand-l:      #3AA6C9;
  --accent:       #F08A5D;   /* varm korall for kontrast */
  --accent-h:     #db6f41;
  --accent-soft:  #FCEAE0;
  --blue:         #3AA6C9;
  --gold:         #F0A35D;
  --bg:           #EFF6FA;   /* svært lys, kjølig blåhvit */
  --bg-2:         #DEEBF2;
  --white:        #FFFFFF;
  --text:         #18242b;
  --text-light:   #566872;
  --border:       #D6E5ED;
  --good:         #1C8F6E;
  --warn:         #E0A33B;

  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --r-sm: 8px;
  --r:    12px;
  --r-lg: 18px;
  --shadow: 0 2px 8px rgba(20,55,80,0.06), 0 8px 24px rgba(20,55,80,0.05);
  --shadow-lg: 0 10px 40px rgba(20,55,80,0.13);
  --maxw: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--sans); color: var(--text); background: var(--white); line-height: 1.65; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; transition: color .15s; }
a:hover { color: var(--accent); }

h1,h2,h3,h4 { font-weight: 700; line-height: 1.2; color: var(--text); letter-spacing: -0.01em; }
h1 { font-size: clamp(1.8rem, 4vw, 2.7rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: 1.2rem; }
p  { margin-bottom: 1rem; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 1.2rem; }
.narrow { max-width: 760px; }

.section { padding: 3.2rem 0; }
.section.alt { background: var(--bg); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 2.2rem; }
.section-head .eyebrow { color: var(--accent); font-weight: 700; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; }
.section-head h2 { margin: .4rem 0 .6rem; }
.section-head p { color: var(--text-light); font-size: 1.05rem; }

/* ---------- Topp-nav ---------- */
.site-nav { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: var(--maxw); margin: 0 auto; padding: .55rem 1.2rem; display: flex; align-items: center; gap: 1.2rem; }
.nav-logo { display: flex; align-items: center; gap: .55rem; font-weight: 800; font-size: 1.18rem; color: var(--brand); letter-spacing: -.02em; }
.nav-logo:hover { color: var(--brand); }
.nav-logo-icon { width: 34px; height: 36px; display: block; filter: drop-shadow(0 1px 2px rgba(15,50,48,.2)); }
.nav-logo-icon svg { width: 100%; height: 100%; display: block; }
.nav-logo-text span { color: var(--accent); }
.nav-menu { display: flex; align-items: center; gap: .05rem; margin-left: auto; }
.nav-link { padding: .5rem .7rem; border-radius: var(--r-sm); font-size: .92rem; font-weight: 600; color: var(--text); cursor: pointer; white-space: nowrap; }
.nav-link:hover { background: var(--bg); color: var(--brand); }

.nav-dropdown { position: relative; }
.dropdown-menu { position: absolute; top: calc(100% + 6px); left: 50%; transform: translateX(-50%) translateY(8px); background: var(--white); border: 1px solid var(--border); border-radius: var(--r); box-shadow: var(--shadow-lg); padding: 1.2rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 1.4rem; min-width: 420px; opacity: 0; visibility: hidden; transition: .18s; }
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown.nav-dd-right .dropdown-menu { left: auto; right: 0; transform: translateX(0) translateY(8px); }
.nav-dropdown.nav-dd-right:hover .dropdown-menu { transform: translateX(0) translateY(0); }
.dropdown-menu.dropdown-themes { min-width: 360px; }
.dropdown-col h4 { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-light); margin-bottom: .55rem; }
.dropdown-col a { display: block; padding: .26rem 0; font-size: .9rem; color: var(--text); font-weight: 500; }
.dropdown-col a:hover { color: var(--accent); }
.dropdown-col a.more { color: var(--accent); font-weight: 700; }

.btn-search-icon { background: none; border: none; padding: .45rem; cursor: pointer; color: var(--text-light); font-size: 1.15rem; border-radius: var(--r-sm); }
.btn-search-icon:hover { background: var(--bg); color: var(--brand); }
.nav-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--text); padding: .2rem .4rem; }

/* ---------- Knappar ---------- */
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .8rem 1.5rem; border-radius: var(--r-sm); font-weight: 700; font-size: .98rem; cursor: pointer; border: 2px solid transparent; transition: .15s; }
.btn-primary { background: var(--accent); color: #fff !important; }
.btn-primary:hover { background: var(--accent-h); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(232,115,106,.4); }
.btn-brand { background: var(--brand); color: #fff !important; }
.btn-brand:hover { background: var(--brand-d); transform: translateY(-1px); }
.btn-ghost { background: var(--white); color: var(--brand) !important; border-color: var(--border); }
.btn-ghost:hover { border-color: var(--brand); background: var(--bg); }
.btn-lg { padding: 1rem 1.9rem; font-size: 1.05rem; }

/* ---------- Hero (startsida) ---------- */
/* Rent bild utan fargfilter - lasbarheten loses helt med textskugga. */
.hero { position: relative; background-color: var(--brand-d); background-image: var(--hero-img); background-size: cover; background-position: center; color: #fff; overflow: hidden; }
.hero-inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; padding: 4.6rem 1.2rem 4rem; }
.hero-inner.hero-solo { text-align: center; }
.hero-inner.hero-solo > div { max-width: 760px; margin: 0 auto; }
.hero-inner.hero-solo .hero-actions { justify-content: center; }
.hero h1 { color: #fff; margin-bottom: 1rem; text-shadow: 0 1px 2px rgba(0,0,0,.7), 0 2px 10px rgba(0,0,0,.6), 0 4px 26px rgba(0,0,0,.5); }
.hero p.lead { font-size: 1.18rem; color: #fff; margin-bottom: 1.6rem; text-shadow: 0 1px 2px rgba(0,0,0,.75), 0 2px 10px rgba(0,0,0,.6); }
.hero-inner.hero-solo p.lead { margin-left: auto; margin-right: auto; max-width: 38rem; }
.hero .pill { text-shadow: none; }
.hero-actions { display: flex; gap: .8rem; flex-wrap: wrap; }

/* Sidhuvud med bild for artiklar - ocksa helt rent bild, ingen toning */
.page-hero { position: relative; min-height: 320px; display: flex; align-items: flex-end; color: #fff; background-color: var(--brand-d); background-size: cover; background-position: center; }
.page-hero .inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; width: 100%; padding: 2.2rem 1.2rem; }
.page-hero .kicker { display:inline-block; background: var(--accent); color:#fff; font-weight: 700; font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; padding: .28rem .8rem; border-radius: 999px; margin-bottom: .8rem; box-shadow: 0 2px 10px rgba(0,0,0,.3); }
.page-hero h1 { color: #fff; margin: 0 0 .5rem; max-width: 24ch; text-shadow: 0 1px 2px rgba(0,0,0,.85), 0 2px 8px rgba(0,0,0,.7), 0 4px 26px rgba(0,0,0,.55); }
.page-hero p { color: #fff; font-size: 1.1rem; max-width: 48ch; margin: 0; text-shadow: 0 1px 2px rgba(0,0,0,.85), 0 2px 8px rgba(0,0,0,.7); }
/* Sidhuvud utan bild (faktasidor) - ren gradient (ingen bild, alltsa inget filter) */
.page-hero.plain { min-height: 220px; background-image: linear-gradient(120deg, var(--brand), var(--brand-d)); }

/* ---------- Breadcrumb ---------- */
.breadcrumb { background: var(--bg); border-bottom: 1px solid var(--border); font-size: .85rem; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; padding: .7rem 0; align-items: center; }
.breadcrumb li { color: var(--text-light); }
.breadcrumb li a { color: var(--text-light); }
.breadcrumb li a:hover { color: var(--accent); }
.breadcrumb li::after { content: "/"; margin-left: .4rem; color: var(--border); }
.breadcrumb li:last-child::after { content: ""; }
.breadcrumb li:last-child { color: var(--text); font-weight: 600; }

/* ---------- Sektionskort (meny pa forsidan) ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px,1fr)); gap: 1.2rem; }
.scard { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 1.5rem; box-shadow: var(--shadow); transition: .18s; display: block; }
.scard:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.scard .ico { font-size: 1.7rem; margin-bottom: .6rem; }
.scard h3 { margin-bottom: .35rem; color: var(--text); }
.scard p { font-size: .9rem; color: var(--text-light); margin: 0; }

/* ---------- Bildkort (grid) ---------- */
.dest-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px,1fr)); gap: 1.3rem; }
.dest-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); transition: .18s; display: flex; flex-direction: column; }
.dest-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.dest-card .ph { aspect-ratio: 3/2; background: var(--bg-2); background-size: cover; background-position: center; }
.dest-card .ph-ico { display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--brand-l), var(--brand-d)); }
.dest-card .ph-ico span { font-size: 2.6rem; }
.dest-card .body { padding: 1rem 1.1rem 1.2rem; display: flex; flex-direction: column; flex: 1; }
.dest-card h3 { font-size: 1.1rem; margin-bottom: .15rem; }
.dest-card .grp { font-size: .76rem; color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin-bottom: .5rem; }
.dest-card .desc { font-size: .88rem; color: var(--text-light); flex: 1; }
.dest-card .tags { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: .8rem; }
.tag { font-size: .72rem; background: var(--bg); color: var(--text-light); padding: .2rem .55rem; border-radius: 999px; font-weight: 600; }

/* ---------- Artikelinnehall ---------- */
.article { max-width: 760px; margin: 0 auto; padding: 2.4rem 1.2rem 3.5rem; }
.article p, .article ul, .article ol { font-size: 1.05rem; color: #2c3938; }
.article ul, .article ol { margin: 0 0 1.2rem 1.3rem; }
.article li { margin-bottom: .4rem; }
.article h2 { margin: 2rem 0 .8rem; }
.article h3 { margin: 1.5rem 0 .5rem; }
.article figure { margin: 1.5rem 0; }
.article figure img { border-radius: var(--r); width: 100%; }
.article figcaption { font-size: .8rem; color: var(--text-light); margin-top: .5rem; text-align: center; }
.lead { font-size: 1.18rem; color: #2c3938; }
.toc { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r); padding: 1.1rem 1.4rem; margin: 1.6rem 0; }
.toc h4 { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-light); margin-bottom: .6rem; }
.toc ul { list-style: none; margin: 0; display: grid; gap: .3rem; }
.toc a { font-size: .95rem; font-weight: 600; }

.article-figure { margin: .5rem 0 1.6rem; }
.article-figure img { width: 100%; max-height: 440px; object-fit: cover; border-radius: var(--r-lg); display: block; }
.article-figure figcaption { font-size: .85rem; color: var(--text-light); margin-top: .5rem; text-align: center; }
.img-credit { font-size: .74rem; color: var(--text-light); margin: .25rem 0 0; }
.img-credit a { color: var(--text-light); text-decoration: underline; }
.img-credit a:hover { color: var(--accent); }

.callout { background: var(--accent-soft); border-left: 4px solid var(--accent); border-radius: var(--r-sm); padding: 1.1rem 1.3rem; margin: 1.5rem 0; }
.callout.green { background: #e7f4ee; border-color: var(--good); }
.callout.blue { background: #e9f1f7; border-color: var(--blue); }
.callout.warn { background: #fbf3e2; border-color: var(--warn); }
.callout.danger { background: #fcebe8; border-color: #d6453a; }
.callout p:last-child { margin: 0; }
.callout strong { color: var(--text); }
.callout h3 { margin-bottom: .4rem; font-size: 1.05rem; }

.factbox { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r); padding: 1.3rem 1.5rem; margin: 1.5rem 0; }
.factbox h3 { margin-bottom: .8rem; font-size: 1.05rem; }
.factbox dl { display: grid; grid-template-columns: auto 1fr; gap: .4rem 1rem; font-size: .92rem; }
.factbox dt { color: var(--text-light); font-weight: 600; }
.factbox dd { font-weight: 600; }

.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.5rem 0; }
.pros-cons > div { border-radius: var(--r); padding: 1.1rem 1.3rem; }
.pros { background: #e7f4ee; }
.cons { background: #fcebe8; }
.pros h4, .cons h4 { margin-bottom: .6rem; }
.pros-cons ul { list-style: none; margin: 0; }
.pros-cons li { font-size: .9rem; padding-left: 1.4rem; position: relative; margin-bottom: .45rem; }
.pros li::before { content: "✓"; position: absolute; left: 0; color: var(--good); font-weight: 800; }
.cons li::before { content: "✕"; position: absolute; left: 0; color: #c4553b; font-weight: 800; }

/* ---------- Dag-for-dag tidslinje ---------- */
.timeline { list-style: none; margin: 1.8rem 0; padding: 0; position: relative; }
.timeline::before { content: ""; position: absolute; left: 18px; top: 6px; bottom: 6px; width: 2px; background: var(--bg-2); }
.timeline li { position: relative; padding: 0 0 1.4rem 3.4rem; }
.timeline li:last-child { padding-bottom: 0; }
.timeline .dot { position: absolute; left: 6px; top: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--brand); color: #fff; display: flex; align-items: center; justify-content: center; font-size: .78rem; font-weight: 800; box-shadow: 0 0 0 4px var(--white); }
.timeline h4 { margin-bottom: .2rem; font-size: 1.02rem; }
.timeline p { font-size: .96rem; color: var(--text-light); margin: 0; }

/* ---------- Checklista (nar soka vard / symtomlista) ---------- */
.checklist { list-style: none; margin: 1.4rem 0; padding: 0; }
.checklist li { position: relative; padding: .55rem 0 .55rem 2rem; border-bottom: 1px solid var(--border); font-size: 1rem; }
.checklist li:last-child { border-bottom: none; }
.checklist li::before { content: "✓"; position: absolute; left: 0; top: .55rem; color: var(--good); font-weight: 800; }
.checklist.warn li::before { content: "!"; color: #d6453a; background: #fcebe8; width: 1.4rem; height: 1.4rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; left: 0; top: .5rem; font-size: .9rem; }
.checklist.warn li { padding-left: 2.2rem; }

/* ---------- Kallor / friskrivning ---------- */
.sources { margin-top: 2.6rem; padding-top: 1.6rem; border-top: 2px solid var(--border); }
.sources h2 { font-size: 1.2rem; margin: 0 0 .5rem; }
.sources > p { font-size: .92rem; color: var(--text-light); }
.source-list { list-style: none; margin: .6rem 0 1.2rem; padding: 0; }
.source-list li { position: relative; padding: .3rem 0 .3rem 1.4rem; font-size: .92rem; }
.source-list li::before { content: "›"; position: absolute; left: 0; color: var(--brand); font-weight: 800; }
.callout.disclaimer { font-size: .92rem; }

/* ---------- Intern lankning ---------- */
.related { background: var(--bg); border-top: 1px solid var(--border); }
.related h2 { text-align: center; margin-bottom: 1.5rem; }
.chips { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; }
.chip { background: var(--white); border: 1px solid var(--border); border-radius: 999px; padding: .45rem 1rem; font-size: .88rem; font-weight: 600; color: var(--brand); }
.chip:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- Snabbfakta-rad pa startsidan ---------- */
.quickfacts { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 1rem; margin-top: -3rem; position: relative; z-index: 5; }
.qf { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 1.2rem 1.3rem; box-shadow: var(--shadow); }
.qf .n { font-size: 1.7rem; font-weight: 800; color: var(--brand); line-height: 1.1; }
.qf .l { font-size: .86rem; color: var(--text-light); margin-top: .2rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--brand-d); color: rgba(255,255,255,.8); padding: 3rem 0 1.5rem; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 2rem; }
.footer-brand .nav-logo { color: #fff; margin-bottom: .8rem; }
.footer-brand .nav-logo .nav-logo-text span { color: var(--accent); }
.footer-brand p { font-size: .88rem; color: rgba(255,255,255,.72); max-width: 24rem; }
.footer-col h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .8rem; }
.footer-col a { display: block; color: rgba(255,255,255,.75); font-size: .9rem; padding: .22rem 0; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.15); margin-top: 2.2rem; padding-top: 1.3rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem; font-size: .82rem; color: rgba(255,255,255,.6); }

/* ---------- Sok-modal ---------- */
.search-modal { position: fixed; inset: 0; background: rgba(15,50,48,.55); backdrop-filter: blur(3px); z-index: 200; display: none; padding: 8vh 1rem 0; }
.search-modal.open { display: block; }
.search-box { max-width: 600px; margin: 0 auto; background: var(--white); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.search-box-head { display: flex; align-items: center; padding: .5rem .5rem .5rem 1.2rem; border-bottom: 1px solid var(--border); }
.search-box input { flex: 1; border: none; outline: none; font-size: 1.05rem; padding: .8rem .5rem; }
.search-box .close { background: none; border: none; font-size: 1.3rem; cursor: pointer; color: var(--text-light); padding: .5rem .8rem; }
.search-res { max-height: 50vh; overflow-y: auto; padding: .6rem; }
.search-res a { display: block; padding: .6rem .8rem; border-radius: var(--r-sm); }
.search-res a:hover, .search-res a.sel { background: var(--bg); }
.search-res .t { font-weight: 600; color: var(--text); }
.search-res .s { font-size: .8rem; color: var(--text-light); }
.search-res .empty { padding: 1rem; color: var(--text-light); font-size: .9rem; }

/* ---------- Hjalpare ---------- */
.center { text-align: center; }
.mt2 { margin-top: 2rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.muted { color: var(--text-light); }
.pill { display:inline-block; background: var(--accent-soft); color: var(--accent-h); font-weight: 700; font-size: .78rem; padding: .25rem .7rem; border-radius: 999px; }
.compare-table { width: 100%; border-collapse: collapse; margin: 1.4rem 0; font-size: .94rem; }
.compare-table th, .compare-table td { text-align: left; padding: .6rem .7rem; border-bottom: 1px solid var(--border); }
.compare-table th { background: var(--bg); font-size: .82rem; text-transform: uppercase; letter-spacing: .04em; color: var(--text-light); }

/* ---------- Responsivt / mobil ---------- */
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .quickfacts { margin-top: 1.5rem; }
}
@media (max-width: 1040px) {
  .nav-menu { position: fixed; inset: 56px 0 auto 0; background: var(--white); flex-direction: column; align-items: stretch; padding: 1rem; gap: .2rem; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-lg); display: none; max-height: calc(100vh - 56px); overflow-y: auto; }
  .nav-menu.open { display: flex; }
  .nav-link { padding: .8rem; border-radius: var(--r-sm); }
  .dropdown-menu { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; border: none; padding: .3rem 0 .6rem 1rem; min-width: 0; display: block; }
  .nav-dropdown:hover .dropdown-menu { transform: none; }
  .dropdown-col { margin-bottom: .6rem; }
  .nav-toggle { display: block; margin-left: auto; }
  .grid-2, .pros-cons { grid-template-columns: 1fr; }
  .page-hero { min-height: 260px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 2.4rem 0; }
  .hero-inner { padding: 3rem 1.2rem; }
}

/* ---- Cookie-samtykke-banner ---- */
.cookie-consent { display: none; position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 1200; }
.cookie-consent.show { display: block; }
.cookie-consent .cc-inner {
  max-width: 720px; margin: 0 auto; background: var(--white); color: var(--text);
  border: 1px solid var(--border); border-radius: var(--r); box-shadow: var(--shadow-lg);
  padding: 1.1rem 1.3rem; display: flex; flex-wrap: wrap; align-items: center; gap: .9rem 1.2rem;
}
.cookie-consent .cc-text { flex: 1 1 320px; font-size: .9rem; line-height: 1.5; margin: 0; color: var(--text-light); }
.cookie-consent .cc-text a { color: var(--brand); font-weight: 600; }
.cookie-consent .cc-actions { display: flex; gap: .6rem; flex: 0 0 auto; }
.cookie-consent .cc-btn {
  border: 0; border-radius: 999px; padding: .6rem 1.2rem; font-size: .9rem; font-weight: 700;
  cursor: pointer; font-family: inherit; transition: background .15s, transform .1s;
}
.cookie-consent .cc-accept { background: var(--accent); color: #fff; }
.cookie-consent .cc-accept:hover { background: var(--accent-h); transform: translateY(-1px); }
.cookie-consent .cc-decline { background: var(--bg-2); color: var(--brand); }
.cookie-consent .cc-decline:hover { background: var(--border); }
.footer-bottom a[data-cc-reopen] { color: rgba(255,255,255,.85); text-decoration: underline; }
.footer-bottom a[data-cc-reopen]:hover { color: #fff; }
@media (max-width: 560px) {
  .cookie-consent .cc-inner { padding: 1rem 1.1rem; }
  .cookie-consent .cc-actions { width: 100%; }
  .cookie-consent .cc-btn { flex: 1; }
}
