/* ==========================================================================
   Newport Beach Police Association PAC
   Palette: accent #3cb3e5 | dark blue #29365f | darker blue #171d35
   Fonts: League Spartan (display), Roboto (body)
   ========================================================================== */

:root {
  --accent: #3cb3e5;
  /* accent is 2.39:1 on white, which fails WCAG AA; this shade is 4.52:1 */
  --accent-ink: #1a7fa8;
  --navy: #29365f;
  --ink: #171d35;
  --gold: #d9a628;
  --white: #ffffff;
  --off-white: #f4f6fa;
  --text-light: #c9d3e8;
  --frame: rgba(255, 255, 255, 0.55);
  --grad-hero: linear-gradient(180deg, rgba(41, 54, 95, 0.82) 0%, rgba(23, 29, 53, 0.90) 62%, rgba(23, 29, 53, 0.97) 100%);
  --grad-panel: linear-gradient(180deg, #29365f 0%, #171d35 100%);
  --grad-band: linear-gradient(135deg, #29365f 0%, #171d35 60%, #10142a 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--ink);
}

/* height:auto is required alongside the width/height attributes in the HTML:
   without it the height attribute is used as the literal rendered height. */
img { max-width: 100%; height: auto; display: block; }

a { color: var(--accent); }

/* white and off-white sections need the darker accent for AA contrast */
.mission a, .safer a, .priorities a, .follow a, .legal__body a { color: var(--accent-ink); }
.mission__quote span { color: var(--accent-ink); }
.priority-card__icon { color: var(--accent-ink); }

.wrap {
  width: min(1140px, 92%);
  margin: 0 auto;
}

/* ---- Type helpers ------------------------------------------------------ */

.eyebrow {
  font-family: 'League Spartan', 'Roboto', sans-serif;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-indent: 0.42em;
  text-transform: uppercase;
  font-size: clamp(0.8rem, 1.6vw, 1.05rem);
  color: var(--white);
}

.eyebrow--dark { color: var(--navy); }

.stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 18px 0;
}

.stars .line {
  height: 2px;
  width: min(120px, 18vw);
  background: rgba(255, 255, 255, 0.55);
}

.stars--dark .line { background: rgba(41, 54, 95, 0.35); }

.stars .star { color: var(--gold); font-size: 1.25rem; letter-spacing: 0.35em; text-indent: 0.35em; }

.display {
  font-family: 'League Spartan', 'Roboto', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
}

.serif-head {
  font-family: 'League Spartan', 'Roboto', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
}

.accent-text { color: var(--accent); }

/* ---- Buttons ----------------------------------------------------------- */

.btn {
  display: inline-block;
  font-family: 'League Spartan', 'Roboto', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 16px 34px 14px;
  border-radius: 4px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35); }

.btn--accent { background: var(--accent); color: var(--ink); }
.btn--accent:hover { background: #57c2ef; }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.75);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn--navy { background: var(--navy); color: var(--white); }
.btn--navy:hover { background: #34457a; }

/* ---- Framed page (thin light border like the ads) ---------------------- */

.page-frame {
  position: relative;
  border: 10px solid transparent;
}

@media (min-width: 700px) {
  .page-frame { border-width: 14px; }
}

/* ======================================================================== */
/* HERO                                                                     */
/* ======================================================================== */

.hero {
  position: relative;
  background: url('../images/hero-newport.jpg') center 35% / cover no-repeat;
  color: var(--white);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding: clamp(56px, 9vw, 120px) 0 clamp(64px, 9vw, 120px);
  text-align: center;
  border: 3px solid var(--frame);
  outline: 10px solid rgba(23, 29, 53, 0.35);
  margin: clamp(14px, 2.5vw, 28px);
}

.hero__logo {
  width: clamp(120px, 16vw, 170px);
  margin: 0 auto 30px;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.45));
}

.hero h1 {
  font-size: clamp(2.2rem, 6.4vw, 4.6rem);
  margin: 10px auto 6px;
  max-width: 20ch;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}

.hero h1 .accent-text { display: block; }

.hero__lede {
  max-width: 62ch;
  margin: 26px auto 0;
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  color: var(--text-light);
  font-weight: 300;
}

.hero__lede strong { color: var(--white); font-weight: 500; }

