@font-face {
  font-family: "CandaraCustom";
  src: url("assets/fonts/candara/Candara.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "CandaraCustom";
  src: url("assets/fonts/candara/Candarab.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

:root {
  --nav-active: rgb(37, 79, 105);
  --nav-idle: rgb(181, 220, 185);
  --nav-hover: rgb(217, 236, 213);
  --nav-border: rgba(110, 148, 128, 0.35);
  --frame-blue: rgb(47, 91, 118);
  --frame-shadow: rgba(25, 44, 58, 0.36);
  --surface: rgba(255, 255, 255, 0.57);
  --surface-edge: rgba(255, 255, 255, 0.62);
  --title-shadow: rgba(21, 27, 31, 0.55);
  --text: rgb(33, 36, 39);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "CandaraCustom", Candara, "Segoe UI", sans-serif;
  color: var(--text);
  background-color: #8ea9bf;
  background-image: url("assets/images/hero-bg.jpg");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-shell {
  min-height: 100vh;
  padding: 2.1rem 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
}

.hero-header {
  display: flex;
  justify-content: center;
  margin-top: 0.15rem;
}

.hero-header h1 {
  margin: 0;
  font-family: "CandaraCustom", Candara, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: clamp(2.3rem, 3vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0;
  color: #fff;
  text-align: center;
  text-shadow:
    0 2px 0 rgba(255, 255, 255, 0.16),
    0 5px 14px var(--title-shadow);
}

.main-nav {
  width: min(1280px, calc(100vw - 8rem));
  margin: 2.2rem auto 0;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 1fr);
  border: 1px solid var(--nav-border);
  background: rgba(200, 226, 197, 0.16);
  box-shadow: 0 6px 18px rgba(20, 52, 72, 0.12);
}

.main-nav a {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0.5rem;
  background: var(--nav-idle);
  border-right: 1px solid var(--nav-border);
  color: #000;
  text-decoration: none;
  font-family: Calibri, "Segoe UI", Arial, sans-serif;
  font-size: clamp(0.9rem, 0.8vw, 1.05rem);
  white-space: nowrap;
  transition: background-color 140ms ease, color 140ms ease;
}

.main-nav a:last-child {
  border-right: 0;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: var(--nav-hover);
  color: var(--nav-active);
  outline: none;
}

.main-nav a.is-active {
  background: var(--nav-active);
  color: #fff;
  font-weight: 700;
}

.ticker-bar {
  width: min(1280px, calc(100vw - 8rem));
  margin: 0.52rem auto 0;
  overflow: hidden;
}

.ticker-track {
  width: 100%;
  overflow: hidden;
}

.ticker-loop {
  display: flex;
  width: max-content;
  white-space: nowrap;
  will-change: transform;
  animation: ticker-slide 34s linear infinite;
}

.ticker-text {
  flex: 0 0 auto;
  margin: 0;
  padding: 0 0 0 2.5rem;
  color: #c91010;
  font-family: Calibri, "Segoe UI", Arial, sans-serif;
  font-size: clamp(3.15rem, 3.06vw, 4.05rem);
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.35);
}

.ticker-separator {
  padding: 0 1.4rem;
}

@keyframes ticker-slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.hero-content {
  width: min(1680px, 100%);
  margin: 4rem auto 0;
  display: grid;
  grid-template-columns: minmax(250px, 430px) minmax(540px, 1fr);
  align-items: start;
  gap: 3rem;
}

.ticker-bar + .hero-content {
  margin-top: 1.9rem;
}

.logo-panel {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-width: 0;
}

.logo-stage {
  width: min(100%, 36rem);
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-stop-logo {
  width: min(100%, 33rem);
  max-width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 14px 22px rgba(63, 25, 25, 0.18));
}

.info-panel {
  display: flex;
}

.info-frame {
  width: 100%;
  padding: 1.35rem;
  background: rgba(44, 85, 109, 0.93);
  border: 1px solid rgba(26, 52, 69, 0.55);
  box-shadow:
    0 12px 28px rgba(13, 32, 44, 0.28),
    inset 0 0 0 1px rgba(106, 146, 169, 0.2);
}

.info-surface {
  min-height: 27.2rem;
  padding: 1.7rem 3.5rem 1.8rem;
  background:
    linear-gradient(rgba(255, 255, 255, 0.57), rgba(255, 255, 255, 0.57)),
    url("assets/images/hero-bg.jpg") center top / cover no-repeat;
  border: 2px solid rgba(220, 233, 240, 0.75);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.35),
    inset 0 10px 24px rgba(115, 145, 162, 0.12);
}

.info-surface h2 {
  margin: 0 0 1.2rem;
  font-size: clamp(1.22rem, 1.18vw, 1.75rem);
  font-weight: 700;
  text-align: center;
  line-height: 1.15;
}

.info-surface p {
  margin: 0 0 0.95rem;
  font-size: clamp(0.96rem, 0.82vw, 1.2rem);
  line-height: 1.42;
  text-align: justify;
}

.info-surface .footnote {
  margin-top: 1.1rem;
  font-size: clamp(0.74rem, 0.62vw, 0.86rem);
  text-align: right;
}

.subpage-main {
  width: min(1280px, 100%);
  margin: 3.2rem auto 0;
}

.subpage-panel {
  padding: 1.25rem;
  background: rgba(44, 85, 109, 0.93);
  border: 1px solid rgba(26, 52, 69, 0.55);
  box-shadow:
    0 12px 28px rgba(13, 32, 44, 0.28),
    inset 0 0 0 1px rgba(106, 146, 169, 0.2);
}

.subpage-surface {
  padding: 2.2rem 2.5rem 2.7rem;
  background: linear-gradient(rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.72));
  border: 2px solid rgba(220, 233, 240, 0.75);
}

.subpage-surface h2 {
  margin: 0 0 1.2rem;
  font-size: clamp(2rem, 2vw, 2.8rem);
  line-height: 1.1;
}

.subpage-surface p,
.subpage-surface li {
  font-size: clamp(1.15rem, 1.1vw, 1.4rem);
  line-height: 1.55;
}

.subpage-surface ul {
  margin: 1rem 0 0;
  padding-left: 1.35rem;
}

.banner-page-shell {
  padding-top: 1.3rem;
}

.banner-hero-header {
  display: flex;
  justify-content: center;
  margin-top: 0.1rem;
}

.banner-hero-header img {
  width: min(100%, 58rem);
  height: auto;
  display: block;
}

.banner-main {
  width: min(1450px, 100%);
  margin: 1.85rem auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.05rem;
}

.banner-topic-image {
  width: min(100%, 46rem);
  height: auto;
  display: block;
}

.banner-showcase-image {
  width: min(100%, 66rem);
  height: auto;
  display: block;
}

.banner-footer-image {
  width: min(100%, 54rem);
  height: auto;
  display: block;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 1.6rem;
}

.legal-card {
  padding: 1.25rem 1.35rem 1.4rem;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(47, 91, 118, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.legal-card h3 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.18rem, 1.1vw, 1.55rem);
  line-height: 1.15;
  color: rgb(37, 79, 105);
}

.legal-card p,
.legal-card li {
  margin: 0;
  font-size: clamp(1rem, 0.95vw, 1.18rem);
  line-height: 1.5;
}

.legal-card p + p,
.legal-card p + ul,
.legal-card ul + p {
  margin-top: 0.7rem;
}

.legal-card ul {
  margin: 0.6rem 0 0;
  padding-left: 1.2rem;
}

.legal-note {
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  border-left: 4px solid rgba(47, 91, 118, 0.55);
  background: rgba(255, 255, 255, 0.45);
}

.legal-note p {
  margin: 0;
  font-size: clamp(0.98rem, 0.92vw, 1.14rem);
  line-height: 1.5;
}

.member-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(18rem, 0.95fr);
  gap: 1.4rem;
  margin-top: 1.6rem;
  align-items: start;
}

