/* ============================================================
   FRICKE - WERKSTATT-MAGAZIN
   Editorial heritage-industrial system.
   Hard edges, black-dominant, oversized Yanone, no rounded UI.
   ============================================================ */

@import url("./colors_and_type.css");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;700&family=Caveat:wght@500;700&display=swap");

:root {
  /* Editorial palette (overrides for this kit) */
  --ed-pitch:        #000000;   /* deepest black for stat panels */
  --ed-black:        #0a0a0a;
  --ed-ink:          #141414;
  --ed-concrete:     #2a2a2a;
  --ed-paper:        #efe9dc;
  --ed-paper-deep:   #e1d9c5;
  --ed-paper-line:   #c9bfa6;
  --ed-red:          #e41b12;
  --ed-red-deep:     #a8120b;
  --ed-yellow:       #ffe112;
  --ed-bone:         #d8d2c4;
  --ed-rule:         #2c2c2c;

  --ed-font-display: "Yanone Kaffeesatz", "Oswald", Impact, sans-serif;
  --ed-font-body:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --ed-font-mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  --ed-font-hand:    "Caveat", "Permanent Marker", "Comic Sans MS", cursive;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--ed-black);
  color: var(--ed-bone);
  font-family: var(--ed-font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

/* ---------- Container ---------- */
.ed-frame { max-width: 1400px; margin: 0 auto; padding: 0 56px; }

/* ---------- Surfaces ---------- */
.s-black    { background: var(--ed-black); color: var(--ed-bone); }
.s-ink      { background: var(--ed-ink);   color: var(--ed-bone); }
.s-concrete { background: var(--ed-concrete); color: var(--ed-bone); }
.s-paper    { background: var(--ed-paper); color: var(--ed-black); }

/* ---------- Magazine label (Nr. 01 / WERKSTATT) ---------- */
.ed-label {
  font-family: var(--ed-font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ed-bone);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.ed-label::before {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: currentColor;
  opacity: .55;
}
.s-paper .ed-label { color: var(--ed-black); }
.ed-label .red  { color: var(--ed-red); font-weight: 700; }

.ed-num {
  font-family: var(--ed-font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: .04em;
  color: var(--ed-red);
}

/* ---------- Display headlines (brutal) ---------- */
.ed-display {
  font-family: var(--ed-font-display);
  font-weight: 700;
  text-transform: uppercase;
  line-height: .88;
  letter-spacing: -.01em;
  margin: 0;
  color: inherit;
}
.ed-display--xxl { font-size: clamp(96px, 14vw, 220px); }
.ed-display--xl  { font-size: clamp(72px, 10vw, 160px); }
.ed-display--lg  { font-size: clamp(56px, 7vw,  120px); }
.ed-display--md  { font-size: clamp(40px, 5vw,  72px); }

.ed-h2 {
  font-family: var(--ed-font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: .9;
  letter-spacing: .005em;
  margin: 0;
}
.ed-h3 {
  font-family: var(--ed-font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: .95;
  letter-spacing: .01em;
  margin: 0;
}

/* ---------- Body / lede ---------- */
.ed-lede {
  font-family: var(--ed-font-body);
  font-size: 22px;
  line-height: 1.4;
  font-weight: 400;
  max-width: 30ch;
  color: var(--ed-bone);
}
.s-paper .ed-lede { color: var(--ed-black); }

.ed-body {
  font-family: var(--ed-font-body);
  font-size: 17px;
  line-height: 1.62;
  color: rgba(216, 210, 196, .85);
  max-width: 38ch;
}
.s-paper .ed-body { color: rgba(10, 10, 10, .78); }

.ed-byline {
  font-family: var(--ed-font-mono);
  font-size: 11.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(216, 210, 196, .55);
}
.s-paper .ed-byline { color: rgba(10, 10, 10, .55); }

/* ---------- Drop cap ---------- */
.ed-dropcap::first-letter {
  font-family: var(--ed-font-display);
  font-weight: 700;
  font-size: 5.2em;
  line-height: .82;
  float: left;
  padding: 6px 14px 0 0;
  color: var(--ed-red);
  margin-top: -4px;
}

/* ---------- Hard CTA (no rounding) ---------- */
.ed-cta {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--ed-font-mono);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 13px;
  font-weight: 600;
  padding: 18px 26px;
  border: 0;
  background: var(--ed-red);
  color: #fff;
  cursor: pointer;
  transition: background 150ms linear;
}
.ed-cta:hover { background: var(--ed-red-deep); }
.ed-cta::after { content: "→"; font-family: var(--ed-font-display); font-size: 22px; line-height: 1; transform: translateY(-1px); }

.ed-cta--ghost {
  background: transparent;
  color: var(--ed-bone);
  box-shadow: inset 0 0 0 1.5px currentColor;
}
.s-paper .ed-cta--ghost { color: var(--ed-black); }
.ed-cta--ghost:hover    { background: rgba(255,255,255,.08); }
.s-paper .ed-cta--ghost:hover { background: rgba(0,0,0,.06); }

.ed-phone {
  display: inline-flex; align-items: baseline; gap: 14px;
  font-family: var(--ed-font-display); font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em;
}
.ed-phone .digits { font-size: 32px; line-height: 1; color: inherit; }
.ed-phone .tag    { font-family: var(--ed-font-mono); font-size: 11px; font-weight: 500; letter-spacing: .2em; opacity: .55; text-transform: uppercase; }

/* ---------- Caution stripe (red + black diagonal) ---------- */
.ed-caution {
  height: 14px;
  background-image: repeating-linear-gradient(
    -45deg,
    var(--ed-red) 0 18px,
    var(--ed-black) 18px 36px
  );
}
.ed-caution--thin { height: 8px; }
.ed-caution--thick { height: 22px; }

/* ---------- Rule lines ---------- */
.ed-rule        { height: 1px; background: var(--ed-rule); border: 0; margin: 0; }
.s-paper .ed-rule { background: var(--ed-paper-line); }

/* ---------- EST. 1928 stamp ---------- */
.ed-stamp {
  width: 124px; height: 124px;
  border: 2px solid currentColor;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  position: relative;
  color: var(--ed-red);
  font-family: var(--ed-font-display);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
}
.ed-stamp .y { font-size: 32px; letter-spacing: .02em; }
.ed-stamp::before {
  content: "EST. WENDLAND · FRICKE TRANSPORTE · ";
  position: absolute; inset: 0;
  font-family: var(--ed-font-mono);
  font-size: 9.5px;
  letter-spacing: .18em;
  /* fallback: replaced by SVG variant below in inline usage */
}
.ed-stamp.simple::before { content: none; }
.ed-stamp.simple { font-size: 11px; letter-spacing: .18em; gap: 2px; flex-direction: column; padding-top: 14px; padding-bottom: 14px; }
.ed-stamp.simple .y { font-size: 38px; }

/* ---------- Patch (certificate) - workshop-door sewn-on patch ---------- */
.ed-patch {
  --patch-size: 156px;
  --patch-bg: var(--ed-yellow);
  --patch-fg: var(--ed-black);
  --patch-stitch: rgba(0,0,0,.55);
  --patch-tack: rgba(0,0,0,.4);
  width: var(--patch-size); height: var(--patch-size);
  background-color: var(--patch-bg);
  color: var(--patch-fg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 18px;
  text-align: center;
  font-family: var(--ed-font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: .95;
  box-shadow:
    0 28px 56px rgba(0,0,0,.55),
    0 6px 12px rgba(0,0,0,.4),
    inset 0 -3px 6px rgba(0,0,0,.12),
    inset 0 3px 6px rgba(255,255,255,.18);
  position: relative;
  /* aged paper / felt texture */
  background-image:
    radial-gradient(rgba(0,0,0,.085) 1px, transparent 1.3px),
    radial-gradient(rgba(255,255,255,.16) 1px, transparent 1.4px),
    linear-gradient(135deg, rgba(0,0,0,.08), transparent 50%);
  background-size: 3px 3px, 5px 5px, 100% 100%;
  background-blend-mode: multiply, screen, normal;
  filter: contrast(1.02);
  /* rough cut edge (default; override per-instance with [data-edge]) */
  clip-path: polygon(
    1% 2%, 14% 0%, 32% 1.5%, 48% 0%, 66% 1%, 84% 0.5%, 99% 2%,
    100% 18%, 98.5% 36%, 100% 54%, 99% 72%, 100% 88%, 98% 99%,
    82% 100%, 64% 98.5%, 48% 100%, 30% 99%, 14% 100%, 1% 98%,
    0% 84%, 1.5% 66%, 0% 48%, 1% 30%, 0% 14%
  );
}
.ed-patch[data-edge="2"] { clip-path: polygon(
    0% 4%, 12% 0%, 28% 2%, 46% 0%, 64% 1.5%, 82% 0%, 100% 3%,
    98% 16%, 100% 34%, 99% 52%, 100% 70%, 98.5% 86%, 100% 99%,
    84% 100%, 66% 99%, 48% 100%, 30% 98.5%, 12% 100%, 0% 96%,
    1.5% 82%, 0% 64%, 2% 46%, 0% 28%, 1% 12%); }
.ed-patch[data-edge="3"] { clip-path: polygon(
    2% 0%, 18% 1%, 36% 0%, 54% 2%, 72% 0%, 88% 1%, 100% 1%,
    99% 18%, 100% 36%, 98% 54%, 100% 72%, 99% 90%, 99% 100%,
    86% 99%, 68% 100%, 50% 98%, 32% 100%, 14% 99%, 0% 100%,
    2% 84%, 0% 66%, 1% 48%, 0% 30%, 2% 14%); }

/* stitch outline */
.ed-patch::before {
  content: ""; position: absolute; inset: 11px;
  border: 2px dashed var(--patch-stitch);
  pointer-events: none;
}
/* corner tacks */
.ed-patch::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle 2.5px at 14px 14px, var(--patch-tack) 65%, transparent 72%),
    radial-gradient(circle 2.5px at calc(100% - 14px) 14px, var(--patch-tack) 65%, transparent 72%),
    radial-gradient(circle 2.5px at 14px calc(100% - 14px), var(--patch-tack) 65%, transparent 72%),
    radial-gradient(circle 2.5px at calc(100% - 14px) calc(100% - 14px), var(--patch-tack) 65%, transparent 72%);
  pointer-events: none;
}
/* Color modifiers - invert tack + stitch on dark patches */
.ed-patch.red   { --patch-bg: var(--ed-red);   --patch-fg: #fff;             --patch-stitch: rgba(255,255,255,.55); --patch-tack: rgba(255,255,255,.45); }
.ed-patch.black { --patch-bg: #1a1a1a;          --patch-fg: var(--ed-bone);   --patch-stitch: rgba(255,255,255,.45); --patch-tack: rgba(255,255,255,.35); }
.ed-patch.bone  { --patch-bg: #e8e0cc;          --patch-fg: var(--ed-black);  --patch-stitch: rgba(0,0,0,.55);       --patch-tack: rgba(0,0,0,.5); }
/* Size modifiers */
.ed-patch.lg    { --patch-size: 220px; padding: 22px; }
.ed-patch.lg .big   { font-size: 38px; }
.ed-patch.lg .num, .ed-patch.lg .small { font-size: 12px; }
.ed-patch.sm    { --patch-size: 132px; padding: 14px; }
.ed-patch.sm .big   { font-size: 24px; }

.ed-patch .num  { font-size: 11px; letter-spacing: .2em; font-family: var(--ed-font-mono); font-weight: 500; opacity: .75; margin-bottom: 6px; position: relative; z-index: 1; }
.ed-patch .big  { font-size: 30px; line-height: .92; position: relative; z-index: 1; }
.ed-patch .small{ font-size: 11px; letter-spacing: .2em; font-family: var(--ed-font-mono); font-weight: 500; margin-top: 6px; opacity: .75; position: relative; z-index: 1; }

/* ---------- Header ---------- */
.ed-nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--ed-black);
  border-bottom: 1px solid var(--ed-rule);
}
.ed-nav__inner {
  max-width: 1400px; margin: 0 auto; padding: 18px 56px;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 48px;
}
.ed-nav__brand { display: flex; align-items: center; gap: 16px; white-space: nowrap; }
.ed-nav__brand img { height: 36px; flex: 0 0 auto; filter: brightness(0) invert(1); }
.ed-nav__brand .strap { display: none; }
.ed-nav__links { display: flex; gap: 28px; justify-content: center; }
.ed-nav__link {
  font-family: var(--ed-font-mono); font-size: 12px;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(216,210,196,.78);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 150ms, border-color 150ms;
  white-space: nowrap;
}
.ed-nav__link:hover { color: var(--ed-yellow); border-color: var(--ed-yellow); }
.ed-nav__phone { font-family: var(--ed-font-display); font-weight: 700; font-size: 22px; color: var(--ed-bone); letter-spacing: .02em; white-space: nowrap; text-align: right; }
.ed-nav__phone .lab { font-family: var(--ed-font-mono); font-size: 10px; letter-spacing: .22em; color: rgba(216,210,196,.55); display: block; margin-bottom: 4px; font-weight: 500; }

/* ---------- Concrete texture overlay (used on s-concrete sections) ---------- */
.tex-concrete {
  position: relative;
  background: var(--ed-concrete);
}
.tex-concrete::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(rgba(255,255,255,.04) 1px, transparent 1.4px),
    radial-gradient(rgba(0,0,0,.45) 1px, transparent 1.6px);
  background-size: 4px 4px, 7px 7px;
  background-position: 0 0, 2px 1px;
  mix-blend-mode: overlay;
  opacity: .65;
}

/* ---------- Paper texture overlay (very subtle) ---------- */
.tex-paper {
  position: relative;
  background: var(--ed-paper);
}
.tex-paper::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(rgba(0,0,0,.06) 1px, transparent 1.2px);
  background-size: 3px 3px;
  opacity: .5;
}

/* ---------- Photo helpers ---------- */
.ed-photo {
  background-size: cover; background-position: center;
  filter: contrast(1.05) saturate(.95);
}
.ed-photo--bw { filter: grayscale(1) contrast(1.08); }

/* ---------- Footer ---------- */
.ed-foot {
  background: #050505; color: rgba(216,210,196,.7);
  padding: 56px 0 32px;
  border-top: 1px solid var(--ed-rule);
}
.ed-foot a { color: inherit; }
.ed-foot__inner {
  max-width: 1400px; margin: 0 auto; padding: 0 56px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px;
}
.ed-foot__col h5 {
  font-family: var(--ed-font-mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(216,210,196,.55);
  margin: 0 0 12px;
  font-weight: 600;
}
.ed-foot__col a, .ed-foot__col p {
  display: block;
  font-family: var(--ed-font-body);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}
.ed-foot__legal {
  margin-top: 40px; padding: 18px 56px 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  font-family: var(--ed-font-mono); font-size: 10.5px; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(216,210,196,.45);
  max-width: 1400px; margin-left: auto; margin-right: auto;
  border-top: 1px solid var(--ed-rule);
}
.ed-foot__legal a.fox { color: var(--ed-yellow); }
.ed-foot__brand img { height: 44px; filter: brightness(0) invert(1); opacity: .9; }

/* ---------- Small util ---------- */
.red { color: var(--ed-red); }
.yel { color: var(--ed-yellow); }
.ws-nowrap { white-space: nowrap; }
.muted { opacity: .6; }

/* ---------- Deeper black helper (for stat panels per direction) ---------- */
.s-pitch { background: var(--ed-pitch); color: var(--ed-bone); }

/* ---------- Hand-lettered note (Caveat) ---------- */
.ed-hand {
  font-family: var(--ed-font-hand);
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  line-height: 1.1;
  color: var(--ed-red);
  letter-spacing: 0;
  text-transform: none;
}

/* ---------- Drop cap (4-line tall, red Yanone) ----------
   Sized for body line-height ≈1.62 at 17px → ~110px == 4 lines. */
.ed-dropcap::first-letter,
.va-dropcap::first-letter {
  font-family: var(--ed-font-display);
  font-weight: 700;
  font-size: 6.4em;
  line-height: .82;
  float: left;
  padding: 4px 14px 0 0;
  color: var(--ed-red);
  margin-top: -2px;
}
.s-paper .va-dropcap::first-letter { color: var(--ed-red); }

/* ---------- Marginalia (outer-margin shop note) ---------- */
.ed-margin {
  font-family: var(--ed-font-hand);
  font-weight: 500;
  font-size: 19px;
  line-height: 1.2;
  color: rgba(216, 210, 196, .68);
  position: absolute;
  width: 160px;
  text-align: left;
  font-style: italic;
  letter-spacing: 0;
}
.s-paper .ed-margin { color: rgba(10, 10, 10, .55); }
.ed-margin::before {
  content: "";
  display: block;
  width: 28px; height: 1px;
  background: currentColor;
  opacity: .65;
  margin-bottom: 8px;
}

/* ---------- Editorial byline strip (sits below hero) ---------- */
.ed-byline-strip {
  background: var(--ed-pitch);
  border-bottom: 1px solid var(--ed-rule);
  color: var(--ed-bone);
}
.ed-byline-strip__frame {
  max-width: 1400px; margin: 0 auto; padding: 22px 56px;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 32px;
}
.ed-byline-strip .role {
  font-family: var(--ed-font-mono);
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--ed-yellow); font-weight: 600;
}
.ed-byline-strip .name {
  font-family: var(--ed-font-display); font-weight: 700;
  font-size: 22px; letter-spacing: .04em; text-transform: uppercase;
  color: #fff;
}
.ed-byline-strip .credit {
  font-family: var(--ed-font-body);
  font-size: 13.5px; line-height: 1.4;
  color: rgba(216, 210, 196, .65);
  font-style: italic;
  max-width: 56ch;
}
.ed-byline-strip .credit em { font-style: normal; color: var(--ed-bone); }

/* ---------- Photo placeholder (where final photography is pending) ---------- */
.va-pending {
  position: relative;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.03) 0 14px, transparent 14px 28px),
    linear-gradient(160deg, #1f1f1f 0%, #0d0d0d 100%);
  display: flex; align-items: stretch; justify-content: stretch;
  isolation: isolate;
}
.va-pending.has-src { background: none; }
.va-pending__img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: grayscale(.25) contrast(1.05) saturate(.9);
}
.va-pending::before {
  content: ""; position: absolute; inset: 12px;
  border: 1.5px dashed rgba(216, 210, 196, .25);
  pointer-events: none; z-index: 2;
}
.va-pending__tag {
  position: absolute; left: 16px; bottom: 16px; z-index: 3;
  display: flex; flex-direction: column; gap: 4px;
  font-family: var(--ed-font-mono);
  font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255, 255, 255, .82);
  background: rgba(0,0,0,.55);
  padding: 8px 12px;
  backdrop-filter: blur(2px);
}
.va-pending__tag .file { color: var(--ed-yellow); }
.va-pending__tag .note { color: rgba(255,255,255,.65); font-size: 10px; }

