/* ============================================================
   SkateFACTORY Wien — Design System
   Farben: Rot #D6001C · Schwarz · Weiß
   ============================================================ */

/* ---- Lokale Fonts (selbst gehostet, kein Google-CDN / DSGVO-freundlich) ----
   Variable Fonts: eine Datei deckt den gesamten Gewichtsbereich ab. */
@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../assets/fonts/archivo-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../assets/fonts/inter-latin.woff2") format("woff2");
}

:root {
  --red: #d6001c;
  --red-dark: #a30015;
  --red-glow: rgba(214, 0, 28, 0.45);
  --black: #0a0a0a;
  --black-soft: #121214;
  --black-card: #18181b;
  --white: #ffffff;
  --gray: #a1a1aa;
  --gray-dark: #5a5a63;
  --line: rgba(255, 255, 255, 0.1);

  --font-head: "Archivo", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --maxw: 1200px;
  --nav-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

/* ---- Layout helpers ---- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.section {
  padding-block: clamp(3.5rem, 8vw, 7rem);
}

.section--alt {
  background: var(--black-soft);
}

.eyebrow {
  color: var(--red);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.section-title .accent {
  color: var(--red);
}

.rule {
  width: 64px;
  height: 4px;
  background: var(--red);
  border: none;
  margin-bottom: 2.5rem;
}

.text-muted {
  color: var(--gray);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.2s ease, color 0.2s ease,
    border-color 0.2s ease, box-shadow 0.2s ease;
  clip-path: polygon(0 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 8px 30px -10px var(--red-glow);
}

.btn--primary:hover {
  background: var(--red-dark);
  box-shadow: 0 12px 36px -8px var(--red-glow);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn--ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

/* ============================================================
   Navbar
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}

.nav__inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-head);
  font-weight: 800;
  text-transform: uppercase;
}

.brand__logo {
  height: 38px;
  width: auto;
}

.brand__text {
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}

.brand__text .accent {
  color: var(--red);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav__links a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  position: relative;
  padding-block: 0.25rem;
  transition: color 0.2s ease;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--white);
}

.nav__links a.active::after,
.nav__links a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--red);
}

.nav__cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 0.55rem 1.2rem !important;
  clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.nav__cta::after {
  display: none !important;
}

.nav__cta:hover {
  background: var(--red-dark);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav__toggle span {
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav.open .nav__toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav.open .nav__toggle span:nth-child(2) {
  opacity: 0;
}
.nav.open .nav__toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
  background: radial-gradient(
      ellipse at 70% 20%,
      rgba(214, 0, 28, 0.22) 0%,
      transparent 55%
    ),
    linear-gradient(160deg, #050505 0%, #141416 60%, #050505 100%);
}

/* moving diagonal streaks for "speed" feel */
.hero__streaks {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.5;
}

.hero__streaks span {
  position: absolute;
  top: -20%;
  height: 140%;
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--red),
    transparent
  );
  transform: rotate(18deg);
  animation: streak 7s linear infinite;
}

@keyframes streak {
  0% {
    transform: translateX(-10vw) rotate(18deg);
    opacity: 0;
  }
  20% {
    opacity: 0.6;
  }
  80% {
    opacity: 0.6;
  }
  100% {
    transform: translateX(110vw) rotate(18deg);
    opacity: 0;
  }
}

.hero__inner {
  position: relative;
  z-index: 2;
}

.hero__logo {
  height: clamp(90px, 16vw, 170px);
  width: auto;
  margin-bottom: 1.75rem;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.6));
}

.hero h1 {
  font-size: clamp(2.6rem, 9vw, 6rem);
  max-width: 14ch;
}

.hero h1 .accent {
  color: var(--red);
}

.hero__sub {
  margin-top: 1.5rem;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  color: var(--gray);
  max-width: 50ch;
}

.hero__actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--gray);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero__scroll::after {
  content: "";
  width: 1px;
  height: 36px;
  background: linear-gradient(var(--red), transparent);
  animation: scrollpulse 1.8s ease-in-out infinite;
}