.member-form-card,
.member-side-card {
  padding: 1.3rem 1.35rem 1.45rem;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(47, 91, 118, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.member-form-card h3,
.member-side-card h3 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.2rem, 1.12vw, 1.6rem);
  line-height: 1.15;
  color: rgb(37, 79, 105);
}

.member-form-card p,
.member-side-card p,
.member-side-card li,
.member-form-note,
.member-consent {
  font-size: clamp(0.98rem, 0.92vw, 1.14rem);
  line-height: 1.5;
}

.member-form-card p,
.member-side-card p {
  margin: 0 0 0.9rem;
}

.member-form {
  margin-top: 1rem;
}

.member-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.05rem;
}

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

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

.form-field label {
  font-size: 0.98rem;
  font-weight: 700;
  color: rgb(37, 79, 105);
}

.form-group-label {
  font-size: 0.98rem;
  font-weight: 700;
  color: rgb(37, 79, 105);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(47, 91, 118, 0.24);
  background: rgba(255, 255, 255, 0.92);
  color: rgb(33, 36, 39);
  font: inherit;
}

.form-field textarea {
  min-height: 7rem;
  resize: vertical;
}

.member-form-note {
  margin: 1rem 0 0;
  padding: 0.9rem 1rem;
  border-left: 4px solid rgba(47, 91, 118, 0.55);
  background: rgba(255, 255, 255, 0.46);
}

.member-consent {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-top: 1rem;
}

.member-consent input {
  margin-top: 0.2rem;
  transform: scale(1.05);
}

