/* ==========================================================================
   Swiss Dermacenter and Consulting Management GmbH
   Onepager – Sislak Design
   Design: modern, schlicht, Apple-orientiert. Durchgehend Inter.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Schriften lokal eingebunden. Kein Aufruf an Google - dadurch fliessen beim
   Seitenaufruf keine Daten an Dritte und es braucht dafuer keine Einwilligung.
   -------------------------------------------------------------------------- */
@font-face {
  font-family: "Inter";
  src: url("fonts/inter.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Hanken Grotesk";
  src: url("fonts/hanken-grotesk.woff2") format("woff2");
  font-weight: 300 500;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Neutralen – Apple-Grautöne */
  --bg:          #FFFFFF;
  --bg-soft:     #F5F5F7;
  --bg-dark:     #082F41;
  --ink:         #1D1D1F;
  --ink-soft:    #6E6E73;
  --ink-faint:   #86868B;
  --line:        #D2D2D7;
  --line-soft:   #E8E8ED;

  /* Akzent 1 – Blau aus dem Logo (Struktur, Buttons, dunkle Flächen) */
  --accent:      #082F41;
  --accent-dark: #051E2B;
  --accent-mid:  #0E4B66;
  --accent-soft: #E4EDF1;

  /* Akzent 2 – Rot aus dem Logo (sparsame Akzente, Haupt-CTA) */
  --red:         #E3272D;
  --red-dark:    #B81D22;
  --red-soft:    #FBEAEB;

  --wrap:        1120px;

  --r-sm:        10px;
  --r-md:        16px;
  --r-lg:        22px;
  --r-pill:      980px;

  --ff: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

/* Autoren-CSS schlaegt das [hidden] des Browsers - deshalb explizit. */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; scroll-padding-top: 128px; }

body {
  margin: 0;
  font-family: var(--ff);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: -.011em;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }

a { color: var(--accent); text-decoration: none; transition: opacity .2s ease; }
a:hover { opacity: .7; }

h1, h2, h3, h4 {
  font-family: var(--ff);
  color: var(--accent);          /* Blau aus dem Logo */
  margin: 0 0 .5em;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.5rem, 5.4vw, 4rem);
  line-height: 1.06;
  letter-spacing: -.028em;
}
h2 {
  font-size: clamp(1.95rem, 3.8vw, 2.9rem);
  line-height: 1.1;
  letter-spacing: -.024em;
}
h3 {
  font-size: 1.3rem;
  line-height: 1.25;
  letter-spacing: -.016em;
}
h4 { font-size: 1rem; letter-spacing: -.01em; }

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

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 24px;
}
.wrap-wide { max-width: var(--wrap); }

section { padding: 120px 0; }
section.tight { padding: 76px 0; }

