/*
Theme Name: Demo-Verein Miteinander Lindenau
Theme URI: https://25to.com
Author: 25to Communication
Author URI: https://25to.com
Description: Mehrseitiges WordPress-Demo-Theme fuer einen modernen Stadtteilverein mit Angeboten, Projekten, Terminen, Mitmachen, Karriere und Kontakt.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: verein-demo
*/

:root {
  --verein-ink: #1c2430;
  --verein-soft: #536171;
  --verein-muted: #7c8794;
  --verein-paper: #f4f2ec;
  --verein-white: #fffdf8;
  --verein-line: rgba(28, 36, 48, 0.14);
  --verein-navy: #17335c;
  --verein-blue: #2f6fed;
  --verein-green: #3f8b5f;
  --verein-lime: #d6e36a;
  --verein-red: #d84e5a;
  --verein-sand: #e8ddc7;
  --verein-shadow: 0 22px 64px rgba(28, 36, 48, 0.16);
  --verein-radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--verein-paper);
  color: var(--verein-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.56;
}
body.admin-bar .verein-header { top: 32px; }
a { color: inherit; }
img { max-width: 100%; height: auto; }

.verein-shell {
  width: min(1500px, calc(100% - 48px));
  margin: 0 auto;
}
.verein-skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: var(--verein-radius);
  background: var(--verein-navy);
  color: white;
}
.verein-skip-link:focus { top: 16px; }
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

.verein-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 900;
  width: min(1500px, calc(100% - 48px));
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 16px 46px rgba(28, 36, 48, 0.12);
  backdrop-filter: blur(18px);
}
.verein-header__inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.verein-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 270px;
  color: var(--verein-ink);
  text-decoration: none;
}
.verein-brand__mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--verein-navy);
  color: var(--verein-lime);
  font-weight: 950;
}
.verein-brand__text span {
  display: block;
  font-weight: 900;
  line-height: 1.1;
}
.verein-brand__text small {
  display: block;
  color: var(--verein-soft);
  font-size: 13px;
}
.verein-nav__list,
.verein-nav__fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.verein-nav a {
  display: inline-flex;
  padding: 10px 11px;
  border-radius: 8px;
  color: var(--verein-soft);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.verein-nav a:hover,
.verein-nav .current-menu-item a {
  background: rgba(47, 111, 237, 0.1);
  color: var(--verein-navy);
  transform: translateY(-1px);
}
.verein-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--verein-line);
  border-radius: 8px;
  background: var(--verein-white);
  color: var(--verein-ink);
  font-size: 22px;
}

.verein-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--verein-navy);
  border-radius: 8px;
  background: var(--verein-navy);
  color: white;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, border-color 0.22s ease;
}
.verein-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(28, 36, 48, 0.18);
}
.verein-button--accent {
  border-color: var(--verein-lime);
  background: var(--verein-lime);
  color: #1b230a;
}
.verein-button--light {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.92);
  color: var(--verein-navy);
}
.verein-button--ghost {
  border-color: var(--verein-line);
  background: transparent;
  color: var(--verein-navy);
}
.verein-button--accent::after,
.verein-button--light::after {
  content: "→";
  margin-left: 10px;
  transition: transform 0.2s ease;
}
.verein-button--accent:hover::after,
.verein-button--light:hover::after { transform: translateX(3px); }

.verein-hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: end;
  color: white;
  background: var(--verein-navy);
}
.verein-hero__image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 51, 92, 0.88), rgba(23, 51, 92, 0.44) 52%, rgba(23, 51, 92, 0.18)),
    linear-gradient(0deg, rgba(23, 51, 92, 0.92), rgba(23, 51, 92, 0) 46%),
    var(--verein-img-2) center / cover no-repeat;
  animation: verein-hero-pan 13s ease-in-out infinite alternate;
}
.verein-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: clamp(26px, 5vw, 82px);
  align-items: end;
  padding: 146px 0 56px;
}
.verein-demo-note {
  display: inline-flex;
  margin: 0 0 16px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 850;
}
.verein-eyebrow {
  margin: 0 0 13px;
  color: var(--verein-blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.verein-hero .verein-eyebrow { color: var(--verein-lime); }
.verein-hero h1,
.verein-section__head h2,
.verein-page-title,
.verein-page-block h2 {
  margin: 0;
  font-size: clamp(42px, 6.4vw, 98px);
  line-height: 0.96;
  letter-spacing: 0;
}
.verein-hero__lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 1.7vw, 24px);
}
.verein-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.verein-impact-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 720px;
  margin-top: 46px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}