.member-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.option-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0.7rem 0;
  border: 1px solid rgba(47, 91, 118, 0.18);
  background: rgba(255, 255, 255, 0.52);
}

.option-card {
  display: grid;
  grid-template-columns: 1.8rem minmax(0, 1fr);
  gap: 0.95rem;
  align-items: start;
  padding: 0.16rem 1rem;
  background: transparent;
}

.option-card input {
  margin: 0.18rem 0 0;
  justify-self: start;
  transform: scale(1.05);
}

.option-card span {
  font-size: clamp(0.98rem, 0.92vw, 1.14rem);
  line-height: 1.5;
  font-weight: 400;
}

.action-button,
.paypal-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.78rem 1.2rem;
  border: 0;
  text-decoration: none;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.action-button {
  background: rgb(37, 79, 105);
  color: #fff;
}

.action-button.secondary {
  background: rgba(37, 79, 105, 0.12);
  color: rgb(37, 79, 105);
  border: 1px solid rgba(37, 79, 105, 0.22);
}

.paypal-button {
  background: #ffc439;
  color: #111;
}

.paypal-button.is-disabled {
  opacity: 0.7;
  cursor: default;
  pointer-events: none;
}

.member-side-card + .member-side-card {
  margin-top: 1.2rem;
}

.member-side-card ul {
  margin: 0.7rem 0 0;
  padding-left: 1.15rem;
}

.member-compact {
  margin: 0;
}

.content-stack {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  margin-top: 1.4rem;
}

.text-card {
  padding: 1.25rem 1.35rem 1.45rem;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(47, 91, 118, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.text-card h3 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.2rem, 1.12vw, 1.6rem);
  line-height: 1.15;
  color: rgb(37, 79, 105);
}

.text-card p,
.text-card li {
  margin: 0;
  font-size: clamp(1rem, 0.95vw, 1.18rem);
  line-height: 1.55;
}

.text-card p + p,
.text-card p + ul,
.text-card ul + p {
  margin-top: 0.75rem;
}

.text-card ul {
  margin: 0.75rem 0 0;
  padding-left: 1.2rem;
}

.event-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 27rem) minmax(0, 1fr);
  gap: 1.4rem;
  margin-top: 1.5rem;
  align-items: start;
}

.event-image-card,
.event-copy-card {
  padding: 1.15rem;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(47, 91, 118, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.event-image {
  width: 100%;
  height: auto;
  display: block;
}

.event-copy-card h3 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.24rem, 1.16vw, 1.7rem);
  line-height: 1.15;
  color: rgb(37, 79, 105);
}

.event-copy-card p {
  margin: 0;
  font-size: clamp(1rem, 0.95vw, 1.18rem);
  line-height: 1.55;
}

.event-copy-card p + p {
  margin-top: 0.8rem;
}

.event-highlight {
  font-weight: 700;
  color: rgb(37, 79, 105);
}

.news-sheet {
  padding: 0.2rem 0.35rem 0;
  color: #000;
}

.news-sheet p {
  margin: 0 0 1.2rem;
  font-family: Calibri, "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.12rem, 1.02vw, 1.38rem);
  line-height: 1.38;
  text-align: left;
}

.news-alert,
.news-claim {
  color: rgb(192, 0, 0);
  font-weight: 700;
  font-variant: small-caps;
}

.news-alert {
  margin-bottom: 2rem;
}

.news-claim {
  margin-top: 0.45rem;
  font-size: clamp(1.45rem, 1.35vw, 1.9rem);
}

.news-red {
  color: rgb(192, 0, 0);
  font-weight: 700;
}

.news-blue {
  color: rgb(73, 135, 214);
  font-weight: 700;
}

.news-link-list {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin: -0.2rem 0 2rem;
}

.news-link-list a {
  color: #000;
  font-family: Calibri, "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.02rem, 0.92vw, 1.24rem);
  line-height: 1.22;
  text-decoration: underline;
  overflow-wrap: anywhere;
}

.news-link-list a:hover,
.news-link-list a:focus-visible {
  text-decoration: underline;
}

.news-pdf-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.news-pdf-link {
  display: grid;
  grid-template-columns: 2.8rem 1fr;
  align-items: center;
  gap: 0.95rem;
  color: #000;
  text-decoration: none;
}

.news-pdf-link img {
  width: 2.35rem;
  height: auto;
  display: block;
}

.news-pdf-link span {
  color: rgb(192, 0, 0);
  font-family: Calibri, "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.28rem, 1.14vw, 1.7rem);
  font-weight: 700;
  font-variant: small-caps;
  line-height: 1.12;
}

.news-pdf-link:hover span,
.news-pdf-link:focus-visible span {
  text-decoration: underline;
}