@keyframes scrollpulse {
  0%,
  100% {
    transform: scaleY(0.4);
    opacity: 0.4;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

/* small page hero for subpages */
.page-hero {
  position: relative;
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 3.5rem;
  background: radial-gradient(
      ellipse at 80% 0%,
      rgba(214, 0, 28, 0.25) 0%,
      transparent 60%
    ),
    var(--black);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  right: -60px;
  top: 0;
  bottom: 0;
  width: 200px;
  background: var(--red);
  opacity: 0.08;
  transform: skewX(-12deg);
}

.page-hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
}

.page-hero h1 .accent {
  color: var(--red);
}

.page-hero p {
  color: var(--gray);
  margin-top: 0.75rem;
  max-width: 55ch;
}

/* ============================================================
   Cards / grids
   ============================================================ */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: var(--black-card);
  border: 1px solid var(--line);
  padding: 1.75rem;
  transition: transform 0.25s ease, border-color 0.25s ease,
    box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(214, 0, 28, 0.5);
  box-shadow: 0 18px 40px -20px rgba(0, 0, 0, 0.8);
}

.card:hover::before {
  transform: scaleY(1);
}

.card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

/* ---- Event card ---- */
.event {
  display: flex;
  gap: 1.5rem;
  align-items: stretch;
  background: var(--black-card);
  border: 1px solid var(--line);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.event:hover {
  transform: translateX(6px);
  border-color: rgba(214, 0, 28, 0.5);
}

.event__date {
  flex: 0 0 110px;
  background: var(--red);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 14px 50%);
}

.event__day {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.2rem;
  line-height: 1;
}

.event__month {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

.event__year {
  font-size: 0.7rem;
  opacity: 0.8;
  margin-top: 0.15rem;
}

.event__body {
  padding: 1.25rem 1.5rem 1.25rem 0.5rem;
  flex: 1;
}

.event__body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.event__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.event__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* ---- News ---- */
.news__tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  margin-bottom: 0.85rem;
}

.news__date {
  color: var(--gray-dark);
  font-size: 0.8rem;
  margin-bottom: 0.4rem;
}

/* ============================================================
   Forms
   ============================================================ */
.form {
  max-width: 640px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}

.field label .req {
  color: var(--red);
}

.field input,
.field textarea,
.field select {
  background: var(--black-soft);
  border: 1px solid var(--line);
  color: var(--white);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(214, 0, 28, 0.18);
}

.field textarea {
  resize: vertical;
  min-height: 130px;
}

/* Notfallkontakte: mehrere Einträge mit je 3 Feldern (Name/Mail/Telefon) */
.notfall-eintrag {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  padding: 1rem;
  margin-bottom: 0.75rem;
}
.notfall-eintrag__felder {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.75rem;
}
.notfall-entfernen {
  margin-top: 0.65rem;
  background: transparent;
  border: none;
  color: var(--gray);
  font-family: var(--font-body);
  font-size: 0.8rem;
  cursor: pointer;
  padding: 0.2rem 0;
  text-decoration: underline;
}
.notfall-entfernen:hover {
  color: var(--red);
}
#notfall-hinzufuegen {
  align-self: flex-start;
  margin-top: 0.25rem;
}
.btn--small {
  padding: 0.55rem 1.2rem;
  font-size: 0.8rem;
}

.form__note {
  font-size: 0.8rem;
  color: var(--gray-dark);
  margin-top: 0.5rem;
}

.form__status {
  margin-top: 1rem;
  padding: 0.9rem 1.1rem;
  font-weight: 600;
  display: none;
}

.form__status.show {
  display: block;
}

.form__status.success {
  background: rgba(40, 180, 80, 0.12);
  border: 1px solid rgba(40, 180, 80, 0.5);
  color: #6fe09a;
}

.form__status.error {
  background: rgba(214, 0, 28, 0.12);
  border: 1px solid rgba(214, 0, 28, 0.5);
  color: #ff7a8a;
}

/* ============================================================
   Table / Bestenliste
   ============================================================ */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
}