.verein-impact-strip div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(16px);
}
.verein-impact-strip strong {
  display: block;
  font-size: 30px;
  line-height: 1;
}
.verein-impact-strip span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}
.verein-hero__panel {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
  transition: transform 0.28s ease;
}
.verein-hero__panel:hover { transform: translateY(-4px); }
.verein-next-card {
  padding: 26px;
  border-radius: 8px;
  background: var(--verein-white);
  color: var(--verein-ink);
}
.verein-next-card small {
  display: block;
  color: var(--verein-blue);
  font-weight: 900;
  text-transform: uppercase;
}
.verein-next-card strong {
  display: block;
  margin: 8px 0;
  font-size: 34px;
  line-height: 1.05;
}
.verein-next-card p { margin: 0 0 16px; color: var(--verein-soft); }
.verein-next-card__meta {
  display: grid;
  gap: 9px;
  margin: 18px 0;
}
.verein-next-card__meta span {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-top: 1px solid var(--verein-line);
}

.verein-section { padding: 94px 0; }
.verein-section--white { background: var(--verein-white); }
.verein-section--blue {
  background: var(--verein-navy);
  color: white;
}
.verein-section--blue .verein-section__head p,
.verein-section--blue .verein-card p,
.verein-section--blue .verein-card li { color: rgba(255, 255, 255, 0.78); }
.verein-section__head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.58fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 36px;
}
.verein-section__head h2,
.verein-page-block h2 {
  font-size: clamp(30px, 3vw, 54px);
}
.verein-section__head p {
  margin: 0;
  color: var(--verein-soft);
  font-size: 18px;
}

.verein-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.verein-card,
.verein-offer,
.verein-page-teaser,
.verein-form-demo,
.verein-event,
.verein-project,
.verein-job-card {
  border: 1px solid var(--verein-line);
  border-radius: 8px;
  background: var(--verein-white);
  box-shadow: 0 12px 32px rgba(28, 36, 48, 0.06);
}
.verein-section--blue .verein-card {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}
.verein-card,
.verein-page-teaser,
.verein-project,
.verein-offer,
.verein-event,
.verein-job-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.verein-card:hover,
.verein-page-teaser:hover,
.verein-project:hover,
.verein-offer:hover,
.verein-event:hover,
.verein-job-card:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 111, 237, 0.34);
  box-shadow: var(--verein-shadow);
}
.verein-card { padding: 26px; }
.verein-card__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--verein-lime);
  color: #1b230a;
  font-weight: 950;
}
.verein-card h3,
.verein-offer h3,
.verein-project h3,
.verein-event h3,
.verein-job-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.14;
}
.verein-card p,
.verein-offer p,
.verein-project p,
.verein-event p,
.verein-job-card p {
  margin: 0;
  color: var(--verein-soft);
}

.verein-offer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}
.verein-offer {
  min-height: 360px;
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: end;
  padding: 24px;
  color: white;
  background: var(--verein-navy);
}
.verein-offer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.35s ease;
}
.verein-offer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20, 31, 45, 0.88), rgba(20, 31, 45, 0.18));
}
.verein-offer:hover::before { transform: scale(1.04); }
.verein-offer > * {
  position: relative;
  z-index: 1;
}
.verein-offer p { color: rgba(255, 255, 255, 0.78); }
.verein-offer--large { grid-row: span 2; min-height: 740px; }
.verein-offer--1::before { background-image: var(--verein-img-1); }
.verein-offer--2::before { background-image: var(--verein-img-3); }
.verein-offer--3::before { background-image: var(--verein-img-4); }
.verein-offer__tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 7px 10px;
  border-radius: 8px;
  background: var(--verein-lime);
  color: #1b230a;
  font-size: 13px;
  font-weight: 900;
}