.hero__cta {
  margin-top: 40px;
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ======================================================================== */
/* MISSION                                                                  */
/* ======================================================================== */

.mission {
  background: var(--white);
  padding: clamp(64px, 8vw, 110px) 0;
  text-align: center;
}

.mission h2 {
  color: var(--navy);
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  margin-bottom: 8px;
}

.mission__quote {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 300;
  font-size: clamp(1.25rem, 2.6vw, 1.75rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--navy);
  max-width: 46ch;
  margin: 28px auto 0;
}



.mission__body {
  margin: 26px auto 0;
  color: #45506e;
}

/* ======================================================================== */
/* ENDORSEMENTS                                                             */
/* ======================================================================== */

.endorsements {
  background: var(--grad-band);
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 9vw, 120px) 0 clamp(80px, 10vw, 130px);
  color: var(--white);
  text-align: center;
}

.endorsements::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-newport.jpg') center / cover no-repeat;
  opacity: 0.10;
}

.endorsements > .wrap { position: relative; z-index: 1; }

.endorsements h2 {
  font-size: clamp(2rem, 5.4vw, 3.7rem);
  margin-top: 4px;
}

.endorsements h2 .accent-text { display: block; }

.endorsements__sub {
  color: var(--text-light);
  font-weight: 300;
  max-width: 60ch;
  margin: 22px auto 0;
}

/* Featured candidate: full-width card (Mayor Kleiman) */

.candidate-feature {
  margin-top: clamp(40px, 5.5vw, 64px);
  background: linear-gradient(180deg, rgba(41, 54, 95, 0.75), rgba(23, 29, 53, 0.92));
  border: 2px solid rgba(255, 255, 255, 0.30);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.4);
  display: grid;
  grid-template-columns: minmax(260px, 420px) 1fr;
  text-align: left;
}