table.results {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

table.results th,
table.results td {
  padding: 0.9rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

table.results thead th {
  background: var(--black-soft);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}

table.results thead th:hover {
  color: var(--white);
}

table.results thead th .arrow {
  color: var(--red);
  font-size: 0.7rem;
  margin-left: 0.3rem;
}

table.results tbody tr {
  transition: background 0.15s ease;
}

table.results tbody tr:hover {
  background: rgba(214, 0, 28, 0.06);
}

table.results td.rank {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
}

.results tr.podium-1 td.rank {
  color: #ffd24a;
}
.results tr.podium-2 td.rank {
  color: #d6d6dc;
}
.results tr.podium-3 td.rank {
  color: #d68a4a;
}

.hidden {
  display: none !important;
}

/* ---- Login-Karte (Mitgliederbereich) ------------------------------- */
.auth-card {
  max-width: 420px;
  margin-inline: auto;
  background: var(--black-card);
  border: 1px solid var(--line);
  padding: 2.5rem;
  text-align: center;
}

.auth-card h2 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.auth-card p {
  color: var(--gray);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.auth-card .field {
  margin-bottom: 1.25rem;
  text-align: left;
}

.auth-card .btn {
  width: 100%;
  justify-content: center;
  clip-path: none;
}

/* ---- Document list ---- */
.doc {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--black-card);
  border: 1px solid var(--line);
  padding: 1rem 1.25rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.doc:hover {
  border-color: rgba(214, 0, 28, 0.5);
  transform: translateX(4px);
}

.doc__icon {
  flex: 0 0 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--red);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.7rem;
  color: var(--white);
}

.doc__info {
  flex: 1;
}

.doc__info strong {
  display: block;
}

.doc__info span {
  color: var(--gray-dark);
  font-size: 0.8rem;
}

.doc__dl {
  color: var(--red);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================================
   Contact / Map
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.info-block {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-block__icon {
  flex: 0 0 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: rgba(214, 0, 28, 0.15);
  color: var(--red);
  font-size: 1.1rem;
}

.info-block h4 {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-bottom: 0.2rem;
}

.map-embed {
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  filter: grayscale(0.3) contrast(1.1);
}

/* ---- Karten-Zustimmungsbanner (DSGVO: kein Auto-Load von Google) ---- */
.map-consent {
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  background: var(--black-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.25rem;
  padding: 1.75rem;
}

.map-consent__text {
  color: var(--gray);
  font-size: 0.9rem;
  max-width: 36ch;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: #050505;
  border-top: 1px solid var(--line);
  padding-block: 3.5rem 1.75rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer__brand .brand {
  margin-bottom: 1rem;
}

.footer__brand p {
  color: var(--gray);
  font-size: 0.9rem;
  max-width: 38ch;
}

.footer h4 {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer ul a {
  color: var(--gray);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer ul a:hover {
  color: var(--red);
}

.footer__bottom {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--gray-dark);
  font-size: 0.8rem;
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  color: var(--gray);
  transition: color 0.2s ease;
}

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

/* ============================================================
   Legal pages (Impressum / Datenschutz)
   ============================================================ */
.legal {
  max-width: 820px;
}

.legal h2 {
  font-size: 1.4rem;
  margin: 2.5rem 0 0.75rem;
  color: var(--white);
}

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

.legal h3 {
  font-size: 1.05rem;
  margin: 1.5rem 0 0.5rem;
  color: var(--white);
}

.legal p,
.legal li {
  color: var(--gray);
  margin-bottom: 0.75rem;
}

.legal ul {
  padding-left: 1.25rem;
  margin-bottom: 0.75rem;
}

.legal a {
  color: var(--red);
}

.legal .placeholder {
  background: rgba(214, 0, 28, 0.1);
  border-left: 3px solid var(--red);
  padding: 0.15rem 0.4rem;
  color: var(--white);
  font-weight: 600;
}

/* ============================================================
   Scroll reveal
   ============================================================ */
/* Standardmäßig sichtbar (fail-safe). Der versteckte Zustand wird per JS
   über ".armed" gesetzt – siehe reveal() in main.js. So bleiben Inhalte
   sichtbar, falls JavaScript nicht lädt. */
.reveal {
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.armed {
  opacity: 0;
  transform: translateY(28px);
}

.reveal.armed.in {
  opacity: 1;
  transform: none;
}

/* ============================================================
   Responsive
   ============================================================ */
/* Navigation collapses to hamburger early enough that the
   desktop links + CTA never overflow. */
@media (max-width: 980px) {
  .nav__links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    padding: 1rem 1.25rem 1.5rem;
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    z-index: 99;
  }
  .nav.open .nav__links {
    transform: translateY(0);
  }
  .nav__links li {
    width: 100%;
  }
  .nav__links a {
    display: block;
    padding: 0.9rem 0;
    width: 100%;
    border-bottom: 1px solid var(--line);
  }
  .nav__cta {
    margin-top: 0.75rem;
    display: inline-block;
  }
  .nav__toggle {
    display: flex;
  }
}

/* Layout collapses */
@media (max-width: 900px) {
  .grid--3 {
    grid-template-columns: 1fr 1fr;
  }
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .grid--3,
  .grid--2,
  .form-grid,
  .contact-grid,
  .notfall-eintrag__felder {
    grid-template-columns: 1fr;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .event {
    flex-direction: column;
  }
  .event__date {
    flex-direction: row;
    gap: 0.6rem;
    flex: none;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    justify-content: flex-start;
    padding: 0.75rem 1.25rem;
  }
  .event__day {
    font-size: 1.5rem;
  }
  .event__body {
    padding: 1.25rem;
  }
}