.verein-pages-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}
.verein-page-teaser {
  display: flex;
  flex-direction: column;
  grid-column: span 2;
  min-height: 230px;
  padding: 22px;
  text-decoration: none;
}
.verein-section--blue .verein-page-teaser {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: white;
}
.verein-page-teaser em {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--verein-lime);
  color: #1b230a;
  font-style: normal;
  font-weight: 950;
  font-size: 13px;
}
.verein-page-teaser strong {
  display: block;
  margin-bottom: 8px;
  font-size: 21px;
}
.verein-page-teaser span { color: var(--verein-soft); }
.verein-section--blue .verein-page-teaser span { color: rgba(255, 255, 255, 0.76); }
.verein-page-teaser small {
  display: block;
  margin-top: auto;
  padding-top: 18px;
  color: var(--verein-blue);
  font-weight: 900;
}
.verein-section--blue .verein-page-teaser small { color: var(--verein-lime); }

.verein-story {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  align-items: stretch;
}
.verein-story__image {
  min-height: 580px;
  border-radius: 8px;
  background: var(--verein-img-5) center / cover no-repeat;
}
.verein-story__body {
  display: grid;
  align-content: center;
  gap: 18px;
  margin: 54px 0 54px -54px;
  padding: 42px;
  border-radius: 8px;
  background: var(--verein-white);
  box-shadow: var(--verein-shadow);
}
.verein-story__body blockquote {
  margin: 0;
  color: var(--verein-navy);
  font-size: clamp(25px, 3vw, 42px);
  line-height: 1.1;
}
.verein-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.verein-metrics div {
  padding: 16px;
  border-radius: 8px;
  background: var(--verein-paper);
}
.verein-metrics strong {
  display: block;
  color: var(--verein-blue);
  font-size: 30px;
  line-height: 1;
}
.verein-metrics span { color: var(--verein-soft); font-size: 13px; }

.verein-form-demo {
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(214, 227, 106, 0.28), rgba(255, 253, 248, 0.98)),
    var(--verein-white);
}
.verein-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.verein-field {
  display: grid;
  gap: 7px;
}
.verein-field--full { grid-column: 1 / -1; }
.verein-field label {
  font-weight: 850;
  font-size: 14px;
}
.verein-field input,
.verein-field select,
.verein-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--verein-line);
  border-radius: 6px;
  background: white;
  color: var(--verein-ink);
  font: inherit;
}
.verein-field textarea { min-height: 130px; resize: vertical; }
.verein-field small {
  color: var(--verein-muted);
  font-size: 13px;
}
.verein-choice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
  color: var(--verein-soft);
}
.verein-toast {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(63, 139, 95, 0.14);
  color: #245a3b;
  font-weight: 850;
}
.verein-toast.is-visible { display: block; }
.verein-member-form {
  margin-top: 34px;
}
.verein-form-section {
  padding: 24px 0;
  border-top: 1px solid var(--verein-line);
}
.verein-form-section:first-child {
  padding-top: 0;
  border-top: 0;
}
.verein-form-section h3 {
  margin: 0 0 18px;
  color: var(--verein-navy);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.08;
}
.verein-form-copy,
.verein-form-note {
  margin: 0 0 14px;
  color: var(--verein-soft);
}
.verein-form-note {
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(47, 111, 237, 0.08);
  font-weight: 800;
}
.verein-radio-group {
  display: grid;
  gap: 10px;
  margin: 18px 0 14px;
  padding: 18px;
  border: 1px solid var(--verein-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}
.verein-radio-group legend {
  padding: 0 8px;
  color: var(--verein-ink);
  font-weight: 850;
}
.verein-radio-group label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--verein-soft);
}