.member-payment-group {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.payment-option {
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(47, 91, 118, 0.18);
}

.payment-option h4 {
  margin: 0 0 0.35rem;
  font-size: 1.02rem;
  line-height: 1.2;
  color: rgb(37, 79, 105);
}

.payment-option p {
  margin: 0;
}

.payment-image-link,
.payment-image-submit {
  display: inline-flex;
  padding: 0;
  border: 0;
  background: transparent;
}

.payment-image-submit {
  cursor: pointer;
}

.payment-image-button {
  width: min(100%, 15rem);
  height: auto;
  display: block;
}

.flyer-body {
  background-color: #dfe8c2;
  background-image: url("assets/images/flyer/flyer-bg.jpg");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

.flyer-irrtuemer4-body {
  background-image: url("assets/images/flyer/irrtuemer4-bg.png");
}

.flyer-page-shell {
  padding-top: 1.9rem;
}

.flyer-hero-header {
  margin-top: 0;
}

.flyer-hero-header h1 {
  color: rgb(37, 79, 105);
  text-shadow:
    0 2px 0 rgba(255, 255, 255, 0.14),
    0 4px 10px rgba(23, 34, 43, 0.42);
}

.flyer-overview {
  width: min(1380px, 100%);
  margin: 4.4rem auto 0;
  display: flex;
  justify-content: center;
}

.flyer-collection {
  width: min(1080px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr);
  align-items: start;
  justify-content: center;
  gap: 4.8rem;
}

.flyer-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
  text-decoration: none;
  color: rgb(37, 79, 105);
}

.flyer-card-visual {
  display: inline-block;
  filter: drop-shadow(0 12px 18px rgba(30, 34, 29, 0.16)) drop-shadow(0 22px 26px rgba(30, 34, 29, 0.24));
}

.flyer-card-featured {
  padding-top: 0.4rem;
}

.flyer-card-secondary {
  padding-top: 0.6rem;
}

.flyer-card-image {
  width: auto;
  max-width: 100%;
  height: clamp(13rem, 17vw, 17rem);
  display: block;
  box-shadow: none;
}

.flyer-card-featured .flyer-card-image {
  clip-path: inset(5.5% 6.2% 5.5% 6.2%);
}

.flyer-card-secondary .flyer-card-image {
  clip-path: inset(6.5% 6.5% 6.5% 6.5%);
}

.flyer-card-title {
  margin-top: 0.8rem;
  font-size: clamp(1.7rem, 1.85vw, 2.3rem);
  line-height: 1.05;
  font-variant: small-caps;
  letter-spacing: 0;
  text-align: center;
}

.flyer-irrtuemer-main {
  width: min(1660px, 100%);
  margin: 2.6rem auto 0;
}

.flyer-irrtuemer-stage {
  position: relative;
  padding: 0 6rem;
}

.flyer-irrtuemer-layout {
  width: min(1320px, 100%);
  margin: 0 auto;
}

.flyer-irrtuemer-layout-one {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 48rem));
  grid-template-areas:
    "front deadline"
    ". back";
  gap: 1.8rem 2.8rem;
  justify-content: center;
  align-items: start;
}

.flyer-irrtuemer-poster {
  width: 100%;
  height: auto;
  display: block;
}

.flyer-irrtuemer-poster-primary {
  grid-area: front;
  width: 100%;
  justify-self: end;
}

.flyer-irrtuemer-poster-secondary {
  grid-area: back;
  width: 100%;
  justify-self: start;
  position: relative;
  left: -2.6rem;
  top: -1.4rem;
}

.flyer-irrtuemer-deadline {
  grid-area: deadline;
  margin: 0;
  color: rgb(157, 34, 34);
  font-size: clamp(2.4rem, 2.4vw, 3.6rem);
  font-weight: 700;
  font-variant: small-caps;
  line-height: 1.1;
  letter-spacing: 0;
  text-align: center;
  justify-self: center;
  align-self: center;
  animation: flyer-deadline-blink 1.3s steps(1, end) infinite;
}

@keyframes flyer-deadline-blink {
  0%,
  50% {
    opacity: 1;
  }

  50.01%,
  100% {
    opacity: 0.35;
  }
}

.flyer-irrtuemer-layout-two {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.2rem;
}

.flyer-irrtuemer-layout-three {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.2rem;
}

.flyer-irrtuemer-layout-four {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.1rem;
}

.flyer-irrtuemer-top {
  width: min(100%, 1260px);
  display: grid;
  grid-template-columns: minmax(0, 900px) minmax(12rem, 1fr);
  align-items: start;
  justify-content: center;
  gap: 2.6rem;
}

.flyer-irrtuemer-poster-wide {
  width: min(100%, 900px);
}