.candidate-feature__photo {
  min-height: 420px;
  background: linear-gradient(180deg, #3a4a80, #171d35);
}

.candidate-feature__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.candidate-feature__info {
  padding: clamp(30px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.candidate-feature__info .candidate-card__stars,
.candidate-feature__info .candidate-card__role { text-indent: 0; }

.candidate-feature__name { font-size: clamp(2.1rem, 4vw, 3.1rem); }

.candidate-feature__info .candidate-card__blurb { font-size: 1.02rem; max-width: 62ch; }

@media (max-width: 760px) {
  .candidate-feature { grid-template-columns: 1fr; text-align: center; }
  .candidate-feature__photo { min-height: 0; height: 440px; }
  .candidate-feature__info { text-align: center; }
  .candidate-feature__info .candidate-card__blurb { text-align: left; }
}

/* Candidate grid (Stapleton, Weigand) */

.candidate-grid {
  margin-top: clamp(40px, 5.5vw, 64px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(24px, 3vw, 36px);
  align-items: stretch;
}

.candidate-card {
  background: linear-gradient(180deg, rgba(41, 54, 95, 0.75), rgba(23, 29, 53, 0.92));
  border: 2px solid rgba(255, 255, 255, 0.30);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
}

.candidate-card__photo {
  height: 540px;
  background: linear-gradient(180deg, #3a4a80, #171d35);
}

.candidate-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.candidate-card__info { padding: 28px 28px 34px; }

.candidate-card__stars { color: var(--gold); letter-spacing: 0.3em; text-indent: 0.3em; font-size: 0.95rem; margin-bottom: 12px; }

.candidate-card__role {
  font-family: 'League Spartan', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  font-size: 0.78rem;
  color: var(--accent);
  margin-bottom: 8px;
}

.candidate-card__name {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 2.1rem;
  color: var(--white);
  line-height: 1.1;
}

.candidate-card__office {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 300;
  font-style: italic;
  color: var(--text-light);
  margin-top: 8px;
  font-size: 1.05rem;
}

.candidate-card__blurb {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: left;
  color: var(--text-light);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.6;
}

.candidate-card__blurb--follow {
  border-top: none;
  padding-top: 0;
  margin-top: 12px;
}

/* ======================================================================== */
/* PRIORITIES / ISSUES                                                      */
/* ======================================================================== */

.priorities {
  background: var(--off-white);
  padding: clamp(70px, 9vw, 120px) 0;
}

.priorities__head { text-align: center; }

.priorities h2 {
  color: var(--navy);
  font-size: clamp(1.9rem, 4.6vw, 3.1rem);
  margin-top: 4px;
}

.priorities__sub {
  margin: 22px auto 0;
  text-align: center;
  color: #45506e;
}

.priority-grid {
  margin-top: clamp(40px, 6vw, 64px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

@media (max-width: 760px) {
  .priority-grid { grid-template-columns: 1fr; }
}

.priority-card {
  background: var(--white);
  border-top: 5px solid var(--accent);
  border-radius: 6px;
  padding: 40px 38px;
  box-shadow: 0 14px 36px rgba(41, 54, 95, 0.12);
}

.priority-card__icon {
  width: 62px;
  height: 62px;
  color: var(--accent-ink);
  margin-bottom: 20px;
}

.priority-card__icon svg { width: 100%; height: 100%; }

.priority-card h3 {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--navy);
  font-size: 1.15rem;
  margin-bottom: 14px;
}

.priority-card p { color: #45506e; font-size: 0.98rem; }

/* ======================================================================== */
/* HEADQUARTERS CASE                                                        */
/* ======================================================================== */

.hq {
  background: var(--grad-band);
  color: var(--white);
  padding: clamp(70px, 9vw, 120px) 0;
}

.hq__head { text-align: center; }

.hq h2 { font-size: clamp(1.9rem, 4.8vw, 3.2rem); margin-top: 4px; }
.hq h2 .accent-text { display: block; }

.hq__sub {
  margin: 22px auto 0;
  text-align: center;
  color: var(--text-light);
  font-weight: 300;
}

.stat-row {
  margin-top: clamp(40px, 5vw, 60px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
  text-align: center;
}

.stat {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(60, 179, 229, 0.35);
  border-radius: 6px;
  padding: 34px 22px 30px;
}

.stat__num {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.7rem);
  color: var(--accent);
  line-height: 1;
}

.stat__label {
  margin-top: 12px;
  font-size: 0.92rem;
  color: var(--text-light);
  font-weight: 300;
}

.stat__label strong { color: var(--white); font-weight: 500; }

.hq__cols {
  margin-top: clamp(44px, 6vw, 70px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.hq__col h3 {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 14px;
}

.hq__col p { color: var(--text-light); font-weight: 300; font-size: 1rem; margin-bottom: 14px; }

.hq__col p strong { color: var(--white); font-weight: 500; }

.hq__quote {
  margin-top: clamp(44px, 6vw, 64px);
  background: rgba(255, 255, 255, 0.04);
  padding: 34px 38px;
  border-radius: 6px;
  max-width: 920px;
  display: flex;
  align-items: center;
  gap: clamp(24px, 3.5vw, 44px);
}

.hq__quote + .hq__quote { margin-top: 30px; }

.hq__quote--left {
  margin-right: auto;
  margin-left: 0;
  border-left: 4px solid var(--accent);
  border-radius: 0 6px 6px 0;
}

.hq__quote--right {
  margin-left: auto;
  margin-right: 0;
  border-right: 4px solid var(--accent);
  border-radius: 6px 0 0 6px;
  flex-direction: row-reverse;
}

.hq__quote-photo {
  flex: 0 0 auto;
  width: clamp(120px, 16vw, 170px);
  height: clamp(120px, 16vw, 170px);
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 3px solid rgba(60, 179, 229, 0.6);
  background: linear-gradient(180deg, #3a4a80, #171d35);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.hq__quote blockquote { flex: 1 1 auto; }

.hq__quote p {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: var(--white);
  line-height: 1.55;
}

.hq__quote cite {
  display: block;
  margin-top: 14px;
  font-family: 'League Spartan', sans-serif;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--accent);
}

@media (max-width: 640px) {
  .hq__quote, .hq__quote--right { flex-direction: column; text-align: center; }
}

/* Coverage map comparison */

.maps {
  margin-top: clamp(44px, 6vw, 70px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
}

.map-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  overflow: hidden;
}

.map-card figcaption {
  padding: 18px 22px 22px;
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 300;
}

.map-card figcaption strong {
  display: block;
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 4px;
  font-size: 1rem;
}

/* ======================================================================== */
/* SAFER NEWPORT CALLOUT                                                    */
/* ======================================================================== */

.safer {
  background: var(--white);
  padding: clamp(70px, 9vw, 120px) 0;
  text-align: center;
}

.safer h2 { color: var(--navy); font-size: clamp(1.8rem, 4.2vw, 2.8rem); margin-top: 4px; }

.safer__sub { margin: 22px auto 0; color: #45506e; }

.sim-grid {
  margin-top: clamp(40px, 5vw, 56px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 26px;
}

.sim-card {
  background: var(--grad-panel);
  color: var(--white);
  border-radius: 6px;
  padding: 44px 34px 40px;
  text-align: center;
  box-shadow: 0 18px 44px rgba(23, 29, 53, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.sim-card__icon { font-size: 2.4rem; line-height: 1; }

.sim-card h3 {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
}

.sim-card p { color: var(--text-light); font-weight: 300; font-size: 0.97rem; }

.sim-card .btn { margin-top: 8px; }

.safer__link { margin-top: 40px; }

/* ======================================================================== */
/* FOLLOW                                                                   */
/* ======================================================================== */

.follow {
  background: var(--off-white);
  padding: clamp(56px, 7vw, 90px) 0;
  text-align: center;
}

.follow h2 { color: var(--navy); font-size: clamp(1.5rem, 3.2vw, 2.1rem); }

.follow__sub { color: #45506e; margin-top: 12px; }

.social-row {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 22px;
}

.social-btn {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, transform 0.15s ease;
}

.social-btn:hover { background: var(--accent); transform: translateY(-3px); }

.social-btn svg { width: 26px; height: 26px; fill: var(--white); }

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

.footer {
  background: var(--ink);
  color: var(--text-light);
  padding: clamp(56px, 7vw, 80px) 0 0;
}

.footer__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__brand { display: flex; align-items: center; gap: 20px; }

.footer__brand img { width: 92px; }

.footer__brand-name {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  font-size: 1.05rem;
  line-height: 1.3;
  max-width: 24ch;
}

.footer__brand-name span { color: var(--accent); display: block; font-size: 0.85em; }

.footer__nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.footer__nav a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.footer__nav a:hover { color: var(--accent); }

.footer__nav .footer__email { color: var(--accent); font-weight: 500; }
.footer__nav .footer__email:hover { color: var(--white); }

.footer__social { display: flex; gap: 14px; }

.footer__social .social-btn { width: 44px; height: 44px; background: rgba(255, 255, 255, 0.1); }
.footer__social .social-btn:hover { background: var(--accent); }
.footer__social svg { width: 19px; height: 19px; }

.footer__meta {
  padding: 26px 0 30px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(201, 211, 232, 0.7);
}

/* FPPC disclaimer: white box, Arial 11pt, per Rockas memo 8/24/26 sec 1(a)+2(b) */

.disclaimer {
  background: var(--white);
  padding: 18px 4%;
  text-align: center;
}

.disclaimer p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11pt;
  font-weight: bold;
  letter-spacing: 0.08em;
  color: #171d35;
  line-height: 1.7;
}

/* ======================================================================== */
/* PRIVACY PAGE                                                             */
/* ======================================================================== */

.page-hero {
  position: relative;
  background: url('../images/hero-newport.jpg') center 30% / cover no-repeat;
  color: var(--white);
  text-align: center;
}

.page-hero::before { content: ''; position: absolute; inset: 0; background: var(--grad-hero); }

.page-hero__inner { position: relative; z-index: 1; padding: clamp(56px, 8vw, 100px) 4%; }

.page-hero__logo { width: 110px; margin: 0 auto 24px; }

.page-hero h1 { font-size: clamp(1.9rem, 4.6vw, 3rem); }

.legal {
  background: var(--white);
  padding: clamp(56px, 7vw, 90px) 0;
}

.legal__body { max-width: 800px; margin: 0 auto; color: #333c55; }

.legal__body h2 {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  font-size: 1.25rem;
  margin: 40px 0 14px;
}

.legal__body h2:first-child { margin-top: 0; }

.legal__body p, .legal__body li { font-size: 1rem; margin-bottom: 14px; }

.legal__body ul { padding-left: 24px; margin-bottom: 14px; }

.legal__updated {
  font-size: 0.9rem;
  color: #6b7590;
  font-style: italic;
}

.legal__back { margin-top: 48px; text-align: center; }

/* ---- Responsive tweaks ------------------------------------------------- */

@media (max-width: 760px) {
  .footer__top { flex-direction: column; text-align: center; justify-content: center; }
  .footer__brand { flex-direction: column; }
  .footer__nav { justify-content: center; }
}

/* ======================================================================== */
/* COOKIE CONSENT BANNER                                                    */
/* ======================================================================== */

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: var(--ink);
  border-top: 3px solid var(--accent);
  padding: 20px clamp(16px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 36px);
  flex-wrap: wrap;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.45);
}

.cookie-banner__text {
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 300;
  max-width: 70ch;
  margin: 0;
}

.cookie-banner__text a { color: var(--accent); }

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner .btn {
  padding: 12px 26px 10px;
  font-size: 0.85rem;
  cursor: pointer;
  border: 2px solid transparent;
}

.cookie-banner .btn--ghost { border-color: rgba(255, 255, 255, 0.6); }

/* keep the FPPC disclaimer reachable while the banner is on screen */
body.has-cookie-banner { padding-bottom: 190px; }

@media (min-width: 900px) {
  body.has-cookie-banner { padding-bottom: 120px; }
}

/* confirmation state after a consent choice */
.cookie-banner--confirm { justify-content: center; }
.cookie-banner__text--confirm { color: var(--white); font-weight: 400; text-align: center; }
.cookie-banner { transition: opacity 0.35s ease, transform 0.35s ease; }
.cookie-banner--out { opacity: 0; transform: translateY(100%); }
