/* ==========================================================================
   Base CSS – Design Tokens, Reset, Typography, Utilities
   Design System: docs/DESIGN.md
   Dark-first: Schwarz ist der Grund, Weiß die Schrift, Rot der Akzent.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Grund & Flächen */
  --color-black: #0A0A0A;
  --color-surface: #141414;
  --color-surface-2: #1F1F1F;
  --color-surface-3: #2A2A2A;
  --color-line: rgba(255, 255, 255, 0.12);
  --color-line-strong: rgba(255, 255, 255, 0.24);
  --color-black-rgb: 10, 10, 10;

  /* Schrift auf Schwarz (Kontrast zu #0A0A0A) */
  --color-white: #FFFFFF;
  --color-text: #F5F5F5;          /* 19:1 */
  --color-text-muted: #B3B3B3;    /* 9,4:1 */
  --color-text-subtle: #8A8A8A;   /* 5,7:1 – Captions, Eyebrows */

  /* Rot – Fläche vs. Text
     #E10600 ist die Markenfarbe für Flächen, Linien und Buttons (Weiß darauf 4,98:1).
     Als TEXT auf Schwarz erreicht es nur 3,98:1 → dafür --color-red-ink (5,6:1). */
  --color-red: #E10600;
  --color-red-dark: #B30500;
  --color-red-ink: #FF3B30;
  --color-red-rgb: 225, 6, 0;

  /* Helle Kontrast-Sektionen (Partner, optional Blog) */
  --color-off-white: #F4F4F4;
  --color-ink-on-light: #0A0A0A;
  --color-muted-on-light: #5A5A5A;   /* 6,9:1 auf #F4F4F4 */
  --color-red-ink-light: #C10500;    /* Rot-Text auf Hell: 6,1:1 */
  --color-line-on-light: rgba(0, 0, 0, 0.12);

  --color-focus: #FF3B30;
  --color-success-ink: #4ADE80;
  --color-error-ink: #FF6B61;

  /* Typografie */
  --font-display: 'Barlow Condensed', 'Arial Narrow', 'Roboto Condensed', Impact, sans-serif;
  --font-body: 'Barlow', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;

  --font-size-display: clamp(3.5rem, 9vw, 8.5rem);   /* Name im Hero */
  --font-size-stat: clamp(3rem, 7vw, 6rem);          /* Bestzeiten */
  --font-size-h1: clamp(2.5rem, 5vw, 4.5rem);
  --font-size-h2: clamp(2rem, 4vw, 3.5rem);
  --font-size-h3: clamp(1.5rem, 2.4vw, 2rem);
  --font-size-h4: 1.25rem;
  --font-size-body-lg: 1.125rem;
  --font-size-body: 1rem;
  --font-size-body-sm: 0.9375rem;
  --font-size-caption: 0.8125rem;
  --font-size-eyebrow: 0.8125rem;

  --line-height-display: 0.92;
  --line-height-heading: 1.0;
  --line-height-tight: 1.2;
  --line-height-body: 1.6;

  --tracking-display: 0.01em;
  --tracking-heading: 0.01em;
  --tracking-eyebrow: 0.16em;

  --measure: 66ch;
  --measure-narrow: 52ch;

  /* Abstände (8px-Basis) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 5rem;
  --space-10: 7.5rem;

  /* Layout – bilderlastig, deshalb breiter als üblich */
  --container-max: 1440px;
  --container-wide: 1680px;
  --container-narrow: 820px;
  --container-padding: 20px;
  --grid-gutter: 16px;
  --section-py: clamp(4rem, 8vw, 8rem);
  --section-py-sm: clamp(2.5rem, 5vw, 4.5rem);

  /* Form */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 6px;

  /* Bewegung */
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 150ms var(--ease-out-quart);
  --transition-default: 220ms var(--ease-out-quart);
  --transition-smooth: 360ms var(--ease-out-quart);
  --transition-slow: 700ms var(--ease-out-expo);

  --header-height: 64px;
  --shadow-lg: 0 24px 56px rgba(0, 0, 0, 0.45);
}

@media (min-width: 640px) {
  :root {
    --container-padding: 32px;
    --grid-gutter: 24px;
  }
}

@media (min-width: 1024px) {
  :root {
    --container-padding: 56px;
    --grid-gutter: 32px;
    --header-height: 80px;
    --font-size-body: 1.0625rem;
  }
}

/* --------------------------------------------------------------------------
   1b. Helle Sektionen: Tokens einmal umsetzen, Kinder erben.
   -------------------------------------------------------------------------- */
.section--light,
.theme-light {
  --color-text: var(--color-ink-on-light);
  --color-text-muted: var(--color-muted-on-light);
  --color-text-subtle: var(--color-muted-on-light);
  --color-red-ink: var(--color-red-ink-light);
  --color-line: var(--color-line-on-light);
  --color-line-strong: rgba(0, 0, 0, 0.3);
  --color-surface: #FFFFFF;
  --color-surface-2: #EAEAEA;
  --color-focus: var(--color-red-ink-light);
  background-color: var(--color-off-white);
  color: var(--color-text);
}