.flyer-irrtuemer-links {
  width: min(100%, 1080px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding-left: clamp(10rem, 15vw, 18.5rem);
  color: rgb(37, 79, 105);
}

.flyer-irrtuemer-links-title {
  margin: 0;
  font-size: clamp(1.6rem, 1.6vw, 2.2rem);
  font-weight: 700;
  font-variant: small-caps;
  line-height: 1.1;
}

.flyer-irrtuemer-link {
  color: rgb(37, 79, 105);
  text-decoration: none;
  font-size: clamp(1.2rem, 1.32vw, 2rem);
  font-weight: 700;
  font-variant: small-caps;
  line-height: 1.18;
}

.flyer-irrtuemer-link:hover,
.flyer-irrtuemer-link:focus-visible {
  text-decoration: underline;
}

.flyer-irrtuemer-link-pdf {
  display: grid;
  grid-template-columns: 2.6rem 1fr;
  align-items: center;
  gap: 1rem;
}

.flyer-irrtuemer-link-pdf img {
  width: 2.2rem;
  height: auto;
  display: block;
}

.flyer-irrtuemer-link-pdf-primary {
  width: min(100%, 1080px);
}

.flyer-irrtuemer-copy {
  width: min(100%, 1160px);
  color: rgb(52, 52, 52);
}

.flyer-irrtuemer-copy-four {
  width: min(100%, 1240px);
}

.flyer-irrtuemer-copy-intro,
.flyer-irrtuemer-copy-highlight,
.flyer-irrtuemer-copy,
.flyer-irrtuemer-copy-closing {
  margin: 0;
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: 0;
}

.flyer-irrtuemer-copy-intro {
  font-size: clamp(1.25rem, 1.15vw, 1.7rem);
}

.flyer-irrtuemer-copy-highlight,
.flyer-irrtuemer-copy {
  margin-top: 0.9rem;
  font-size: clamp(1.1rem, 1vw, 1.48rem);
}

.flyer-irrtuemer-copy-closing {
  margin-top: 1.2rem;
  font-size: clamp(1.28rem, 1.18vw, 1.85rem);
  color: rgb(146, 21, 21);
}

.flyer-irrtuemer-copy-red {
  color: rgb(146, 21, 21);
}

.flyer-irrtuemer-copy-blue {
  color: rgb(34, 94, 149);
}

.flyer-irrtuemer-uhingen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: end;
  gap: 0.35rem;
  text-decoration: none;
}

.flyer-irrtuemer-uhingen-button {
  width: min(100%, 15.8rem);
  height: auto;
  display: block;
}

.flyer-irrtuemer-uhingen-arrow {
  color: rgb(146, 21, 21);
  font-size: 2.7rem;
  line-height: 1;
}

.flyer-irrtuemer-uhingen-note {
  width: min(100%, 10.5rem);
  height: auto;
  display: block;
  margin-top: 0.2rem;
}

.flyer-irrtuemer-uhingen:hover .flyer-irrtuemer-uhingen-button,
.flyer-irrtuemer-uhingen:focus-visible .flyer-irrtuemer-uhingen-button,
.flyer-irrtuemer-uhingen:hover .flyer-irrtuemer-uhingen-note,
.flyer-irrtuemer-uhingen:focus-visible .flyer-irrtuemer-uhingen-note {
  outline: 2px solid rgb(37, 79, 105);
  outline-offset: 3px;
}

.flyer-detail-main {
  width: min(1620px, 100%);
  margin: 3rem auto 0;
}

.flyer-detail-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 32rem;
  padding: 0 6rem;
}

.flyer-detail-visual {
  width: min(100%, 1140px);
  height: auto;
  display: block;
  box-shadow: 0 18px 28px rgba(29, 33, 31, 0.3);
}

.schlaflos1-visual {
  display: inline-block;
  filter: drop-shadow(0 12px 18px rgba(29, 33, 31, 0.16)) drop-shadow(0 22px 26px rgba(29, 33, 31, 0.24));
}

.schlaflos1-detail-visual {
  box-shadow: none;
  clip-path: inset(1.7% 1.7% 1.7% 1.7%);
}

.flyer-nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3.8rem;
  height: 3.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.flyer-nav-button img {
  width: 100%;
  height: auto;
  display: block;
}

.flyer-nav-button.forward {
  right: 0.8rem;
}

.flyer-nav-button.back {
  left: 0.8rem;
}

.flyer-placeholder {
  width: min(100%, 1140px);
  min-height: 34rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2.4rem;
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(37, 79, 105, 0.3);
  box-shadow: 0 18px 28px rgba(29, 33, 31, 0.2);
  color: rgb(37, 79, 105);
  text-align: center;
}

.flyer-placeholder h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 2.2vw, 3rem);
  line-height: 1.05;
  font-variant: small-caps;
}

.flyer-placeholder p {
  margin: 0;
  max-width: 42rem;
  font-size: clamp(1.05rem, 1.15vw, 1.45rem);
  line-height: 1.45;
}