/* ---------- Thumbtack ---------- */
.ed-tack {
  width: 26px; height: 26px;
  position: absolute; z-index: 4;
  pointer-events: none;
}
.ed-tack::after {
  content: ""; position: absolute; left: 50%; top: 100%;
  width: 14px; height: 3px;
  background: rgba(0,0,0,.35); border-radius: 50%;
  transform: translate(-50%, -50%); filter: blur(1.5px);
}
.ed-tack svg { width: 100%; height: 100%; display: block; position: relative; z-index: 1; }

/* ---------- TCW-Engine Form-Status (success/error nach Form-Submit) ---------- */
.form-status {
  padding: 14px 18px;
  margin-top: 14px;
  font-family: var(--ed-font-mono);
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-left: 4px solid currentColor;
}
.form-status:empty { display: none; }
.form-status.success {
  background: rgba(47, 138, 79, .12);
  color: #2f8a4f;
  border-color: #2f8a4f;
}
.form-status.error {
  background: rgba(228, 27, 18, .12);
  color: var(--ed-red);
  border-color: var(--ed-red);
}

/* ---------- TCW-Engine Cookie-Banner (Override, passt zum Heritage-Industrial) ---------- */
#fox-consent-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #000;
  color: var(--ed-bone);
  z-index: 9999;
  box-shadow: 0 -8px 32px rgba(0,0,0,.5);
  border-top: 3px solid var(--ed-yellow);
  font-family: var(--ed-font-body);
}
#fox-consent-banner .fox-consent-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 22px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
#fox-consent-banner .fox-consent-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.55;
  min-width: 280px;
  color: rgba(216,210,196,.85);
}
#fox-consent-banner .fox-consent-text a {
  color: var(--ed-yellow);
  text-decoration: underline;
}
#fox-consent-banner .fox-consent-actions {
  display: flex;
  gap: 10px;
}
#fox-consent-banner button {
  padding: 12px 22px;
  border: 1px solid rgba(255,255,255,.25);
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-family: var(--ed-font-mono);
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
}
#fox-consent-banner button.primary {
  background: var(--ed-red);
  border-color: var(--ed-red);
}
#fox-consent-banner button:hover {
  background: rgba(255,255,255,.08);
}
#fox-consent-banner button.primary:hover {
  background: var(--ed-red-deep);
}

@media (max-width: 640px) {
  #fox-consent-banner .fox-consent-inner {
    padding: 18px 20px;
  }
}