/* --------------------------------------------------------------------------
   2. Fonts (selbst gehostet, DSGVO)
   -------------------------------------------------------------------------- */
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/barlow-condensed-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/barlow-condensed-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('fonts/barlow-condensed-800.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/barlow-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/barlow-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/barlow-600.woff2') format('woff2');
}

/* --------------------------------------------------------------------------
   3. Reset
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  background-color: var(--color-black);
  color-scheme: dark;
}

body {
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-body);
  color: var(--color-text);
  background-color: var(--color-black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

body.is-menu-open,
body.is-lightbox-open {
  overflow: hidden;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-default), opacity var(--transition-default);
}

a:hover {
  color: var(--color-red-ink);
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

ul,
ol {
  list-style: none;
}

main {
  overflow-x: clip;
}

/* --------------------------------------------------------------------------
   4. Typografie
   -------------------------------------------------------------------------- */
.display,
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: var(--tracking-heading);
  color: var(--color-text);
  text-wrap: balance;
}

.display {
  font-size: var(--font-size-display);
  font-weight: var(--font-weight-extrabold);
  line-height: var(--line-height-display);
  letter-spacing: var(--tracking-display);
}

h1, .h1 {
  font-size: var(--font-size-h1);
  font-weight: var(--font-weight-extrabold);
  line-height: var(--line-height-heading);
}

h2, .h2 {
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-heading);
}

h3, .h3 {
  font-size: var(--font-size-h3);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
}

h4, .h4 {
  font-size: var(--font-size-h4);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-tight);
  letter-spacing: 0.04em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-body);
  font-size: var(--font-size-eyebrow);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--color-red-ink);
  margin-bottom: var(--space-4);
}

.eyebrow--line::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--color-red);
  flex-shrink: 0;
}

.lead {
  font-size: var(--font-size-body-lg);
  line-height: 1.55;
  color: var(--color-text-muted);
  max-width: var(--measure);
  text-wrap: pretty;
}

p {
  margin-bottom: var(--space-4);
}

p:last-child {
  margin-bottom: 0;
}

.text-muted { color: var(--color-text-muted); }
.text-subtle { color: var(--color-text-subtle); }
.text-red { color: var(--color-red-ink); }
.text-center { text-align: center; }
.text-sm { font-size: var(--font-size-body-sm); }
.text-caption { font-size: var(--font-size-caption); color: var(--color-text-subtle); }

.tabular,
.tabular-nums {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

.rte {
  max-width: var(--measure);
}

.rte h2,
.rte h3,
.rte h4 {
  margin-top: var(--space-7);
  margin-bottom: var(--space-4);
}

.rte h2:first-child,
.rte h3:first-child {
  margin-top: 0;
}

.rte p,
.rte ul,
.rte ol {
  margin-bottom: var(--space-5);
  color: var(--color-text-muted);
}

.rte ul {
  list-style: disc;
  padding-left: 1.25em;
}

.rte ol {
  list-style: decimal;
  padding-left: 1.25em;
}

.rte a {
  color: var(--color-red-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rte a:hover {
  color: var(--color-text);
}

.rte blockquote {
  border-left: 3px solid var(--color-red);
  padding-left: var(--space-5);
  margin: var(--space-6) 0;
  font-family: var(--font-display);
  font-size: var(--font-size-h3);
  text-transform: uppercase;
  line-height: 1.15;
}

.rte figure {
  margin: var(--space-6) 0;
}

.rte figcaption,
.wp-element-caption {
  font-size: var(--font-size-caption);
  color: var(--color-text-subtle);
  margin-top: var(--space-2);
}

.rte img {
  width: 100%;
}

.rte strong {
  color: var(--color-text);
}

/* --------------------------------------------------------------------------
   5. Layout
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.container--wide {
  max-width: var(--container-wide);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}

.section--tight {
  padding-top: var(--section-py-sm);
  padding-bottom: var(--section-py-sm);
}

.section--surface {
  background-color: var(--color-surface);
}

.section__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-4) var(--space-6);
  margin-bottom: var(--space-7);
}

.section__header .eyebrow {
  margin-bottom: var(--space-2);
}

.section__header .h2 {
  margin: 0;
}

/* Diagonale „Speed-Stripes“ als dezentes Hintergrundmotiv */
.section--stripes {
  position: relative;
  isolation: isolate;
}

.section--stripes::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    repeating-linear-gradient(
      -60deg,
      transparent 0 120px,
      rgba(var(--color-red-rgb), 0.06) 120px 124px
    );
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.9), transparent 70%);
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.9), transparent 70%);
  pointer-events: none;
}

.grid {
  display: grid;
  gap: var(--grid-gutter);
}