.flyer-resource-main {
  width: min(1380px, 100%);
  margin: 1.8rem auto 0;
}

.flyer-resource-grid {
  display: grid;
  grid-template-columns: minmax(16rem, 20rem) minmax(28rem, 1fr);
  gap: 1.9rem 2.2rem;
  align-items: start;
}

.flyer-poster-stack {
  position: relative;
  padding-left: 3.9rem;
}

.flyer-poster-back {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  display: inline-flex;
}

.flyer-poster-back img {
  width: 100%;
  height: auto;
  display: block;
}

.flyer-poster-image {
  width: 100%;
  display: block;
  box-shadow: 0 14px 20px rgba(28, 32, 29, 0.24);
}

.schlaflos2-poster-visual {
  display: block;
  filter: drop-shadow(0 10px 16px rgba(28, 32, 29, 0.16)) drop-shadow(0 18px 24px rgba(28, 32, 29, 0.22));
}

.schlaflos2-poster-image {
  box-shadow: none;
  clip-path: inset(1.6% 1.6% 1.6% 1.6%);
}

.flyer-resource-list {
  display: flex;
  flex-direction: column;
  gap: 0.52rem;
}

.flyer-resource-item {
  display: grid;
  grid-template-columns: 2rem 1fr;
  align-items: center;
  gap: 0.78rem;
  color: rgb(37, 79, 105);
  text-decoration: none;
}

.flyer-resource-item:hover .flyer-resource-text,
.flyer-resource-item:focus-visible .flyer-resource-text {
  text-decoration: underline;
}

.flyer-resource-item.is-disabled {
  opacity: 0.65;
}

.flyer-resource-icon {
  width: 1.7rem;
  height: auto;
  display: block;
}

.flyer-resource-text {
  font-size: clamp(1.02rem, 1.06vw, 1.45rem);
  font-weight: 700;
  line-height: 1.18;
  font-variant: small-caps;
}

.flyer-landscape-section {
  grid-column: 1 / -1;
  margin-top: 0.4rem;
}

.flyer-landscape-title {
  width: min(100%, 38rem);
  height: auto;
  display: block;
  margin: 0 auto 1rem;
}

.flyer-landscape-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.8rem;
}

.flyer-landscape-card {
  width: 70%;
  display: block;
  justify-self: center;
}

.flyer-landscape-thumb {
  width: 100%;
  height: auto;
  display: block;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(18, 23, 28, 0.7);
  z-index: 50;
}

.lightbox:target {
  display: flex;
}

.lightbox-close {
  position: absolute;
  inset: 0;
}

.lightbox-visual {
  position: relative;
  z-index: 1;
  max-width: min(1200px, calc(100vw - 5rem));
  max-height: calc(100vh - 5rem);
  width: auto;
  height: auto;
  box-shadow: 0 20px 32px rgba(0, 0, 0, 0.45);
}