.bg-soft { background: var(--bg-soft); }
.bg-dark { background: var(--bg-dark); color: #DCE7EC; }
.bg-dark h2, .bg-dark h3, .bg-dark strong { color: #FFFFFF; }

.eyebrow {
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: -.008em;
  color: var(--red);
  margin: 0 0 12px;
}
.bg-dark .eyebrow { color: #FF8A8E; }

.lead {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  line-height: 1.45;
  letter-spacing: -.014em;
  color: var(--ink-soft);
}
.bg-dark .lead { color: #A2BAC4; }

/* Jede Sektion beginnt gleich: zentrierter Kopf, gleiche Breite, gleicher Abstand. */
.section-head {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  font-family: var(--ff);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -.01em;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .22s ease, color .22s ease, border-color .22s ease, opacity .22s ease;
}
.btn:hover { opacity: 1; }

.btn-primary { background: var(--accent); color: #FFFFFF; }
.btn-primary:hover { background: var(--accent-mid); color: #FFFFFF; }

.btn-red { background: var(--red); color: #FFFFFF; }
.btn-red:hover { background: var(--red-dark); color: #FFFFFF; }

.btn-ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.btn-ghost:hover { background: var(--bg-soft); border-color: var(--line); color: var(--ink); }

.bg-dark .btn-ghost { border-color: rgba(255,255,255,.28); color: #FFFFFF; }
.bg-dark .btn-ghost:hover { background: rgba(255,255,255,.10); color: #FFFFFF; }

.btn-light { background: #FFFFFF; color: var(--ink); }
.btn-light:hover { background: #E8E8ED; color: var(--ink); }

/* ---------- Bild-Platzhalter ---------- */
.ph {
  margin: 0;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--bg-soft);
}
.ph img { width: 100%; height: 100%; object-fit: cover; }
.ph.is-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  box-shadow: inset 0 0 0 1px var(--line-soft);
}
.ph.is-empty::after {
  content: attr(data-label);
  font-size: .88rem;
  font-weight: 500;
  color: var(--ink-faint);
  letter-spacing: -.008em;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 112px;
  max-width: var(--wrap-wide);
}
.brand { display: flex; align-items: center; }
.brand:hover { opacity: .75; }
.brand-logo { display: block; height: 82px; width: auto; }
.brand-logo text { font-family: "Hanken Grotesk", var(--ff); }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  font-size: .88rem;
  font-weight: 400;
  letter-spacing: -.008em;
  color: var(--ink);
}
.nav a:hover { opacity: .6; }
.nav a.btn { padding: 8px 18px; font-size: .88rem; }
.nav a.btn-primary,
.nav a.btn-primary:hover { color: #FFFFFF; opacity: 1; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 7px 16px;
  font-family: var(--ff);
  font-size: .86rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
}

/* ---------- Hero: vollflaechiger Banner ---------- */
.hero { padding: 0; }

.hero-banner {
  position: relative;
  background-color: #EEF2F4;
  background-image: url("images/hero-alternativ.jpg");
  background-size: cover;
  background-position: 28% center;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--line-soft);
}
/* Weisser Verlauf von rechts: die Person bleibt links frei stehen, der Text
   liegt ueber Himmel, Schweizer Karte und Kreuz. */
.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(260deg,
    rgba(255,255,255,.90) 0%,
    rgba(255,255,255,.84) 32%,
    rgba(255,255,255,.48) 56%,
    rgba(255,255,255,.08) 78%,
    rgba(255,255,255,0)   90%);
}
.hero-banner-img { display: none; }
.hero-banner-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 780px;
  padding-block: 96px;
}
.hero-text { max-width: 620px; }
.hero h1 {
  margin-bottom: .3em;
  font-size: clamp(2.1rem, 3.9vw, 3.05rem);
}
.hero .lead { max-width: 34em; color: #46555C; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

/* Ueber dem Foto braucht der zweite Button eine eigene Flaeche - ein reiner
   Rahmen auf hellem Bild verschwindet. */
.hero .btn-ghost {
  background: rgba(255,255,255,.88);
  border-color: rgba(8,47,65,.16);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.hero .btn-ghost:hover { background: #FFFFFF; border-color: rgba(8,47,65,.32); }

/* ---------- Leistungsangebot ---------- */
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service {
  display: flex;
  flex-direction: column;
  background: var(--bg-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .28s cubic-bezier(.2,.7,.3,1);
}
.service:hover { transform: translateY(-4px); }
.bg-soft .service { background: #FFFFFF; }
.bg-soft .ph-service { background: #EDEDF0; }
.ph-service { aspect-ratio: 4 / 3; border-radius: 0; background: #EDEDF0; }
.ph-service.is-empty { box-shadow: inset 0 0 0 1px rgba(0,0,0,.05); }
.service-body { padding: 30px 28px 34px; }
.service .num {
  display: block;
  font-size: .84rem;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 10px;
  letter-spacing: -.004em;
}
.service h3 { margin-bottom: .5em; }
.service p { font-size: .97rem; color: var(--ink-soft); }

.service-more { margin-top: 72px; }
.service-more h3 { margin-bottom: 26px; }
.service-more ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 48px;
}
.service-more li {
  padding: 15px 0;
  border-top: 1px solid var(--line-soft);
  font-size: .98rem;
  color: var(--ink-soft);
  letter-spacing: -.01em;
}

/* ---------- Warum wir ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 44px;
  text-align: center;
}
.pillar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--red);
  margin-bottom: 22px;
}
.bg-soft .pillar-icon { background: #FFFFFF; }
.pillar-icon svg { width: 24px; height: 24px; }
.pillar h3 { margin-bottom: .45em; }
.pillar p { font-size: .97rem; color: var(--ink-soft); }

/* Kontrast-Korrekturen auf grauem Grund */
.bg-soft .ph,
.bg-soft .ph.is-empty { background: #E9E9EE; }
.bg-soft .vita li,
.bg-soft .service-more li,
.bg-soft .contact-list li { border-top-color: var(--line); }
.bg-soft .contact-list li:last-child { border-bottom-color: var(--line); }

/* ---------- Über uns ---------- */
.about-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 64px;
  align-items: center;
}
.ph-portrait { aspect-ratio: 4 / 5; }

/* ---------- Zitat als eigenes Band ---------- */
.statement { padding: 130px 0; }
.statement figure { margin: 0; max-width: 900px; margin-inline: auto; text-align: center; }
.statement blockquote { margin: 0; }
.statement blockquote p {
  font-size: clamp(1.5rem, 2.9vw, 2.3rem);
  line-height: 1.32;
  letter-spacing: -.022em;
  font-weight: 500;
  color: #FFFFFF;
}
.statement figcaption { margin-top: 34px; }
.statement figcaption strong {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: #FFFFFF;
  letter-spacing: -.01em;
}
.statement figcaption span { font-size: .92rem; color: #8AA6B2; }

.vita { list-style: none; margin: 38px 0 0; padding: 0; }
.vita li {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--line-soft);
  font-size: .96rem;
}
.vita time { color: var(--ink-faint); font-variant-numeric: tabular-nums; }
.vita strong { display: block; color: var(--ink); font-weight: 500; }
.vita span { color: var(--ink-soft); }

/* ---------- Zielgruppen ---------- */
.audience { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.audience div {
  background: var(--bg-soft);
  border-radius: var(--r-md);
  padding: 32px 28px;
}
.bg-soft .audience div { background: #FFFFFF; }
.audience h3 { font-size: 1.12rem; }
.audience p { font-size: .96rem; color: var(--ink-soft); }

/* ---------- Kennenlern-Gespräch ---------- */
.meeting { text-align: center; }
.meeting .section-head { margin-bottom: 40px; }
.meeting-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 72px;
}
.steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: left;
}
.steps-list li { padding-top: 24px; border-top: 1px solid rgba(255,255,255,.2); }
.steps-list b {
  display: block;
  font-size: .84rem;
  font-weight: 500;
  color: #8AA6B2;
  margin-bottom: 8px;
  letter-spacing: -.004em;
}
.steps-list strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -.016em;
  color: #FFFFFF;
  margin-bottom: 8px;
}
.steps-list span { font-size: .95rem; color: #A2BAC4; }

/* ---------- Kontakt ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 52px;
  max-width: 760px;
  margin-inline: auto;
}
.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li {
  padding: 16px 0;
  border-top: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 18px;
  font-size: .97rem;
}
.contact-list li:last-child { border-bottom: 1px solid var(--line-soft); }
.contact-list .label { color: var(--ink-faint); overflow-wrap: anywhere; }
.contact-list a { font-weight: 500; }


/* ---------- Gleiches Zeilenraster in allen mehrspaltigen Rastern ----------
   Die Boxen sind durch Grid ohnehin gleich hoch. Damit auch die Zeilen INNEN
   auf einer Linie sitzen, bekommen die Ueberschriften die Hoehe von zwei Zeilen
   reserviert - sonst startet der Fliesstext je nach Umbruch versetzt. */
.service h3,
.audience h3       { min-height: 2.5em; }
.pillar h3         { min-height: 1.25em; }
.steps-list strong { min-height: 1.6em; }

/* ---------- Aufklapper (Werdegang, Impressum, Datenschutz) ---------- */
.acc { border-bottom: 1px solid var(--line-soft); }
.acc:first-of-type { border-top: 1px solid var(--line-soft); }
.bg-soft .acc { border-color: var(--line); }
.acc > summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 0;
  font-size: 1.12rem;
  font-weight: 500;
  letter-spacing: -.016em;
  color: var(--accent);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.acc > summary::-webkit-details-marker { display: none; }
.acc > summary::after {
  content: "";
  flex: none;
  width: 10px; height: 10px;
  border-right: 1.6px solid var(--ink-faint);
  border-bottom: 1.6px solid var(--ink-faint);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .25s ease;
}
.acc[open] > summary::after { transform: rotate(-135deg) translate(-2px, -2px); }
.acc-body { padding: 0 0 30px; }

/* ---------- Über uns: Werdegang unter dem Raster ---------- */
.about-more { margin-top: 56px; }
.about-more .vita { margin: 2px 0 0; }
.about-more .vita li:first-child { border-top: none; }

/* ---------- Rechtsseiten (Impressum, Datenschutz) ---------- */
.legal-page { padding: 116px 0 128px; }
.legal-page h1 { font-size: clamp(2rem, 3.8vw, 2.9rem); letter-spacing: -.024em; }
.legal-page .section-head { margin-bottom: 48px; }
.legal-body {
  max-width: 780px;
  margin-inline: auto;
  font-size: .98rem;
  color: var(--ink-soft);
}
.legal-body h4 {
  margin: 32px 0 .4em;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent);
}
.legal-body h4:first-child { margin-top: 0; }
.legal-back {
  max-width: 780px;
  margin: 52px auto 0;
  padding-top: 26px;
  border-top: 1px solid var(--line-soft);
  font-size: .95rem;
}

/* ---------- Einwilligungs-Banner ---------- */
.cc {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  padding: 0 16px 16px;
  transform: translateY(18px);
  opacity: 0;
  transition: transform .28s cubic-bezier(.2,.7,.3,1), opacity .28s ease;
}
.cc-offen { transform: none; opacity: 1; }

.cc-box {
  max-width: 640px;
  margin-inline: auto;
  background: rgba(255,255,255,.96);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: 0 20px 60px rgba(8,47,65,.20);
  padding: 26px 26px 22px;
  max-height: calc(100vh - 32px);
  overflow-y: auto;
}
.cc-text h2 {
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: -.016em;
  margin-bottom: .45em;
}
.cc-text p { font-size: .92rem; line-height: 1.55; color: var(--ink-soft); }

.cc-optionen { margin-top: 20px; border-top: 1px solid var(--line-soft); }
.cc-option {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-soft);
  cursor: pointer;
}
.cc-option-fix { cursor: default; }
.cc-option input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--accent); }
.cc-option span { font-size: .88rem; line-height: 1.5; color: var(--ink-soft); }
.cc-option strong {
  display: block;
  font-size: .94rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 2px;
}

.cc-aktionen {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 20px;
}
.cc-aktionen .btn { padding: 11px 22px; font-size: .92rem; }
.cc-link {
  background: none;
  border: none;
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 11px 6px;
}
.cc-link:hover { color: var(--accent); background: none; }

@media (max-width: 560px) {
  .cc { padding: 0 12px 12px; }
  .cc-box { padding: 22px 20px 18px; }
  .cc-aktionen .btn { flex: 1 1 100%; }
  .cc-link { flex-basis: auto; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-soft);
  color: var(--ink-soft);
  padding: 52px 0 34px;
  font-size: .82rem;
  letter-spacing: -.006em;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.3fr 1fr;
  gap: 36px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
  max-width: var(--wrap-wide);
}
.footer-brand {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.45;
  margin-bottom: 14px;
  letter-spacing: -.01em;
}
.footer-col h4 {
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}
.footer-col a { display: block; color: var(--ink-soft); padding: 4px 0; }
.footer-col a:hover { color: var(--ink); opacity: 1; }
.site-footer p { margin-bottom: .8em; }
.footer-bottom {
  padding-top: 24px;
  font-size: .78rem;
  color: var(--ink-faint);
  max-width: var(--wrap-wide);
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  section { padding: 96px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .ph-portrait { aspect-ratio: 16 / 10; }
  .service-cards, .audience { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: 1fr; gap: 44px; }
  .steps-list { grid-template-columns: 1fr; gap: 0; }
  .steps-list li { padding: 24px 0; }
  .footer-top { grid-template-columns: repeat(2, 1fr); }
  .hero-banner-inner { min-height: 600px; }
  .hero-banner::before {
    background: linear-gradient(260deg,
      rgba(255,255,255,.96) 0%, rgba(255,255,255,.93) 42%,
      rgba(255,255,255,.72) 66%, rgba(255,255,255,.20) 90%);
  }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  section { padding: 72px 0; }
  section.tight { padding: 56px 0; }
  .brand-logo { height: 58px; }
  .header-inner { min-height: 86px; gap: 16px; }
  .hero { padding: 0 0 68px; }
  /* Auf dem Handy steht das Bild ueber der Schrift statt dahinter. */
  .hero-banner { background-image: none; background-color: transparent; border-bottom: none; }
  .hero-banner::before { display: none; }
  .hero-banner-img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    object-position: 24% center;
  }
  .hero-banner-inner { min-height: 0; padding-block: 40px 0; justify-content: flex-start; }
  .hero .lead { color: var(--ink-soft); }
  .hero .btn-ghost { background: transparent; -webkit-backdrop-filter: none; backdrop-filter: none; border-color: var(--line); }
  .section-head { margin-bottom: 40px; }

  .nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(255,255,255,.98);
    backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--line-soft);
    padding: 6px 24px 22px;
  }
  .nav.open { display: flex; }
  .nav a { padding: 14px 0; font-size: 1rem; border-bottom: 1px solid var(--line-soft); }
  .nav a.btn { margin-top: 18px; padding: 13px 22px; font-size: 1rem; border-bottom: none; }
  .nav-toggle { display: block; }

  .service-cards, .audience, .footer-top { grid-template-columns: 1fr; }
  .service-more { margin-top: 52px; }
  .service-more ul { grid-template-columns: 1fr; }
  .service h3, .audience h3, .pillar h3, .steps-list strong { min-height: 0; }
  .contact-list li, .vita li { grid-template-columns: 1fr; gap: 2px; }
  .meeting-actions { margin-bottom: 48px; }
  .statement { padding: 76px 0; }
}