.grid--2,
.grid--3,
.grid--4 {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.flex { display: flex; }
.flex--center { align-items: center; justify-content: center; }
.flex--between { align-items: center; justify-content: space-between; }

.divider {
  border: 0;
  border-top: 1px solid var(--color-line);
}

/* --------------------------------------------------------------------------
   6. Buttons & Links
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: 0 28px;
  min-height: 52px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  transition: background-color var(--transition-default),
              border-color var(--transition-default),
              color var(--transition-default),
              transform var(--transition-default);
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform var(--transition-default);
}

.btn:hover svg,
.btn:focus-visible svg {
  transform: translateX(4px);
}

.btn--primary {
  background-color: var(--color-red);
  color: var(--color-white);
  border: 2px solid var(--color-red);
}

.btn--primary:hover {
  background-color: var(--color-red-dark);
  border-color: var(--color-red-dark);
  color: var(--color-white);
  transform: translateY(-1px);
}

.btn--secondary {
  background-color: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-line-strong);
}

.btn--secondary:hover {
  border-color: var(--color-text);
  background-color: var(--color-text);
  color: var(--color-black);
}

.btn--ghost {
  background-color: transparent;
  color: var(--color-text);
  border: 2px solid transparent;
  padding-left: var(--space-3);
  padding-right: var(--space-3);
}

.btn--ghost:hover {
  color: var(--color-red-ink);
}

.btn--sm {
  min-height: 44px;
  padding: 0 20px;
  font-size: 1rem;
}

.btn--lg {
  min-height: 60px;
  padding: 0 40px;
  font-size: 1.25rem;
}

.btn--full {
  width: 100%;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text);
  border-bottom: 2px solid var(--color-red);
  padding-bottom: 2px;
  transition: gap var(--transition-default), color var(--transition-default);
}

.link-arrow svg {
  width: 18px;
  height: 18px;
}

.link-arrow:hover {
  gap: var(--space-3);
  color: var(--color-red-ink);
}

/* --------------------------------------------------------------------------
   7. Bild-Karten (Blog, Alben, Social)
   -------------------------------------------------------------------------- */
.media-card {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  color: var(--color-text);
}

.media-card__media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--color-surface-2);
}

.media-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease-out-expo);
}

.media-card:hover .media-card__media img {
  transform: scale(1.04);
}

.media-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.72));
  pointer-events: none;
}

.media-card__body {
  position: absolute;
  inset: auto 0 0 0;
  padding: var(--space-5);
  z-index: 1;
}

.media-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  font-size: var(--font-size-caption);
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-red-ink);
  margin-bottom: var(--space-2);
}

.media-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2vw, 1.75rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--color-white);
  margin: 0;
}

.media-card__title::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  margin-top: var(--space-2);
  background: var(--color-red);
  transition: width var(--transition-smooth);
}

.media-card:hover .media-card__title::after {
  width: 48px;
}

.media-card--tall .media-card__media {
  aspect-ratio: 4 / 5;
}

.media-card--wide .media-card__media {
  aspect-ratio: 16 / 9;
}

.media-card--square .media-card__media {
  aspect-ratio: 1;
}

/* --------------------------------------------------------------------------
   8. Formulare
   -------------------------------------------------------------------------- */
.form-group {
  margin-bottom: var(--space-5);
}

.form-label {
  display: block;
  font-size: var(--font-size-caption);
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

.form-input {
  width: 100%;
  border: 1px solid var(--color-line-strong);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-surface);
  transition: border-color var(--transition-default);
}

.form-input:focus {
  border-color: var(--color-red);
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--color-red-rgb), 0.25);
}

.form-input::placeholder {
  color: var(--color-text-subtle);
}

textarea.form-input {
  min-height: 160px;
  resize: vertical;
}

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23B3B3B3' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 48px;
}

.form-check {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  font-size: var(--font-size-body-sm);
  color: var(--color-text-muted);
}

.form-check input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--color-red);
  flex-shrink: 0;
}

.form-notice {
  border: 1px solid var(--color-line-strong);
  border-left: 4px solid var(--color-red);
  padding: var(--space-4) var(--space-5);
  margin-bottom: var(--space-5);
  background: var(--color-surface);
}

.form-notice--success {
  border-left-color: var(--color-success-ink);
}

.form-notice--error {
  border-left-color: var(--color-error-ink);
}

.form-notice ul {
  list-style: disc;
  padding-left: var(--space-5);
  margin-top: var(--space-2);
  color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   9. Utilities
   -------------------------------------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  width: auto;
  height: auto;
  padding: 12px 20px;
  clip: auto;
  background: var(--color-red);
  color: var(--color-white);
}

.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: var(--space-4); }
.mb-5 { margin-bottom: var(--space-5); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-7 { margin-bottom: var(--space-7); }

.icon {
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   10. Fokus
   -------------------------------------------------------------------------- */
:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* --------------------------------------------------------------------------
   11. Reveal-Animationen
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms var(--ease-out-expo), transform 800ms var(--ease-out-expo);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease-out-expo), transform 700ms var(--ease-out-expo);
}

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 60ms; opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 140ms; opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 220ms; opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 300ms; opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 380ms; opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 460ms; opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(n+7) { transition-delay: 540ms; opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   12. Reduced Motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* --------------------------------------------------------------------------
   13. WordPress-Kern
   -------------------------------------------------------------------------- */
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.alignwide {
  margin-left: calc(-1 * var(--container-padding));
  margin-right: calc(-1 * var(--container-padding));
}

.alignfull {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.wp-block-image img {
  width: 100%;
}