@media (max-width: 900px) {
  .main-nav {
    width: min(100%, calc(100vw - 2rem));
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-flow: row;
  }

  .ticker-bar {
    width: min(100%, calc(100vw - 2rem));
  }

  .main-nav a {
    min-height: 46px;
    white-space: normal;
    text-align: center;
    line-height: 1.15;
  }

  .hero-content {
    margin-top: 2.2rem;
    gap: 1.5rem;
  }

  .ticker-bar + .hero-content {
    margin-top: 1.35rem;
  }

  .subpage-surface {
    padding: 1.5rem 1.4rem 1.8rem;
  }

  .banner-main {
    margin-top: 1.7rem;
    gap: 0.9rem;
  }

  .banner-topic-image {
    width: min(100%, 40rem);
  }

  .banner-showcase-image {
    width: min(100%, 58rem);
  }

  .banner-footer-image {
    width: min(100%, 48rem);
  }

  .content-stack,
  .member-layout,
  .event-layout {
    gap: 1rem;
  }

  .text-card a,
  .legal-card a,
  .event-copy-card a,
  .news-sheet a {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 1440px) {
  .page-shell {
    padding-inline: 1.25rem;
  }

  .banner-page-shell {
    padding-top: 0.9rem;
  }

  .banner-hero-header img {
    width: min(100%, 46rem);
  }

  .banner-main {
    margin-top: 1.15rem;
    gap: 0.8rem;
  }

  .banner-topic-image {
    width: min(100%, 34rem);
  }

  .banner-showcase-image {
    width: min(100%, 50rem);
  }

  .banner-footer-image {
    width: min(100%, 42rem);
  }

  .main-nav {
    width: min(1220px, calc(100vw - 3rem));
  }

  .ticker-bar {
    width: min(1220px, calc(100vw - 3rem));
  }

  .hero-content {
    gap: 2rem;
    grid-template-columns: minmax(230px, 370px) minmax(460px, 1fr);
  }

  .info-surface {
    padding: 1.55rem 2.5rem 1.7rem;
    min-height: 23.8rem;
  }

  .flyer-overview {
    margin-top: 3.4rem;
  }

  .flyer-detail-main {
    margin-top: 2.4rem;
  }

  .flyer-detail-stage {
    padding-inline: 4.8rem;
  }

  .flyer-resource-main {
    margin-top: 1.5rem;
  }

  .member-layout {
    grid-template-columns: 1fr;
  }

  .event-layout {
    grid-template-columns: 1fr;
  }

  .member-side-card + .member-side-card {
    margin-top: 0;
  }
}

@media (max-width: 1120px) {
  .page-shell {
    padding-top: 1.2rem;
  }

  .main-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-flow: row;
  }

  .main-nav a {
    border-bottom: 1px solid var(--nav-border);
  }

  .hero-content {
    margin-top: 2rem;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .ticker-bar + .hero-content {
    margin-top: 1.2rem;
  }

  .logo-panel {
    max-width: 28rem;
  }

  .logo-stage {
    width: min(100%, 28rem);
  }

  .info-panel {
    width: min(100%, 920px);
  }

  .info-surface {
    min-height: auto;
  }

  .flyer-overview {
    margin-top: 2.4rem;
  }

  .flyer-collection {
    width: min(100%, 42rem);
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .flyer-irrtuemer-layout-one {
    grid-template-columns: 1fr;
    grid-template-areas:
      "front"
      "deadline"
      "back";
    gap: 1.8rem;
  }

  .flyer-irrtuemer-poster-secondary {
    width: min(100%, 32rem);
    justify-self: center;
    left: 0;
    top: 0;
  }

  .flyer-irrtuemer-top {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .flyer-irrtuemer-uhingen {
    justify-self: center;
  }

  .flyer-detail-stage {
    min-height: auto;
    padding: 0 3.8rem;
  }

  .legal-grid {
    grid-template-columns: 1fr;
  }

  .member-form-grid {
    grid-template-columns: 1fr;
  }

  .flyer-resource-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .flyer-poster-stack {
    max-width: 22rem;
    margin: 0 auto;
  }

  .flyer-landscape-grid {
    grid-template-columns: 1fr;
  }

  .flyer-landscape-card {
    width: min(100%, 32rem);
  }
}

@media (max-width: 720px) {
  body {
    background-position: center center;
  }

  .page-shell {
    padding: 0.9rem 0.75rem 1rem;
  }

  .ticker-bar {
    width: 100%;
    margin-top: 0.38rem;
  }

  .ticker-text {
    font-size: 2.94rem;
  }

  .banner-page-shell {
    padding-top: 0.65rem;
  }

  .banner-hero-header img {
    width: min(100%, 30rem);
  }

  .banner-main {
    margin-top: 0.9rem;
    gap: 0.7rem;
  }

  .banner-topic-image {
    width: min(100%, 26rem);
  }

  .banner-showcase-image {
    width: min(100%, 38rem);
  }

  .banner-footer-image {
    width: min(100%, 30rem);
  }

  .hero-header h1 {
    font-size: clamp(1.9rem, 9vw, 2.7rem);
  }

  .main-nav {
    width: 100%;
    margin-top: 1.25rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .main-nav a {
    min-height: 42px;
    font-size: 0.95rem;
    white-space: normal;
    text-align: center;
  }

  .main-nav a br {
    display: none;
  }

  .hero-content {
    gap: 1.2rem;
  }

  .ticker-bar + .hero-content {
    margin-top: 0.95rem;
  }

  .hero-header {
    padding-inline: 0.35rem;
  }

  .subpage-main {
    margin-top: 1.4rem;
  }

  .subpage-panel {
    padding: 0.7rem;
  }

  .subpage-surface {
    padding: 1.2rem 1rem 1.4rem;
    border-width: 1px;
  }

  .subpage-surface h2 {
    font-size: clamp(1.4rem, 7vw, 1.9rem);
  }

  .subpage-surface p,
  .subpage-surface li {
    font-size: 1rem;
  }

  .subpage-surface ul {
    padding-left: 1.05rem;
  }

  .logo-panel {
    max-width: 19rem;
  }

  .logo-stage {
    width: min(100%, 19rem);
  }

  .info-frame {
    padding: 0.7rem;
  }

  .info-surface {
    padding: 1.3rem 1.2rem 1.5rem;
    border-width: 1px;
    background-position: center center;
  }

  .info-surface h2 {
    margin-bottom: 1rem;
    font-size: clamp(1.35rem, 7vw, 1.8rem);
  }

  .info-surface p {
    font-size: clamp(1rem, 4.2vw, 1.12rem);
    line-height: 1.5;
    text-align: left;
  }

  .info-surface .footnote {
    text-align: left;
    font-size: 0.95rem;
  }

  .flyer-page-shell {
    padding-top: 0.9rem;
  }

  .flyer-overview {
    margin-top: 1.8rem;
  }

  .flyer-card {
    width: 100%;
  }

  .flyer-card-image {
    height: clamp(10.5rem, 36vw, 14rem);
  }

  .flyer-card-title {
    font-size: 1.45rem;
  }

  .flyer-irrtuemer-main {
    margin-top: 1.4rem;
  }

  .flyer-irrtuemer-stage {
    padding: 0 2.9rem;
  }

  .flyer-irrtuemer-layout-two {
    gap: 1.35rem;
  }

  .flyer-irrtuemer-links {
    gap: 0.85rem;
    padding-left: 0;
  }

  .flyer-irrtuemer-link {
    font-size: 1.05rem;
  }

  .flyer-irrtuemer-link-pdf {
    grid-template-columns: 2rem 1fr;
    gap: 0.75rem;
  }

  .flyer-irrtuemer-link-pdf img {
    width: 1.7rem;
  }

  .flyer-detail-main {
    margin-top: 1.4rem;
  }

  .flyer-detail-stage {
    padding: 0 2.9rem;
  }

  .flyer-nav-button {
    width: 2.9rem;
    height: 2.9rem;
  }

  .flyer-nav-button.forward {
    right: 0;
  }

  .flyer-nav-button.back {
    left: 0;
  }

  .flyer-placeholder {
    min-height: 18rem;
    padding: 1.5rem 1rem;
  }

  .flyer-placeholder h2 {
    font-size: clamp(1.4rem, 7vw, 2rem);
  }

  .flyer-placeholder p {
    font-size: 1rem;
  }

  .flyer-resource-main {
    margin-top: 1rem;
  }

  .flyer-poster-stack {
    padding-left: 0;
  }

  .flyer-poster-back {
    position: static;
    transform: none;
    margin: 0 0 0.75rem;
    width: 2.8rem;
    height: 2.8rem;
  }

  .flyer-resource-text {
    font-size: 0.98rem;
  }

  .flyer-landscape-grid {
    gap: 1.2rem;
  }

  .flyer-landscape-card {
    width: 100%;
  }

  .lightbox {
    padding: 1rem;
  }

  .lightbox-visual {
    max-width: calc(100vw - 2rem);
    max-height: calc(100vh - 2rem);
  }

  .member-form-card,
  .member-side-card {
    padding: 1rem;
  }

  .form-field input,
  .form-field select,
  .form-field textarea,
  .action-button,
  .paypal-button {
    min-height: 48px;
  }

  .member-consent {
    align-items: flex-start;
  }

  .member-actions {
    flex-direction: column;
  }

  .action-button,
  .paypal-button {
    width: 100%;
  }

  .text-card,
  .event-image-card,
  .event-copy-card {
    padding: 1rem;
  }

  .text-card p,
  .text-card li,
  .event-copy-card p,
  .member-form-card p,
  .member-side-card p,
  .member-side-card li,
  .legal-card p,
  .legal-card li {
    line-height: 1.45;
  }
}

@media (max-width: 520px) {
  .page-shell {
    padding: 0.75rem 0.55rem 0.9rem;
  }

  .ticker-text {
    font-size: 2.7rem;
  }

  .banner-hero-header img {
    width: 100%;
  }

  .banner-main {
    gap: 0.5rem;
  }

  .hero-header h1 {
    font-size: clamp(1.55rem, 8vw, 2.1rem);
    line-height: 1.08;
  }

  .main-nav {
    margin-top: 1rem;
  }

  .main-nav a {
    min-height: 44px;
    padding: 0.55rem 0.35rem;
    font-size: 0.88rem;
  }

  .subpage-panel,
  .info-frame {
    padding: 0.55rem;
  }

  .subpage-surface,
  .info-surface,
  .text-card,
  .event-image-card,
  .event-copy-card,
  .member-form-card,
  .member-side-card {
    padding: 0.9rem;
  }

  .subpage-surface h2,
  .info-surface h2 {
    margin-bottom: 0.8rem;
  }

  .logo-panel {
    max-width: 15.5rem;
  }

  .logo-stage {
    width: min(100%, 15.5rem);
  }

  .flyer-resource-item {
    grid-template-columns: 1.6rem 1fr;
    gap: 0.55rem;
  }

  .flyer-resource-icon {
    width: 1.35rem;
  }

  .flyer-resource-text {
    font-size: 0.92rem;
    line-height: 1.16;
  }

  .flyer-poster-image,
  .flyer-landscape-thumb,
  .flyer-irrtuemer-poster,
  .flyer-card-image,
  .event-image {
    border-radius: 0;
  }
}