.verein-content { padding: 112px 0 96px; }
.verein-content__inner {
  width: min(1060px, calc(100% - 48px));
  margin: 0 auto;
}
.verein-page-intro { margin-bottom: 36px; }
.verein-page-title { font-size: clamp(38px, 4.6vw, 72px); }
.verein-page-block { margin: 0 0 30px; }
.verein-page-block p,
.verein-page-block li { color: var(--verein-soft); font-size: 18px; }
.verein-project-grid,
.verein-event-grid,
.verein-job-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0;
}
.verein-project,
.verein-event,
.verein-job-card { padding: 24px; }
.verein-project ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--verein-soft);
}
.verein-project span,
.verein-event time,
.verein-job-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--verein-blue);
  font-weight: 900;
}
.verein-info-panel {
  padding: 22px;
  border-radius: 8px;
  background: var(--verein-navy);
  color: white;
}
.verein-info-panel p { color: rgba(255, 255, 255, 0.78); }
.verein-project-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.45fr);
  gap: 24px;
  align-items: stretch;
  margin: 34px 0;
  padding: 30px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(23, 51, 92, 0.94), rgba(23, 51, 92, 0.68)),
    var(--verein-img-2) center / cover no-repeat;
  color: white;
  box-shadow: var(--verein-shadow);
}
.verein-project-hero h2 {
  margin: 0 0 14px;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 0.98;
}
.verein-project-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
}
.verein-project-facts {
  display: grid;
  gap: 10px;
}
.verein-project-facts div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}
.verein-project-facts strong {
  display: block;
  color: var(--verein-lime);
  font-size: 32px;
  line-height: 1;
}
.verein-project-facts span {
  color: rgba(255, 255, 255, 0.72);
}
.verein-project-detail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0;
}
.verein-project-detail div {
  padding: 24px;
  border: 1px solid var(--verein-line);
  border-radius: 8px;
  background: var(--verein-white);
}
.verein-project-detail h3 {
  margin: 0 0 10px;
  font-size: 25px;
}
.verein-project-detail p {
  margin: 0;
  color: var(--verein-soft);
}
.verein-area {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(330px, 1fr);
  gap: 22px;
  margin: 28px 0;
}
.verein-area__map {
  min-height: 430px;
  position: relative;
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 31px, rgba(23, 51, 92, 0.12) 32px),
    linear-gradient(transparent 31px, rgba(23, 51, 92, 0.12) 32px),
    #dfe8ce;
  background-size: 64px 64px;
}
.verein-area__map::after {
  content: "Lindenau";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 174px;
  height: 174px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border: 3px solid var(--verein-blue);
  border-radius: 50%;
  color: var(--verein-blue);
  font-weight: 950;
}
.verein-area__list { display: grid; gap: 12px; }
.verein-area__list div {
  padding: 18px;
  border: 1px solid var(--verein-line);
  border-radius: 8px;
  background: var(--verein-white);
}
.verein-area__list strong { display: block; }
.verein-area__list span { color: var(--verein-soft); }

.verein-footer {
  padding: 54px 0;
  background: var(--verein-ink);
  color: white;
}
.verein-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(220px, 0.45fr));
  gap: 28px;
}
.verein-footer .verein-brand { color: white; }
.verein-footer .verein-brand__mark { background: var(--verein-lime); color: #1b230a; }
.verein-footer p,
.verein-footer small { color: rgba(255, 255, 255, 0.72); }

@keyframes verein-hero-pan {
  from { transform: scale(1.02) translateX(0); }
  to { transform: scale(1.07) translateX(-1.4%); }
}

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

@media (max-width: 1180px) {
  .verein-header__actions { display: none; }
  .verein-hero__grid,
  .verein-section__head,
  .verein-offer-grid,
  .verein-story,
  .verein-area,
  .verein-project-hero,
  .verein-project-detail { grid-template-columns: 1fr; }
  .verein-offer--large { grid-row: auto; min-height: 420px; }
  .verein-story__body { margin: 0; }
  .verein-card-grid,
  .verein-project-grid,
  .verein-event-grid,
  .verein-job-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  body.admin-bar .verein-header,
  .verein-header {
    top: 0;
    left: 0;
    width: 100%;
    transform: none;
    border-radius: 0;
  }
  .verein-shell,
  .verein-content__inner { width: min(100% - 28px, 720px); }
  .verein-header__inner { min-height: 68px; }
  .verein-brand { min-width: 0; }
  .verein-brand__text small { display: none; }
  .verein-menu-toggle { display: grid; place-items: center; }
  .verein-nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 14px;
    right: 14px;
    padding: 14px;
    border: 1px solid var(--verein-line);
    border-radius: 8px;
    background: var(--verein-white);
    box-shadow: var(--verein-shadow);
  }
  .verein-nav.is-open { display: block; }
  .verein-nav__list,
  .verein-nav__fallback {
    display: grid;
    justify-content: stretch;
    gap: 4px;
  }
  .verein-nav a { width: 100%; }
  .verein-hero { min-height: auto; }
  .verein-hero__grid { padding: 112px 0 44px; }
  .verein-impact-strip,
  .verein-card-grid,
  .verein-pages-grid,
  .verein-form-grid,
  .verein-project-grid,
  .verein-event-grid,
  .verein-job-grid,
  .verein-footer__grid,
  .verein-metrics { grid-template-columns: 1fr; }
  .verein-page-teaser { grid-column: auto; }
  .verein-section { padding: 62px 0; }
  .verein-story__image,
  .verein-area__map { min-height: 350px; }
}
