/* Lato – lokal gehostet (SIL Open Font License), siehe /assets/fonts/lato/OFL.txt */

/* latin-ext */
@font-face {
  font-family: Lato;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/lato/lato-400-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: Lato;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/lato/lato-400-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: Lato;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/lato/lato-700-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: Lato;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/lato/lato-700-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: Lato;
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("/assets/fonts/lato/lato-900-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: Lato;
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("/assets/fonts/lato/lato-900-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --color-bg: #eef4f5;
  --color-surface: #ffffff;
  --color-surface-alt: #f5f8f8;
  --color-text: #1a2945;
  --color-muted: #61758e;
  --color-brand: #005262;
  --color-brand-2: #5bc0de;
  --color-line: #d7e0e3;
  --color-success: #5cb85c;
  --shadow-soft: 0 18px 40px rgba(14, 38, 48, 0.08);
  --radius-sm: 8px;
  --radius-md: 8px;
  --radius-lg: 8px;
  --container: 1280px;
  --site-header-offset: 88px;
}
* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  background: #1a2945;
}
body {
  margin: 0;
  font-family: Lato, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--color-text);
  background:
    radial-gradient(circle at top right, rgba(91,192,222,0.17), transparent 32%),
    linear-gradient(180deg, #f9fcfd 0%, #edf4f6 100%);
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 32px), var(--container)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: #1a2945;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-header::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 100vh;
  background: #1a2945;
  pointer-events: none;
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 88px;
}
.brand { justify-self: start; }
.brand img { width: 240px; height: auto; }
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-self: center;
}
.main-nav a {
  color: #fff;
  font-weight: 400;
  font-size: 1rem;
  white-space: nowrap;
  padding: 7px 12px;
  border-radius: 8px;
  border: 1.5px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.main-nav a.active,
.main-nav a:hover {
  color: #5bc0de;
  border-color: #5bc0de;
}
.show-on-mobile { display: none !important; }
.nav-icon-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-icon-link__icon {
  display: none;
  flex: 0 0 auto;
}
.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 6px;
}
.header-actions a:not(.nav-cta) {
  color: #fff;
  font-weight: 400;
  font-size: 1rem;
  white-space: nowrap;
  padding: 7px 12px;
  border-radius: 8px;
  border: 1.5px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.header-actions a:not(.nav-cta):hover {
  color: #5bc0de;
  border-color: #5bc0de;
}
.header-account {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.header-account__icon {
  display: none;
  flex: 0 0 auto;
}
.nav-cta {
  padding: 9px 16px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,.75);
  background: transparent;
  color: #fff !important;
  font-weight: 700 !important;
}
.nav-cta:hover {
  border-color: #5bc0de;
  color: #5bc0de !important;
  background: transparent;
}
.page-back {
  padding: 16px 0 0;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-brand);
}
.back-link:hover {
  color: var(--color-brand-2);
}
@media (max-width: 760px) {
  .page-back--list {
    display: none;
  }
  .section-head h1 {
    font-size: 1.55rem;
  }
  /* Ohne Eyebrow: Titel wie zuvor rechts (2. Grid-Spalte) */
  .section-head--top h1 {
    grid-column: 2;
    justify-self: end;
    text-align: right;
  }
}
.hero {
  padding: 28px 0 20px;
}
.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.7fr);
  gap: 18px;
  align-items: stretch;
}
.hero-track {
  position: relative; overflow: hidden; border-radius: 8px;
  height: min(64vh, 560px); min-height: 420px; background: #0f2434;
  box-shadow: var(--shadow-soft);
}
.hero-upcoming {
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: min(64vh, 560px);
  min-height: 420px;
  max-height: min(64vh, 560px);
  padding: 22px 20px 18px;
  background: #1a2945;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}
.hero-upcoming__head {
  margin-bottom: 14px;
}
.hero-upcoming__head--with-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.hero-upcoming__head--with-action .btn {
  flex: 0 0 auto;
}
.hero-upcoming__head h2 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}
.hero-upcoming__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  overflow: auto;
  min-height: 0;
  flex: 1 1 auto;
}
.hero-upcoming__foot {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
  flex: 0 0 auto;
}
.hero-upcoming__foot .inline-link {
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0.18);
}
.hero-upcoming__foot .inline-link:hover,
.hero-upcoming__foot .inline-link:focus-visible {
  border-color: #5bc0de;
  filter: none;
}
.hero-upcoming__list a {
  display: grid;
  gap: 8px;
  padding: 12px 14px;
  color: inherit;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  transition: border-color .2s ease, background .2s ease;
}
.hero-upcoming__list a:hover,
.hero-upcoming__list a:focus-visible {
  border-color: #5bc0de;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}
.hero-upcoming__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px 10px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
}
.hero-upcoming__city {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 8px;
  color: #fff;
  font-size: 0.72rem;
  line-height: 1.3;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hero-upcoming__date {
  margin-left: auto;
  text-align: right;
  flex: 1 1 auto;
  min-width: 0;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.85);
}
.hero-upcoming__title {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.hero-upcoming--light {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  height: auto;
  min-height: 0;
  max-height: none;
}
.hero-upcoming--light .hero-upcoming__head h2 {
  color: var(--color-text);
}
.hero-upcoming__title-note {
  font-weight: 400;
}
.hero-upcoming--light .hero-upcoming__list {
  gap: 12px;
}
.hero-upcoming--light .hero-upcoming__list > li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.hero-upcoming--light .hero-upcoming__list a.admin-event-bubble {
  display: flex;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid rgba(0, 82, 98, 0.09);
  box-shadow: none;
}
.hero-upcoming--light .hero-upcoming__list a.admin-event-bubble:hover,
.hero-upcoming--light .hero-upcoming__list a.admin-event-bubble:focus-visible {
  border-color: var(--color-brand);
  background: #fff;
  outline: none;
  box-shadow: none;
}
.hero-upcoming--light .hero-upcoming__list.admin-event-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 12px;
}
.hero-upcoming--light .hero-upcoming__list.admin-event-tiles > li {
  min-width: 0;
}
.hero-upcoming--light .hero-upcoming__list.admin-event-tiles a.admin-event-bubble {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 118px;
  padding: 14px;
  box-sizing: border-box;
  overflow: hidden;
}
.hero-upcoming--light .hero-upcoming__list.admin-event-tiles .admin-event-bubble__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
}
.hero-upcoming--light .hero-upcoming__list.admin-event-tiles .admin-event-bubble__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-size: 0.95rem;
  line-height: 1.35;
}
.hero-upcoming--light .hero-upcoming__list.admin-event-tiles .admin-event-bubble__meta {
  margin-top: auto;
  flex-wrap: wrap;
  gap: 4px 8px;
  font-size: 0.8rem;
  min-width: 0;
  max-width: 100%;
}
.hero-upcoming--light .hero-upcoming__list.admin-event-tiles .admin-event-bubble__place {
  flex: 0 1 auto;
  width: auto;
  max-width: 100%;
  min-width: 0;
}
.hero-upcoming--light .hero-upcoming__foot .inline-link {
  border-color: rgba(0, 82, 98, 0.18);
  color: var(--color-brand);
}
.hero-upcoming--light .hero-upcoming__foot .inline-link:hover,
.hero-upcoming--light .hero-upcoming__foot .inline-link:focus-visible {
  border-color: var(--color-brand);
}
.hero-slide {
  position: absolute; inset: 0;
  background-color: #fff;
  background-image: none;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-slide[hidden] { display: none !important; }
.hero-slide__img {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  max-width: none;
  max-height: none;
  pointer-events: none;
}
.hero-slide::before {
  content:""; position:absolute; inset:0; z-index:1;
  background:
    linear-gradient(90deg, rgba(11,24,38,.88) 0%, rgba(11,24,38,.72) 35%, rgba(11,24,38,.28) 70%, rgba(11,24,38,.15) 100%),
    linear-gradient(180deg, rgba(9,17,24,.2), rgba(9,17,24,.55));
}
.hero-content {
  position: relative; z-index:2; width:min(100%, 92%);
  max-width: 920px;
  max-height: 100%;
  padding: 40px 48px 72px;
  color:#fff;
  animation: fadeUp .6s ease both;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 0;
}
.eyebrow { display:inline-block; margin-bottom:12px; color: var(--color-brand-2); text-transform: uppercase; letter-spacing:.14em; font-size:.76rem; font-weight:900; }
@media (max-width: 760px) {
  .eyebrow--hide-mobile {
    display: none;
  }
}
.hero h1 {
  margin:0 0 12px;
  font-size: clamp(1.85rem, 3.6vw, 3.25rem);
  line-height:1.12;
  max-width: 100%;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.hero p {
  margin:0 0 18px;
  font-size:1.02rem;
  line-height:1.5;
  color: rgba(255,255,255,.88);
  max-width: 52ch;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.hero-meta { display:flex; flex-wrap:wrap; gap:10px 14px; margin-bottom: 16px; color:#d6e6ee; font-weight:700; }
.hero .button-row {
  flex-shrink: 0;
}
.hero .btn {
  font-weight: 400;
}
.button-row { display:flex; gap:12px; flex-wrap:wrap; align-items: stretch; }
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  border:none; border-radius: 8px; cursor:pointer;
  padding: 13px 18px; font-weight:400; font-size:.98rem;
  transition: transform .22s ease, background-color .22s ease, color .22s ease, opacity .22s ease;
  box-sizing: border-box;
}
.btn:hover { transform: translateY(-2px); }
.btn:disabled,
.btn[disabled] {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
  transform: none;
}
.btn-primary { background: var(--color-brand-2); color:#fff; }
.btn-secondary { background: rgba(255,255,255,.12); color:#fff; border:1px solid rgba(255,255,255,.26); }
.btn-dark { background: var(--color-brand); color:#fff; }
.btn-light { background: #fff; color: var(--color-brand); border: 1.5px solid rgba(0, 82, 98, 0.22); }
.hero-dots { position:absolute; right:56px; bottom:28px; left:auto; z-index:2; display:flex; gap:10px; }
.hero-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.9);
  background: transparent;
  box-sizing: border-box;
  cursor: pointer;
}
.hero-dot.active {
  background: #fff;
  border-color: #fff;
  transform: none;
}
.section { padding: 30px 0; }
.section-head { display:flex; align-items:end; justify-content:space-between; gap:16px; margin-bottom:16px; }
.section-head h1 { margin:0; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.1; }
.section-head h2 { margin:0; font-size:1.9rem; }
.section-head p { margin:8px 0 0; color:var(--color-muted); max-width:62ch; }
.home-about {
  margin: 0;
  padding: 14px 16px;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--color-muted);
  background: rgba(255,255,255,.72);
  border: 1px solid var(--color-line);
  border-radius: 8px;
}
.home-about__summary {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.3;
  list-style: none;
  cursor: pointer;
  user-select: none;
}
.home-about__summary::-webkit-details-marker {
  display: none;
}
.home-about__summary svg {
  flex-shrink: 0;
  width: 1.2em;
  height: 1.2em;
  color: var(--color-brand);
}
.home-about__summary::after {
  content: "";
  width: 0.5em;
  height: 0.5em;
  margin-left: auto;
  border-right: 2px solid var(--color-brand);
  border-bottom: 2px solid var(--color-brand);
  transform: rotate(45deg);
  transition: transform .18s ease;
  flex-shrink: 0;
}
.home-about-fold[open] > .home-about__summary {
  margin-bottom: 10px;
}
.home-about-fold[open] > .home-about__summary::after {
  transform: rotate(-135deg);
  margin-top: 4px;
}
.home-about h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.3;
}
.home-about h2 svg {
  flex-shrink: 0;
  width: 1.2em;
  height: 1.2em;
  color: var(--color-brand);
}
.home-about-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 22px;
}
.home-about-cols p,
.home-about-col p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.55;
  font-size: inherit;
}
.home-about-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.home-about-col .inline-link {
  margin-top: auto;
  margin-right: 10px;
  align-self: flex-end;
  font-size: 0.88rem;
}
@media (min-width: 901px) {
  .home-about-fold > .home-about__summary {
    pointer-events: none;
    cursor: default;
    margin-bottom: 10px;
  }
  .home-about-fold > .home-about__summary::after {
    display: none;
  }
  /* Fallback falls open fehlt: Inhalt trotzdem zeigen */
  .home-about-fold:not([open]) > .home-about-cols {
    display: grid !important;
  }
}
@media (max-width: 900px) {
  .section {
    padding: 14px 0;
  }
  .section:has(+ .section--home-about) {
    padding-bottom: 8px;
  }
  .section--home-about {
    padding: 0;
  }
  body:has(.section--home-about) .footer {
    padding-top: 10px;
  }
  .home-about {
    padding: 14px 16px;
  }
  .home-about-cols {
    grid-template-columns: 1fr;
  }
  .home-about-fold:not([open]) > .home-about__summary {
    margin-bottom: 0;
  }
  .home-about-fold[open] > .home-about__summary {
    margin-bottom: 10px;
  }
  .section-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 12px;
    row-gap: 0;
    margin-bottom: 10px;
  }
  .section-head h2 {
    font-size: 1.45rem;
  }
  .section-head > div {
    display: contents;
  }
  .section-head h2 {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
  }
  .section-head p {
    grid-column: 1 / -1;
    grid-row: 2;
  }
  .section-head-link {
    grid-column: 2;
    grid-row: 1;
    flex: 0 0 36px;
    box-sizing: border-box;
    width: 36px;
    min-width: 36px;
    max-width: 36px;
    height: 36px;
    padding: 0;
    gap: 0;
    overflow: hidden;
    align-self: center;
  }
  .section-head-link__text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .section-head-link__arrow {
    display: block;
    font-size: 1.15rem;
    line-height: 1;
    transform: translateY(-1px);
  }
}
.inline-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1.5px solid transparent;
  border-radius: 8px;
  background: #1a2945;
  color: #fff;
  font-weight: 400;
  font-size: 0.86rem;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(0, 40, 55, 0.18);
  transition: filter .15s ease, border-color .15s ease, color .15s ease, transform .22s ease;
}
.inline-link:hover,
.inline-link:focus-visible {
  color: #fff;
  border-color: transparent;
  filter: brightness(1.06);
  transform: translateY(-2px);
  outline: none;
}
.section-head-link {
  gap: 0.35em;
}
.section-head-link__arrow {
  font-weight: 700;
}
.card-rail {
  --rail-arrow: 2.75rem;
  display: grid;
  grid-template-columns: var(--rail-arrow) minmax(0, 1fr) var(--rail-arrow);
  align-items: center;
  column-gap: 0.1rem;
  width: calc(100% + 2 * var(--rail-arrow) + 0.2rem);
  margin-left: calc(-1 * var(--rail-arrow) - 0.1rem);
  margin-right: calc(-1 * var(--rail-arrow) - 0.1rem);
}
.card-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 300px;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px 4px 14px;
  margin: 0 -4px;
  min-width: 0;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.card-grid::-webkit-scrollbar { display: none; }
.card-rail__prev,
.card-rail__next {
  position: static;
  z-index: 3;
  width: 100%;
  height: 5.5rem;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--color-brand);
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color .15s ease, opacity .2s ease, visibility .2s ease;
}
.card-rail__prev::before,
.card-rail__next::before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  border-style: solid;
  border-color: currentColor;
  border-width: 0.32rem 0.32rem 0 0;
  box-sizing: border-box;
}
.card-rail__next::before {
  transform: rotate(45deg);
  margin-left: -0.35rem;
}
.card-rail__prev::before {
  transform: rotate(-135deg);
  margin-right: -0.35rem;
}
.card-rail__prev:hover,
.card-rail__prev:focus-visible,
.card-rail__next:hover,
.card-rail__next:focus-visible {
  color: var(--color-brand-2, var(--color-brand));
  outline: none;
}
.card-rail__next:disabled,
.card-rail.is-end .card-rail__next {
  opacity: 0.28;
  cursor: default;
  pointer-events: none;
}
.card-rail.is-unscrollable .card-rail__next {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.card-rail:not(.is-scrolled) .card-rail__prev,
.card-rail__prev[hidden] {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.card-rail.is-scrolled .card-rail__prev {
  visibility: visible;
  opacity: 1;
}
.event-card {
  display:flex; flex-direction:column; overflow:hidden;
  scroll-snap-align: start;
  background: var(--color-surface); border:1px solid var(--color-line);
  border-radius: 8px;
  transform: translateZ(0);
  transition: border-color .2s ease;
}
.event-card:hover {
  border-color: var(--color-brand);
}
.event-card__media { aspect-ratio: 16 / 9; overflow:hidden; background:#fff; position: relative; }
.event-card__media img {
  position: absolute;
  left: 0;
  top: 0;
  max-width: none;
  max-height: none;
  transition: width .35s ease, height .35s ease, left .35s ease, top .35s ease;
}
.event-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px 18px 20px;
}
.event-card__date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size:.84rem; font-weight:800; color:var(--color-brand); margin-bottom:8px;
}
.event-card h3 {
  margin: 0 0 10px;
  font-size: 1.14rem;
  line-height: 1.2;
  transition: transform .22s ease;
  transform-origin: left center;
}
.event-card:hover h3 {
  transform: scale(1.03);
}
.event-card p {
  margin: 0 0 12px;
  color: var(--color-muted);
  line-height: 1.55;
  font-size: 0.9rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
}
.event-card__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-top: auto;
  padding-top: 8px;
  color: var(--color-text);
  font-size: .92rem;
}
.event-card__meta > span {
  display: inline-flex;
  align-items: flex-start;
  gap: 6px;
  min-width: 0;
}
.meta-icon {
  display: inline-flex;
  flex-shrink: 0;
  margin-top: 0.18em;
  color: var(--color-brand);
}
.meta-icon svg { display: block; }
.chip { display:inline-flex; align-items:center; padding:7px 11px; border-radius: 8px; background:#eef8fb; color:var(--color-brand); font-weight:800; font-size:.8rem; }
.partners-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.partners-track {
  display: flex;
  width: max-content;
  gap: 16px;
  padding: 8px 0;
  animation: partners-scroll 45s linear infinite;
}
.partners-marquee:hover .partners-track {
  animation-play-state: paused;
}
@keyframes partners-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 8px)); }
}
@media (prefers-reduced-motion: reduce) {
  .partners-track { animation: none; }
  .partners-marquee { overflow-x: auto; }
}
.partner-item {
  display:flex; align-items:center; justify-content:center;
  flex: 0 0 auto;
  width: 200px;
  min-height: 110px; padding: 18px 20px;
  background:#fff; border-radius: 8px; border:1px solid var(--color-line);
  transition: border-color .2s ease;
}
a.partner-item:hover {
  border-color: var(--color-brand);
}
.partner-item img {
  width: 100%;
  max-width: 180px;
  max-height: 70px;
  height: auto;
  object-fit: contain;
}
.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.partner-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  padding: 18px;
  box-shadow: none;
  transition: border-color .2s ease;
}
.partner-card:hover {
  transform: none;
  border-color: var(--color-brand);
  box-shadow: none;
}
.partner-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  padding: 12px;
  background: #f7fbfc;
  border-radius: 8px;
}
.partner-card__logo img {
  max-width: 150px;
  max-height: 64px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.partner-card__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  align-self: stretch;
}
.partner-card__body h2 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}
.partner-card__body p {
  margin: 0 0 12px;
  color: var(--color-muted);
  line-height: 1.55;
  flex: 1 1 auto;
}
.partner-card__body .inline-link {
  align-self: flex-end;
  margin-top: auto;
}
.partner-detail-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  background: #f7fbfc;
  padding: 36px;
}
.partner-detail-logo img {
  max-width: 320px;
  max-height: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
}
.partner-detail-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}
.partner-detail-brand {
  background: #fff;
  border: 1px solid rgba(0,82,98,.08);
  border-radius: 8px;
  padding: 16px 22px;
  min-width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-detail-brand img {
  max-width: 180px;
  max-height: 64px;
  object-fit: contain;
}
.partner-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) 340px;
  gap: 24px;
  align-items: stretch;
}
.partner-detail-main,
.partner-contact {
  background: #fff;
  border: 1px solid rgba(0,82,98,.08);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}
.partner-detail-main { padding: 28px; }
.partner-richtext {
  color: #30475a;
  line-height: 1.75;
  font-size: 1.02rem;
}
.partner-richtext p { margin: 0 0 1.1rem; clear: both; }
.partner-richtext hr {
  border: 0;
  border-top: 1px solid var(--color-line);
  margin: 1.4rem 0;
}
.partner-richtext a {
  color: var(--color-brand);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.partner-richtext img {
  max-width: 180px;
  height: auto;
  float: left;
  margin: 0 20px 16px 0;
  border-radius: 8px;
}
.partner-detail-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 100%;
}
.partner-related .card-grid--wrap {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  grid-auto-flow: row;
  grid-auto-columns: unset;
  gap: 18px;
  overflow: visible;
  overflow-x: visible;
  overflow-y: visible;
  scroll-snap-type: none;
  scroll-behavior: auto;
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 100%;
}
.partner-related .card-grid--wrap .event-card {
  width: auto;
  min-width: 0;
  max-width: none;
  scroll-snap-align: none;
}
.admin-partner-row__logo {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  border: 1px solid var(--color-line);
  background: #fff;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.admin-event-row__thumb {
  flex: 0 0 148px;
  width: 148px;
  align-self: stretch;
  height: auto;
  min-height: 100%;
  border: 0;
  border-radius: 8px 0 0 8px;
  background: #eef3f5;
  overflow: hidden;
  position: relative;
}
.admin-event-bubble:has(.admin-event-row__thumb) {
  align-items: stretch;
  gap: 0 14px;
  padding: 0 14px 0 0;
  overflow: hidden;
  border-radius: 8px;
  min-height: 0;
}
.admin-event-bubble:has(.admin-event-row__thumb) .admin-event-bubble__body {
  padding: 12px 0;
  align-self: center;
  min-width: 0;
}
.admin-event-bubble:has(.admin-event-row__thumb) .admin-row-actions {
  align-self: center;
}
.admin-event-row__thumb img {
  position: absolute;
  left: 0;
  top: 0;
  max-width: none;
  max-height: none;
}
.admin-partner-row__logo img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}
.admin-partner-tag {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  padding: 1px 7px;
  border: 1px solid var(--color-line, #d5dde4);
  border-radius: 6px;
  background: #fff;
  color: inherit;
  font-size: inherit;
  font-weight: 400;
  line-height: 1.3;
  vertical-align: middle;
}
.admin-partner-sort {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 1px 7px;
  border: 1px solid var(--color-line, #d5dde4);
  border-radius: 6px;
  background: #fff;
}
.admin-partner-sort__arrows {
  display: block;
  flex: 0 0 auto;
  width: 11px;
  height: 14px;
  opacity: 0.8;
}
.admin-partner-form__logo-preview {
  width: min(220px, 100%);
  height: 88px;
  margin: 0 0 12px;
  padding: 10px;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: #fff;
  display: grid;
  place-items: center;
}
.admin-partner-form__logo-preview img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.partner-contact { padding: 22px; }
.partner-contact h2 {
  margin: 0 0 14px;
  font-size: 1.15rem;
  color: var(--color-brand);
}
.partner-contact-logo {
  width: 125px;
  height: auto;
  margin-bottom: 14px;
}
.partner-contact-lines { margin-bottom: 10px; }
.partner-contact a { color: var(--color-brand); font-weight: 700; }
.partner-contact .inline-link {
  color: #fff;
  font-weight: 400;
}
.partner-contact .inline-link:hover,
.partner-contact .inline-link:focus-visible {
  color: #fff;
}
.partner-profile-note {
  margin: auto 0 0;
  padding: 16px 18px;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--color-muted);
  background: rgba(255,255,255,.72);
  border: 1px solid var(--color-line);
  border-radius: 8px;
  box-shadow: none;
  width: fit-content;
  max-width: 100%;
  align-self: flex-start;
}
.partner-profile-note a {
  color: var(--color-brand);
  font-weight: 700;
}
@media (max-width: 1080px) {
  .partner-detail-layout { grid-template-columns: 1fr; }
  .partner-profile-note { margin-top: 0; }
}
@media (max-width: 760px) {
  .partner-detail-top { flex-direction: column; align-items: flex-start; }
  .partner-richtext img { float: none; display: block; margin: 0 0 16px; max-width: 100%; }
}
.filter-sticky-sentinel {
  height: 1px;
  margin: 0;
  pointer-events: none;
}
.filter-panel {
  display:grid; grid-template-columns: 2fr repeat(3, 1fr) auto auto; gap:12px;
  position: sticky;
  top: var(--site-header-offset, 88px);
  z-index: 30;
  background: rgba(255,255,255,.96);
  border:1px solid rgba(0,82,98,.09);
  border-radius: 8px;
  padding:16px;
  backdrop-filter: blur(14px);
  margin-bottom: 22px;
  box-shadow: 0 10px 28px rgba(9,31,42,.06);
  transition: border-radius .18s ease, box-shadow .18s ease;
}
.filter-panel--news {
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr) auto;
}
.filter-select {
  display: block;
  min-width: 0;
  position: relative;
}
.filter-panel__controls {
  display: contents;
}
.filter-select__icon,
.filter-check__icon,
.filter-submit__icon {
  display: none;
}
.filter-select select {
  width: 100%;
}
.filter-panel > button.inline-link,
.filter-panel > button[type="submit"],
.filter-panel > .filter-submit,
.filter-panel .filter-submit {
  width: auto;
  min-width: 0;
  justify-self: start;
  white-space: nowrap;
}
.filter-panel.is-stuck {
  border-radius: 0 0 8px 8px;
  border-top-color: transparent;
  box-shadow: 0 12px 28px rgba(9,31,42,.08);
}
.filter-float-btn {
  display: none;
}
.filter-check {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 8px;
  white-space: nowrap;
}
.filter-check input[type="checkbox"] {
  width: 1.05em;
  height: 1.05em;
  accent-color: var(--color-brand);
  cursor: pointer;
}
.input, select, textarea {
  width:100%; padding: 13px 14px; border-radius: 8px; border:1px solid var(--color-line);
  background:#fff; color:var(--color-text); font:inherit;
}
textarea { min-height: 180px; resize: vertical; }
.form-grid textarea.input {
  min-height: 96px;
}
.label { display:block; margin-bottom:8px; font-size:.88rem; font-weight:800; color:var(--color-brand); }
.label .label-hint,
.label-hint {
  font-weight: 400;
  color: var(--color-muted, #6b7a86);
  font-size: 0.92em;
}
.list-view { display:grid; gap:16px; }
.list-item {
  display:grid;
  grid-template-columns: 320px 1fr;
  gap:0;
  align-items: stretch;
  background:#fff; border-radius: 8px; overflow:hidden;
  border:1px solid var(--color-line);
  color: inherit;
  text-decoration: none;
  transition: border-color .2s ease;
  cursor: pointer;
}
.list-item:hover {
  border-color: var(--color-brand);
}
.list-item__body h2 {
  margin: 0 0 8px;
  font-size: 1.28rem;
  line-height: 1.25;
  color: var(--color-text);
}
.list-item__image {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: calc(320px * 9 / 16);
  overflow: hidden;
  background: #fff;
}
.list-item__image img {
  position: absolute;
  left: 0;
  top: 0;
  max-width: none;
  max-height: none;
}
.list-item__body {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 16px 20px 14px 22px;
  border-left: 1px solid rgba(0, 82, 98, 0.28);
}
.list-item__topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}
.list-item__topline-left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.list-item__topline-right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-left: auto;
  flex: 0 1 auto;
  min-width: 0;
}
.list-item__topline-item {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 4px 10px;
  border: 1px solid rgba(0, 82, 98, 0.28);
  border-radius: 8px;
  background: #eef8fb;
  color: var(--color-brand);
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.list-item__topline-item--plain {
  background: transparent;
}
.list-item__organizer {
  color: var(--color-brand);
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.3;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.list-item__topline-date {
  flex: 0 0 auto;
}
.list-item__teaser {
  margin: 0;
  padding-bottom: 0;
  border-bottom: 0;
  color: var(--color-muted);
  line-height: 1.45;
}
.list-item__body .button-row {
  margin-top: auto;
  padding-top: 10px;
  justify-content: flex-end;
  flex: 0 0 auto;
}
.detail-hero { padding: 24px 0 22px; }
.detail-wrap { display:grid; grid-template-columns: minmax(0,1.3fr) 360px; gap:24px; }
.detail-main, .detail-side, .admin-panel { background:#fff; border-radius: 8px; border:1px solid rgba(0,82,98,.09); box-shadow: var(--shadow-soft); }
.legal-page {
  padding: 28px;
  max-width: 820px;
}
.legal-page.newsletter-destination {
  max-width: none;
  width: 100%;
}
.legal-page h1 {
  margin: 8px 0 16px;
}
.legal-body {
  line-height: 1.7;
  color: #30475a;
}
.legal-body h2 {
  margin: 28px 0 10px;
  font-size: 1.15rem;
  color: var(--color-ink);
}
.legal-body h3 {
  margin: 18px 0 8px;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--color-ink);
}
.legal-body p {
  margin: 0 0 12px;
}
.legal-body ul {
  margin: 0 0 14px;
  padding-left: 1.25em;
}
.legal-body li {
  margin: 0 0 6px;
}
.legal-body a {
  color: var(--color-brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.mail-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-brand);
  text-decoration: none !important;
  line-height: 1.2;
  vertical-align: middle;
}
.mail-link svg {
  display: block;
  flex: 0 0 auto;
  width: 0.95em;
  height: 0.95em;
  position: relative;
  top: 0.02em;
}
.legal-body a.mail-link {
  text-decoration: none;
}
.detail-main { overflow:hidden; }
.detail-main__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #fff;
}
.detail-main__media img {
  position: absolute;
  left: 0;
  top: 0;
  max-width: none;
  max-height: none;
}
.detail-main__media.has-video {
  background: #0f2434;
}
.detail-main__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #0f2434;
}
/* Volume-Regler ausblenden, wo Browser es erlauben (Ton bleibt per JS gesperrt) */
.detail-main__video.is-sound-disabled::-webkit-media-controls-mute-button,
.detail-main__video.is-sound-disabled::-webkit-media-controls-volume-slider,
.detail-main__video.is-sound-disabled::-webkit-media-controls-volume-control-container {
  display: none !important;
}
.detail-copy { padding: 26px; }
.detail-copy h1 { margin: 10px 0 14px; font-size: clamp(1.75rem, 2.6vw, 2.6rem); line-height:1.02; }
.detail-teaser {
  margin: 0 0 18px;
  font-size: 1.08rem;
  color: var(--color-muted);
  line-height: 1.6;
}
.detail-body {
  line-height: 1.75;
  color: #30475a;
}
.detail-body p { margin: 0 0 1rem; }
.detail-body ul,
.detail-body ol { margin: 0 0 1rem; padding-left: 1.35em; }
.detail-body li { margin: 0.25em 0; }
.detail-body a {
  color: var(--color-accent, #1a6b8a);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.detail-body img {
  max-width: 100%;
  height: auto;
  margin: 0.75rem 0;
  border-radius: 6px;
}
.detail-body h2,
.detail-body h3,
.detail-body h4,
.detail-body h5 {
  margin: 1.25rem 0 0.5rem;
  line-height: 1.3;
  color: var(--color-ink, #1a2a36);
}
.detail-body blockquote {
  margin: 0 0 1rem;
  padding: 0.4rem 0 0.4rem 1rem;
  border-left: 3px solid var(--color-line, #d5dde4);
  color: var(--color-muted);
}
.detail-body hr {
  margin: 1.25rem 0;
  border: 0;
  border-top: 1px solid var(--color-line, #d5dde4);
}
.detail-side { padding: 24px; height: fit-content; position: sticky; top: 110px; }
.detail-actions {
  justify-content: flex-end;
}
.detail-booking {
  margin-top: 20px;
  display: grid;
  gap: 14px;
}
.detail-booking--priced {
  margin-left: -24px;
  margin-right: -24px;
  padding: 16px 24px 0;
  border-top: 1px solid var(--color-line);
}
.detail-prices {
  display: grid;
  gap: 8px;
}
.detail-price-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: flex-end;
  column-gap: 12px;
  row-gap: 2px;
}
.detail-price-label {
  flex: 1 1 auto;
  min-width: 0;
  margin-right: auto;
  font-size: 0.86rem;
  font-weight: 400;
  color: var(--color-muted);
  line-height: 1.35;
}
.detail-price-value {
  flex: 0 0 auto;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--color-text);
  text-align: right;
}
.detail-price-value.is-struck {
  text-decoration: line-through;
  color: var(--color-muted);
  font-weight: 400;
}
.detail-price-line--stacked {
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 2px;
}
.detail-price-line--stacked .detail-price-label {
  margin-right: 0;
}
.detail-price-line--stacked .detail-price-value {
  align-self: flex-end;
}
.detail-price-hint {
  font-weight: 400;
}
.detail-price-note {
  margin: 2px 0 0;
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--color-muted);
}
.detail-booking .detail-actions {
  margin-top: 0;
}
.event-commerce-fields {
  display: grid;
  gap: 16px;
}
.event-commerce-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 12px;
  align-items: end;
}
.event-commerce-row--single {
  grid-template-columns: 1fr;
}
.event-commerce-row--half {
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
}
.event-commerce-row--half > :first-child {
  grid-column: 1;
}
.event-commerce-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  color: var(--color-muted);
  font-size: 1.05rem;
  line-height: 1;
  user-select: none;
}
.event-news-link-list {
  display: grid;
  gap: 14px;
}
.event-news-link-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}
.event-news-link-row__button {
  align-items: stretch;
}
.event-news-link-row__button .input {
  flex: 1 1 auto;
  min-width: 7.5rem;
}
.event-news-link-add-row {
  align-items: center;
}
.event-news-link-add-row .form-hint-bubble {
  display: flex;
  align-items: center;
  font-weight: 400;
}
.detail-actions--stack {
  flex-direction: column;
  align-items: stretch;
  flex-wrap: nowrap;
}
.detail-actions--stack .inline-link {
  width: 100%;
  justify-content: center;
  text-align: center;
}
.info-list { display:grid; gap:14px; }
.info-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.info-row--stacked {
  align-items: flex-start;
}
.info-row--stacked .info-icon {
  margin-top: 2px;
}
.info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 0;
  color: var(--color-brand);
  background: none;
  border: 0;
  border-radius: 0;
}
.info-icon svg { display: block; width: 18px; height: 18px; }
.event-disclaimer {
  margin: 22px 0 0;
  padding: 16px 18px;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--color-muted);
  background: rgba(255,255,255,.72);
  border: 1px solid var(--color-line);
  border-radius: 8px;
}
.info-row strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.35;
}
.footer { padding: 28px 0 36px; color:#4b6271; }
.footer-card {
  display: flex;
  align-items: stretch;
  width: 100%;
  background: #fff;
  border-radius: 8px;
  border: 1px solid rgba(0,82,98,.08);
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(9,31,42,.05);
}
.footer-blue {
  flex: 0 1 auto;
  width: max-content;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  background: #1a2945;
  color: rgba(255,255,255,.8);
  padding: 18px 20px 14px;
}
.footer-brand {
  min-width: 0;
}
.footer-brand-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.footer-brand-top > a {
  min-width: 0;
}
.footer-brand img { width: 132px; height: auto; margin-bottom: 8px; display: block; }
.footer-brand p {
  margin: 0;
  line-height: 1.4;
  color: rgba(255,255,255,.78);
  font-size: 0.8rem;
}
.footer-social--on-brand {
  display: none !important;
}
.footer-mail {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: 0.55em;
}
.footer-mail svg {
  flex: 0 0 auto;
  opacity: 0.9;
}
.footer-copy {
  margin: 1.35em 0 0;
  font-size: 0.72rem;
  color: rgba(255,255,255,.55);
  white-space: nowrap;
}
.footer-col {
  flex: 0 0 auto;
  min-width: 160px;
  padding: 18px 40px;
  background: #fff;
  border-left: 0;
}
.footer-address {
  margin-left: 0;
  padding-left: 28px;
  padding-right: 28px;
  align-self: center;
}
.footer-address-row {
  display: flex;
  align-items: flex-start;
  gap: 36px;
}
.footer-address p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.5;
  color: #4b6271;
  text-align: left;
}
.footer-address a {
  color: #4b6271;
}
.footer-address a:hover {
  color: var(--color-brand);
}
.footer-social {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.footer-social a {
  display: inline-flex;
  color: #4b6271;
  transition: color 0.15s ease, transform 0.15s ease;
}
.footer-social a:hover {
  color: var(--color-brand);
  transform: translateY(-1px);
}
.footer-social svg {
  display: block;
}
.footer-links {
  display: flex;
  align-items: stretch;
  margin-left: auto;
}
.footer-overview {
  margin-left: 0;
  padding-left: 52px;
  padding-right: 40px;
}
.footer-legal {
  margin-left: 0;
  padding-left: 40px;
  padding-right: 52px;
}
.footer-col h3 {
  margin: 0 0 8px;
  font-size: 0.86rem;
  color: var(--color-brand);
  text-align: left;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}
.footer-col li {
  margin: 0 0 6px;
  font-size: 0.84rem;
  line-height: 1.35;
}
.footer-col a { color: var(--color-brand); }
.footer-col a:hover { color: #5bc0de; }
.flash { padding:14px 16px; border-radius: 8px; margin-bottom:16px; }
.flash-success { background:#edf8ed; color:#276227; }
.flash-error { background:#fff1f1; color:#8f2424; }
.admin-shell { display:grid; grid-template-columns: 260px 1fr; min-height:100vh; background: linear-gradient(180deg, #f5f9fa, #edf4f6); }
.admin-welcome {
  position: fixed;
  top: 22px;
  left: 50%;
  right: auto;
  z-index: 80;
  padding: 14px 18px;
  border-radius: 8px;
  background: #1a2945;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 400;
  box-shadow: 0 12px 28px rgba(0, 40, 55, 0.22);
  transform: translateX(-50%);
  animation: admin-welcome-in .28s ease;
  transition: opacity .35s ease, transform .35s ease;
}
.admin-welcome.is-hiding {
  opacity: 0;
  transform: translate(-50%, -8px);
  pointer-events: none;
}
@keyframes admin-welcome-in {
  from { opacity: 0; transform: translate(-50%, -10px); }
  to { opacity: 1; transform: translateX(-50%); }
}
.admin-sidebar {
  position: sticky;
  top: 0;
  align-self: start;
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: 14px 18px 20px;
  background: #1a2945;
  border-right: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  overflow: hidden;
  box-sizing: border-box;
}
.admin-sidebar-brand {
  display: grid;
  gap: 4px;
  flex: 0 0 auto;
  color: inherit;
  text-decoration: none;
}
.admin-sidebar-brand:hover,
.admin-sidebar-brand:focus-visible {
  color: inherit;
  text-decoration: none;
  outline: none;
}
.admin-sidebar-eyebrow {
  margin: 0;
  padding: 0 8px;
  color: #5bc0de;
}
.admin-sidebar .brand {
  display: block;
  padding: 0 8px 2px;
  flex: 0 0 auto;
}
.admin-sidebar .brand img {
  width: 168px;
  height: auto;
}
.admin-main { padding: 28px; min-width: 0; }
.admin-shell .btn,
.login-card .btn {
  font-weight: 400;
}
.admin-nav {
  display: grid;
  gap: 6px;
  margin-top: 12px;
  flex: 1 1 auto;
  align-content: start;
  min-height: 0;
  overflow-y: auto;
}
.admin-nav a {
  color: #fff;
  font-weight: 400;
  font-size: 1rem;
  padding: 9px 12px;
  border-radius: 8px;
  border: 1.5px solid transparent;
  transition: color .15s ease, border-color .15s ease, background .15s ease;
}
.admin-nav a.active,
.admin-nav a:hover {
  color: #5bc0de;
  border-color: #5bc0de;
  background: transparent;
}
.admin-nav-group {
  display: block;
  color: #fff;
  font-weight: 400;
  font-size: 1rem;
  padding: 9px 12px;
  border-radius: 8px;
  border: 1.5px solid transparent;
  opacity: 0.92;
  pointer-events: none;
}
.admin-nav-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px;
  align-items: stretch;
  min-width: 0;
}
.admin-nav-row > a:first-child {
  min-width: 0;
}
.admin-nav-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  min-width: 2.4rem;
  padding: 9px 0;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
.admin-nav-sep {
  display: block;
  width: 100%;
  height: 0;
  margin: 6px 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.admin-nav-sub {
  margin-left: 14px;
  padding-left: 14px;
  font-size: 0.94rem;
}
.admin-nav-fold {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  border: 0;
}
.admin-nav-fold__summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: #fff;
  font-weight: 400;
  font-size: 1rem;
  padding: 0;
  border-radius: 8px;
  border: 1.5px solid transparent;
}
.admin-nav-fold__summary::-webkit-details-marker { display: none; }
.admin-nav-fold__summary::marker { content: ''; }
.admin-nav-fold__link {
  flex: 1 1 auto;
  min-width: 0;
  color: inherit;
  padding: 9px 12px;
  border-radius: 8px;
  border: 1.5px solid transparent;
  box-sizing: border-box;
}
.admin-nav-fold__link:hover,
.admin-nav-fold__link.active,
.admin-nav-fold__summary:hover .admin-nav-fold__link {
  color: #5bc0de;
  border-color: #5bc0de;
}
.admin-nav-fold__summary::after {
  content: '';
  flex: 0 0 auto;
  width: 0.45em;
  height: 0.45em;
  margin-right: 12px;
  border-right: 1.5px solid rgba(255, 255, 255, 0.55);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.55);
  transform: rotate(45deg);
  transition: transform .15s ease;
}
.admin-nav-fold[open] > .admin-nav-fold__summary::after {
  transform: rotate(-135deg);
  margin-top: 0.25em;
}
.admin-nav-fold__subs {
  display: grid;
  gap: 6px;
}
.admin-nav-count {
  margin-left: 0.35em;
  font-size: 0.92em;
  font-weight: 400;
  font-synthesis: none;
  opacity: 0.65;
  font-variant-numeric: tabular-nums;
}
.admin-nav-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.35em;
  height: 1.35em;
  margin-left: 0.45em;
  padding: 0 0.35em;
  border-radius: 999px;
  background: #f07178;
  color: #fff;
  font-size: 0.72em;
  font-weight: 400;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  vertical-align: 0.05em;
}
.admin-sidebar-foot {
  margin-top: auto;
  padding-top: 28px;
  display: grid;
  gap: 14px;
  flex: 0 0 auto;
}
.admin-nav-cta {
  display: block;
  padding: 9px 12px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,.75);
  color: #fff;
  font-weight: 400;
  font-size: 1rem;
  transition: color .15s ease, border-color .15s ease;
}
.admin-nav-cta:hover {
  border-color: #5bc0de;
  color: #5bc0de;
}
.admin-version {
  margin: 0 4px 2px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35em;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,.45);
  line-height: 1.3;
}
.admin-version__link {
  color: inherit;
  text-decoration: none;
}
.admin-version__link:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.admin-version-dot {
  display: block;
  width: 4px;
  height: 4px;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  background: currentColor;
  flex: 0 0 auto;
}
.changelog-panel {
  padding: 0;
  overflow: hidden;
}
.changelog-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.changelog-item {
  display: grid;
  grid-template-columns: 4.5rem 7.5rem minmax(0, 1fr);
  gap: 12px 16px;
  align-items: baseline;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(0, 82, 98, 0.08);
  font-size: 0.92rem;
}
.changelog-item:last-child {
  border-bottom: 0;
}
.changelog-item__version {
  font-weight: 700;
  color: var(--color-brand);
}
.changelog-item__date {
  color: var(--color-muted);
  font-variant-numeric: tabular-nums;
}
.changelog-item__message {
  min-width: 0;
  word-break: break-word;
}
@media (max-width: 720px) {
  .changelog-item {
    grid-template-columns: 4rem minmax(0, 1fr);
  }
  .changelog-item__date {
    grid-column: 2;
  }
  .changelog-item__message {
    grid-column: 1 / -1;
  }
}
.system-mails-grid {
  display: grid;
  gap: 18px;
}
.system-mail-card {
  padding: 20px 22px;
}
.system-mail-card--embedded {
  padding: 0 0 18px;
  border-bottom: 1px solid rgba(0, 82, 98, 0.08);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  border-left: 0;
  border-right: 0;
  border-top: 0;
}
.system-mail-card--embedded:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.system-mail-card__head {
  margin-bottom: 16px;
}
.system-mail-card__title {
  margin: 0;
  font-size: 1.15rem;
}
.system-mail-card__note {
  margin: 6px 0 0;
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.4;
}
.system-mail-card__meta {
  margin-top: 12px;
}
.system-mail-card__subject {
  margin-top: 6px;
  padding: 10px 12px;
  background: #f4f7f8;
  border: 1px solid rgba(0, 82, 98, 0.1);
  border-radius: 8px;
  font-size: 0.95rem;
}
.system-mail-card__body {
  margin: 6px 0 0;
  padding: 12px 14px;
  background: #f4f7f8;
  border: 1px solid rgba(0, 82, 98, 0.1);
  border-radius: 8px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.86rem;
  line-height: 1.45;
  white-space: pre-wrap;
  word-break: break-word;
  color: var(--color-text);
  overflow: auto;
  max-height: none;
}
.mobile-preview-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: 24px;
  align-items: start;
  min-height: 0;
}
.mobile-preview-sidebar {
  position: sticky;
  top: 16px;
  padding: 20px 18px;
  display: grid;
  gap: 18px;
  align-content: start;
}
.mobile-preview-sidebar__head h1 {
  font-size: 1.35rem;
}
.mobile-preview-toolbar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: stretch;
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.mobile-preview-field {
  display: grid;
  gap: 6px;
  min-width: 0;
}
.mobile-preview-field .label {
  margin: 0;
}
.mobile-preview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 4px;
}
.mobile-preview-actions .btn {
  flex: 1 1 auto;
  text-align: center;
}
.mobile-preview-stage {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 4px 0 20px;
  min-height: 520px;
  min-width: 0;
}
.mobile-preview-device {
  --preview-w: 390px;
  --preview-h: 844px;
  position: relative;
  width: var(--preview-w);
  height: var(--preview-h);
  max-width: 100%;
  background: #111827;
  border-radius: 36px;
  padding: 14px 12px 16px;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.08),
    0 24px 48px rgba(0, 0, 0, 0.28);
  box-sizing: border-box;
}
.mobile-preview-device[data-device="phone-sm"] {
  --preview-w: 360px;
  --preview-h: 740px;
  border-radius: 32px;
}
.mobile-preview-device[data-device="phone-lg"] {
  --preview-w: 430px;
  --preview-h: 932px;
  border-radius: 40px;
}
.mobile-preview-device__notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 28%;
  height: 18px;
  background: #0b1220;
  border-radius: 999px;
  z-index: 2;
  pointer-events: none;
}
.mobile-preview-device__screen {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 24px;
  background: #fff;
}
@media (max-width: 1080px) {
  .mobile-preview-layout {
    grid-template-columns: 1fr;
  }
  .mobile-preview-sidebar {
    position: static;
    order: -1;
  }
}
@media (max-width: 640px) {
  .mobile-preview-device {
    --preview-w: min(100%, 390px);
    --preview-h: min(78vh, 740px);
  }
}
.structure-page {
  display: grid;
  gap: 16px;
}
.structure-page__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px 20px;
}
.structure-doc-badge {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid rgba(0, 82, 98, 0.14);
  border-radius: 8px;
  min-width: 11rem;
}
.structure-doc-badge__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.structure-doc-badge__value {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-brand);
  line-height: 1.2;
}
.structure-doc-badge__meta {
  font-size: 0.8rem;
  color: var(--color-muted);
}
.structure-doc-badge.is-stale {
  border-color: #b45309;
  background: #fffbeb;
}
.structure-doc-badge.is-stale .structure-doc-badge__value {
  color: #b45309;
}
.structure-toc {
  position: sticky;
  top: 0;
  z-index: 25;
  margin: 0 0 4px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 82, 98, 0.09);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}
.structure-toc.stats-period-nav {
  margin-bottom: 4px;
}
.structure-toc.stats-period-nav .btn {
  text-decoration: none;
}
.structure-page .structure-card {
  scroll-margin-top: 132px;
}
.structure-fold {
  padding: 0;
  overflow: hidden;
}
.structure-fold__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.structure-fold__summary::-webkit-details-marker { display: none; }
.structure-fold__summary::marker { content: ''; }
.structure-fold__summary::after {
  content: "";
  width: 0.55em;
  height: 0.55em;
  border-right: 2px solid var(--color-brand);
  border-bottom: 2px solid var(--color-brand);
  transform: rotate(45deg);
  transition: transform .18s ease;
  flex-shrink: 0;
  margin-left: 8px;
}
.structure-fold[open] > .structure-fold__summary::after {
  transform: rotate(-135deg);
  margin-top: 4px;
}
.structure-fold__title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-text);
}
.structure-fold__body {
  padding: 0 18px 18px;
  border-top: 1px solid var(--color-line);
}
.structure-fold__body > :first-child {
  margin-top: 14px;
}
.structure-card {
  padding: 22px;
}
.structure-card h2 {
  margin: 0 0 14px;
  font-size: 1.25rem;
}
.structure-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}
.structure-facts {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 6px;
  color: var(--color-text);
  line-height: 1.45;
}
.structure-facts code {
  font-size: 0.86em;
  background: rgba(0, 82, 98, 0.06);
  padding: 0.1em 0.35em;
  border-radius: 4px;
}
.structure-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 16px;
}
.structure-grid--fields {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.structure-card .mermaid {
  margin: 16px 0 0;
  padding: 14px;
  background: #f7fbfc;
  border: 1px solid rgba(0, 82, 98, 0.08);
  border-radius: 8px;
  overflow-x: auto;
}
@media (max-width: 1100px) {
  .structure-grid--fields { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .structure-grid,
  .structure-grid--fields { grid-template-columns: 1fr; }
}
.admin-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap:16px; margin-bottom:20px; }
.dashboard-metrics {
  --dashboard-gap: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--dashboard-gap);
  align-items: stretch;
  margin-bottom: 28px;
}
.dashboard-metrics__group {
  display: flex;
  flex-direction: column;
  gap: var(--dashboard-gap);
  min-width: 0;
}
.dashboard-metrics__group > .metric {
  flex: 1 1 0;
}
.dashboard-metrics__group {
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 10px;
  background: transparent;
}
.dashboard-metrics__group > legend {
  padding: 0 8px;
  margin-left: 4px;
  color: #6b7280;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.newsletter-destination__hero {
  margin: -28px -28px 22px;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  background: #e8eef0;
}
.newsletter-destination__hero img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(52vh, 520px);
  object-fit: cover;
}
.newsletter-destination__teaser {
  margin: 0 0 18px;
  color: var(--color-muted);
  font-size: 1.05rem;
  line-height: 1.5;
}
.newsletter-destination__closed {
  margin: 18px 0 0;
  padding: 16px 18px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(0, 82, 98, 0.06), rgba(0, 82, 98, 0.025));
  border: 1px solid rgba(0, 82, 98, 0.1);
  font-size: 1.05rem;
  line-height: 1.45;
  color: var(--color-ink, #102a32);
}
.newsletter-destination__closed > :first-child {
  margin-top: 0;
}
.newsletter-destination__partner-note {
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: 0.86rem;
  line-height: 1.5;
}
.newsletter-destination__partner-note a {
  color: var(--color-brand);
}
.nl-destination-closed {
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 82, 98, 0.1);
}
.nl-destination-closed__toggle {
  margin: 0;
}
.newsletter-destination__body {
  max-width: none;
}
.newsletter-destination__form .input {
  max-width: 50%;
}
@media (max-width: 700px) {
  .newsletter-destination__form .input {
    max-width: 100%;
  }
}
.newsletter-destination__body img,
.newsletter-destination__closed img,
.newsletter-destination__after-form img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 12px 0;
}
.newsletter-destination__after-form {
  margin-top: 28px;
}
.newsletter-destination__after-form iframe,
.newsletter-destination__after-form video {
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 220px;
  border: 0;
  border-radius: 8px;
  background: #0b0b0b;
  margin: 12px 0;
}
.newsletter-editor__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.newsletter-editor__tabs .btn.is-active {
  border-color: var(--color-brand);
  color: var(--color-brand);
}
.newsletter-editor__toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}
.newsletter-editor__code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.86rem;
  line-height: 1.45;
  min-height: 320px;
}
.newsletter-editor__preview {
  width: 100%;
  min-height: 420px;
  border: 1px solid rgba(0, 82, 98, 0.12);
  border-radius: 8px;
  background: #fff;
}
.admin-grid--secondary {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-bottom: 28px;
}
.nl-action-entries {
  margin: 0 0 28px;
  padding: 18px 18px 8px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(0, 82, 98, 0.04), rgba(0, 82, 98, 0.015));
  border: 1px solid rgba(0, 82, 98, 0.08);
}
.nl-action-entries__head {
  margin: 0 0 14px;
}
.nl-action-entries__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-brand);
}
.nl-action-entries__sub {
  margin: 4px 0 0;
  color: var(--color-muted);
  font-size: 0.9rem;
}
.nl-action-entries__grid {
  margin-bottom: 10px !important;
}
.nl-action-entries__metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nl-action-entries__actions {
  margin-top: 10px;
  align-items: stretch;
}
.nl-action-entries__actions form {
  margin: 0;
  display: inline-flex;
  align-items: stretch;
  align-self: stretch;
}
.nl-action-entries__actions .btn {
  font: inherit;
  font-size: 0.86rem;
  font-weight: 400;
  line-height: 1.25;
  padding: 6px 12px;
  min-height: 2.15rem;
  height: 100%;
  box-sizing: border-box;
}
.metric--link {
  color: inherit;
  text-decoration: none;
  transition: border-color .15s ease;
}
.metric--link:hover,
.metric--link:focus-visible {
  border-color: var(--color-brand);
  outline: none;
}
.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.admin-stats-card {
  padding: 22px;
}
.admin-stats-card h2 {
  margin: 0 0 16px;
  font-size: 1.05rem;
}
.stats-empty {
  margin: 0;
  color: var(--color-muted);
}
.stats-bars {
  display: grid;
  gap: 10px;
}
.stats-bar-row {
  display: grid;
  grid-template-columns: 52px 1fr 42px;
  gap: 10px;
  align-items: center;
}
.stats-bar-label {
  font-size: 0.82rem;
  color: var(--color-muted);
}
.stats-bar-track {
  height: 10px;
  border-radius: 8px;
  background: #eef4f6;
  overflow: hidden;
}
.stats-bar-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--color-brand);
}
.stats-bar-value {
  text-align: right;
  font-size: 0.9rem;
}
.stats-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.stats-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-line);
  font-size: 0.92rem;
}
.stats-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.stats-period-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
  align-items: center;
}
.stats-period-nav__label {
  margin-right: 4px;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--color-brand);
}
.stats-custom-range {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-left: 4px;
  padding-left: 12px;
  border-left: 1px solid var(--color-line);
}
.stats-custom-range__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--color-muted);
}
.stats-custom-range__label .input,
.stats-custom-range__label input[type="date"] {
  width: auto;
  min-width: 9.5rem;
  padding: 8px 10px;
  font-size: 0.88rem;
  border-radius: 8px;
  border: 1.5px solid rgba(0, 82, 98, 0.22);
  background: #fff;
  -webkit-appearance: none;
  appearance: none;
  color-scheme: light;
}
.stats-custom-range__label input[type="date"]::-webkit-datetime-edit,
.stats-custom-range__label input[type="date"]::-webkit-calendar-picker-indicator {
  border-radius: 6px;
}
.stats-period-btn {
  appearance: none;
  border: 1.5px solid rgba(0, 82, 98, 0.2);
  background: #fff;
  color: var(--color-text);
  border-radius: 8px;
  padding: 8px 12px;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: color .15s ease, border-color .15s ease, background .15s ease;
}
.stats-period-btn:hover {
  border-color: var(--color-brand);
  color: var(--color-brand);
}
.stats-period-btn.is-active {
  background: #1a2945;
  border-color: #1a2945;
  color: #fff;
}
.stats-period-head,
.stats-list--periods li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 52px 58px minmax(64px, 88px);
  gap: 8px;
  align-items: start;
}
.stats-period-head {
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.stats-period-head span:not(:first-child),
.stats-list--periods .stats-period {
  text-align: right;
}
.stats-list__path {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.stats-list--periods .stats-period {
  font-variant-numeric: tabular-nums;
}
.stats-list a {
  color: var(--color-brand);
}
.stats-list small {
  color: var(--color-muted);
}
.stats-time {
  font-size: 0.78rem;
  color: var(--color-muted);
  white-space: nowrap;
}
.stats-world-map {
  width: 100%;
  height: 360px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0, 82, 98, 0.1);
  margin-bottom: 16px;
  background: #e8eef1;
}
.stats-map-legend {
  max-height: 180px;
  overflow: auto;
}
.metric { padding:18px; border-radius: 8px; background:#fff; border:1px solid rgba(0,82,98,.08); box-shadow: var(--shadow-soft); }
.metric--placeholder {
  min-height: 96px;
  pointer-events: none;
  opacity: 0.45;
  box-shadow: none;
  color: #6b7280;
}
.metric--placeholder-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.metric--placeholder-content span {
  align-self: flex-start;
  text-align: left;
}
.metric strong { display:block; font-size:1.65rem; }
.metric.metric--placeholder-content strong {
  display: block;
  margin-top: 12px;
  font-size: 0.85rem;
  line-height: 1.3;
  font-weight: 400;
  font-style: italic;
  color: #6b7280;
  text-align: center;
}
.metric--top-event .metric-event-title {
  font-size: 1.05rem;
  line-height: 1.3;
  margin-top: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.metric--top-event small {
  display: block;
  margin-top: 8px;
  color: var(--color-muted);
  font-size: 0.86rem;
  font-weight: 400;
}
.metric small {
  font-weight: 400;
}
.metric-split {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 28px;
  margin-top: 8px;
}
.metric-split--4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  justify-content: initial;
}
.metric-split--4 .metric-split__item strong {
  font-size: 1.3rem;
}
.metric-split--4 .metric-split__item span {
  font-size: 0.78rem;
}
.metric-split__item--empty {
  visibility: hidden;
}
.admin-grid--secondary .metric--split {
  min-width: 0;
}
.metric-split__item {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  min-width: 0;
  text-align: right;
}
.metric-split__item strong {
  font-size: 1.65rem;
  line-height: 1;
  text-align: right;
}
.metric-split__item span {
  color: var(--color-muted);
  font-size: 0.86rem;
  font-weight: 400;
  white-space: nowrap;
  text-align: right;
}
.table-wrap { overflow:auto; }
table { width:100%; border-collapse: collapse; }
th, td { padding:12px 10px; border-bottom:1px solid var(--color-line); text-align:left; vertical-align:top; }
tbody tr:last-child td { border-bottom: 0; }
tr:hover td { background:#fafdfd; }
.crawler-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.crawler-running {
  margin: 0 0 18px;
  padding: 16px 18px;
  border: 1px solid rgba(0, 82, 98, 0.16);
  border-radius: 8px;
  background: linear-gradient(135deg, #eef8fb 0%, #f7fcfd 100%);
  color: var(--color-brand);
  display: grid;
  gap: 14px;
}
.crawler-running[hidden] {
  display: none !important;
}
.crawler-running__inner {
  display: flex;
  align-items: center;
  gap: 14px;
}
.crawler-running__copy p {
  margin: 4px 0 0;
  color: var(--color-muted);
  font-size: 0.92rem;
}
.crawler-running__live {
  list-style: none;
  margin: 0;
  padding: 10px 12px;
  display: grid;
  gap: 4px;
  min-height: 5.6em;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 82, 98, 0.1);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.78rem;
  line-height: 1.35;
  color: var(--color-brand);
  overflow: hidden;
}
.crawler-running__live li {
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0.38;
  transform: translateY(2px);
  animation: crawler-live-in .28s ease forwards;
}
.crawler-running__live li:nth-last-child(3) { opacity: 0.55; }
.crawler-running__live li:nth-last-child(2) { opacity: 0.78; }
.crawler-running__live li:last-child { opacity: 1; font-weight: 600; }
@keyframes crawler-live-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.crawler-running__spinner {
  width: 28px;
  height: 28px;
  border: 3px solid rgba(0, 82, 98, 0.18);
  border-top-color: var(--color-brand);
  border-radius: 50%;
  animation: crawler-spin .75s linear infinite;
  flex: 0 0 auto;
}
.crawler-running__spinner--sm {
  width: 16px;
  height: 16px;
  border-width: 2px;
}
@keyframes crawler-spin {
  to { transform: rotate(360deg); }
}
.crawler-running__urls {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.crawler-running__urls > li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px 12px;
  align-items: start;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 82, 98, 0.08);
  color: var(--color-muted);
  opacity: 0.72;
}
.crawler-running__urls > li.is-active {
  opacity: 1;
  border-color: rgba(0, 82, 98, 0.22);
  background: #fff;
  color: var(--color-brand);
  box-shadow: 0 8px 18px rgba(9, 31, 42, 0.06);
}
.crawler-running__urls > li.is-done {
  opacity: 1;
  color: #1a7a4c;
  border-color: rgba(26, 122, 76, 0.18);
}
.crawler-running__urls > li.is-error {
  opacity: 1;
  color: #b42318;
  border-color: rgba(180, 35, 24, 0.2);
}
.crawler-running__urls > li.is-skip {
  opacity: 0.45;
}
.crawler-running__step-num {
  font-size: 0.78rem;
  font-weight: 800;
  padding-top: 2px;
}
.crawler-running__step-body {
  min-width: 0;
  display: grid;
  gap: 2px;
}
.crawler-running__step-body strong {
  font-size: 0.92rem;
  color: inherit;
}
.crawler-running__step-url {
  font-size: 0.82rem;
  word-break: break-all;
  color: var(--color-muted);
}
.crawler-running__step-status {
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
  padding-top: 2px;
}
.crawler-card {
  padding: 22px;
  display: grid;
  gap: 12px;
  position: relative;
}
.crawler-card.is-disabled {
  opacity: 0.48;
  filter: grayscale(0.35);
  pointer-events: none;
}
.crawler-card.is-disabled .crawler-card__url a {
  pointer-events: auto;
}
.crawler-card.is-running {
  outline: 2px solid rgba(0, 82, 98, 0.18);
}
.crawler-card.is-running .crawler-card__actions {
  opacity: 0.45;
  pointer-events: none;
}
.crawler-card__busy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--color-brand);
}
.crawler-card__busy[hidden] {
  display: none !important;
}
body.crawler-is-running {
  cursor: progress;
}
body.crawler-is-running .js-crawl-form .btn {
  opacity: 0.55;
  pointer-events: none;
}
.crawler-card__head h2 {
  margin: 8px 0 0;
  font-size: 1.15rem;
}
.crawler-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 8px;
  background: #eef8fb;
  color: var(--color-brand);
  font-size: 0.75rem;
  font-weight: 800;
}
.crawler-card__url {
  margin: 0;
  font-size: 0.86rem;
  word-break: break-all;
}
.crawler-card__url a {
  color: var(--color-brand);
}
.crawler-card__meta {
  display: grid;
  gap: 4px;
  font-size: 0.86rem;
  color: var(--color-muted);
}
.crawler-card__actions {
  margin-top: 4px;
}
.crawler-card__result {
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid var(--color-line);
}
.crawler-card__result[hidden] {
  display: none !important;
}
.crawler-card__result p {
  margin: 0 0 10px;
}
.crawler-card__messages {
  margin: 0;
  padding-left: 1.1em;
  display: grid;
  gap: 4px;
  font-size: 0.84rem;
  color: var(--color-muted);
  max-height: 180px;
  overflow: auto;
}
.admin-filter-panel {
  display: grid;
  grid-template-columns: minmax(0, 2fr) repeat(4, minmax(0, 1fr)) auto;
  gap: 12px;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 25;
  margin: 0 0 18px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 82, 98, 0.09);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  transition: border-radius .18s ease, box-shadow .18s ease;
}
.admin-sticky-stack {
  position: sticky;
  top: 0;
  z-index: 25;
  margin: 0 0 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 82, 98, 0.09);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  transition: border-radius .18s ease, box-shadow .18s ease;
}
.admin-sticky-stack .admin-filter-panel {
  position: static;
  top: auto;
  z-index: auto;
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  background: transparent;
}
.admin-sticky-stack.is-stuck {
  border-radius: 0 0 8px 8px;
  border-top-color: transparent;
  box-shadow: 0 12px 28px rgba(9, 31, 42, 0.08);
}
.admin-pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 16px;
  padding: 10px 14px 12px;
  border-top: 1px solid rgba(0, 82, 98, 0.08);
}
.admin-pager__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 0;
  color: var(--color-muted);
  font-size: 0.82rem;
}
.admin-pager__goto {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}
.admin-pager__goto-label {
  margin: 0;
  font-weight: inherit;
  color: inherit;
}
.admin-pager__goto-input {
  width: 3.4rem;
  min-width: 3.4rem;
  padding: 4px 6px;
  text-align: center;
  font-size: 0.82rem;
  line-height: 1.2;
  height: auto;
}
.admin-pager__goto-of {
  white-space: nowrap;
}
.admin-pager__sep {
  margin: 0 0.35em;
  opacity: 0.55;
}
.admin-pager__pages {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  justify-content: flex-end;
}
.admin-pager__btn {
  min-width: 40px;
  padding: 8px 12px;
  text-align: center;
}
.admin-pager__btn.is-current {
  pointer-events: none;
}
.admin-pager__btn.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}
.admin-pager__ellipsis {
  color: var(--color-muted);
  padding: 0 2px;
}
.admin-filter-panel--members {
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1.1fr) minmax(0, 1.2fr) auto;
}
.admin-filter-panel .admin-sort-toggle,
.section-head .admin-sort-toggle {
  width: auto;
  height: auto;
  min-width: 48px;
  padding: 13px 14px;
  text-decoration: none;
  color: var(--color-brand);
  background: #fff;
}
.admin-filter-panel .admin-sort-toggle.is-reversed,
.section-head .admin-sort-toggle.is-reversed {
  border-color: var(--color-brand);
  background: #eef8fb;
}
.btn-light.is-active-filter {
  border-color: var(--color-brand);
  background: #eef8fb;
  color: var(--color-brand);
  box-shadow: inset 0 0 0 1px rgba(0, 82, 98, 0.08);
}
.admin-filter-panel .admin-sort-toggle:hover,
.admin-filter-panel .admin-sort-toggle:focus-visible,
.section-head .admin-sort-toggle:hover,
.section-head .admin-sort-toggle:focus-visible {
  border-color: var(--color-brand);
  color: var(--color-brand);
  outline: none;
}
.admin-filter-panel.is-stuck {
  border-radius: 0 0 8px 8px;
  border-top-color: transparent;
  box-shadow: 0 12px 28px rgba(9, 31, 42, 0.08);
}
@media (max-width: 1080px) {
  .admin-filter-panel {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 760px) {
  .admin-filter-panel {
    grid-template-columns: 1fr;
  }
}
.admin-event-list {
  display: grid;
  gap: 12px;
}
.admin-main section > .admin-event-list {
  padding-left: 28px;
}
.admin-event-bubble {
  display: flex;
  align-items: center;
  gap: 16px 20px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid rgba(0, 82, 98, 0.09);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: border-color .2s ease;
}
.admin-event-bubble:hover,
.admin-event-bubble:focus-visible {
  border-color: var(--color-brand);
  outline: none;
}
.admin-event-bubble:focus-visible {
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--color-brand-2);
}
.admin-event-bubble__body {
  flex: 1 1 auto;
  min-width: 0;
  display: grid;
  gap: 4px;
  align-content: center;
}
.admin-event-bubble__title {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
}
.admin-event-bubble__place {
  flex: 0 0 auto;
  background: transparent;
  color: var(--color-muted);
  border: 1px solid var(--color-line);
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.admin-event-bubble__slug {
  color: var(--color-muted);
  font-size: 0.82rem;
}
.admin-event-bubble__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  margin-top: 6px;
  font-size: 0.86rem;
  color: var(--color-muted);
}
.admin-user-list {
  gap: 8px;
}
.admin-user-row {
  padding: 10px 14px;
  gap: 12px 16px;
}
.admin-user-row .admin-event-bubble__body {
  gap: 2px;
}
.admin-user-row__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  min-width: 0;
}
.admin-user-row__title {
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.admin-user-row__email {
  flex: 0 1 auto;
  max-width: 100%;
  font-size: 0.78rem;
  padding: 2px 8px;
}
.admin-user-row__sub {
  color: var(--color-muted);
  font-size: 0.82rem;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.admin-user-row__dates {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  color: var(--color-muted);
  font-size: 0.75rem;
  line-height: 1.3;
  text-align: right;
  white-space: nowrap;
  flex: 0 0 auto;
}
.admin-user-row__side {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  margin-left: auto;
}
.admin-user-row .admin-event-bubble__meta {
  margin-top: 4px;
  gap: 6px 10px;
}
.admin-user-row__head .admin-event-bubble__status {
  padding: 3px 8px;
  font-size: 0.78rem;
}
.admin-user-row .admin-event-bubble__status {
  padding: 3px 8px;
  font-size: 0.78rem;
}
.admin-event-bubble__status {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.2;
}
.admin-event-bubble__status.is-live {
  background: #e7f6ef;
  color: #1f6b45;
}
.admin-event-bubble__status.is-draft {
  background: #f4efe4;
  color: #8a6a2f;
}
.admin-event-bubble__tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.2;
}
.admin-event-bubble__tag.is-awaiting {
  background: #fdeceb;
  color: #b42318;
}
.admin-event-bubble__tag.is-scheduled {
  background: #eff6ff;
  color: #1d4ed8;
  border-color: rgba(29, 78, 216, 0.28);
}
.admin-event-bubble__date.is-future {
  color: #1d4ed8;
  font-weight: 700;
}
.form-hint-scheduled {
  color: #1d4ed8;
  font-weight: 700;
}
.admin-row-actions {
  cursor: default;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
  flex: 0 0 auto;
  align-self: center;
}
.admin-main .section-head {
  align-items: center;
}
.admin-row { cursor: pointer; }
.admin-row.is-readonly { cursor: default; }
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1.5px solid rgba(0, 82, 98, 0.22);
  border-radius: 8px;
  background: transparent;
  color: var(--color-muted);
  cursor: pointer;
  box-sizing: border-box;
  transition: color .15s ease, border-color .15s ease, background .15s ease;
}
.button-row .icon-btn {
  width: auto;
  height: auto;
  min-width: 48px;
  padding: 13px 14px;
  align-self: stretch;
}
.icon-btn svg {
  display: block;
  width: 20px;
  height: 20px;
}
.icon-btn-danger:hover,
.icon-btn-danger:focus-visible {
  color: #b42318;
  border-color: rgba(180, 35, 24, 0.45);
  background: rgba(180, 35, 24, 0.06);
  outline: none;
}
.form-grid { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:16px; }
.form-grid .full { grid-column: 1 / -1; }
.event-form-stack {
  display: grid;
  gap: 16px;
}
.event-form-sticky {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 18px;
  margin: 0;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(0, 82, 98, 0.09);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}
.event-form-stack > .event-form-sticky {
  /* bleibt beim Scrollen am oberen Rand des Admin-Inhalts */
  align-self: stretch;
}
.event-form-sticky__checks {
  flex: 1 1 auto;
  min-width: 0;
}
.event-form-sticky__actions {
  flex: 0 1 auto;
  margin-left: auto;
}
.event-form-bubble {
  padding: 22px;
}
.event-form-bubble__title {
  margin: 0 0 16px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-brand);
  letter-spacing: 0.01em;
}
.nl-destination-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  cursor: pointer;
  user-select: none;
}
.nl-destination-toggle .event-form-bubble__title {
  margin: 0;
}
.nl-destination__summary {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
}
.nl-destination__summary::-webkit-details-marker {
  display: none;
}
.nl-destination__hint {
  grid-column: 1 / -1;
  margin: 0 0 4px;
  color: var(--color-muted);
  font-size: 0.9rem;
}
.nl-destination-entries {
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 82, 98, 0.1);
}
.nl-destination-entries--top {
  margin: 0 0 18px;
  padding-top: 0;
  border-top: 0;
}
.nl-destination-entries__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 20px;
  flex-wrap: wrap;
  padding: 14px 16px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(0, 82, 98, 0.045), rgba(0, 82, 98, 0.02));
  border: 1px solid rgba(0, 82, 98, 0.08);
}
.nl-destination-entries__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
  min-width: 0;
}
.nl-destination-entries__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-brand);
}
.nl-destination-entries__count {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  color: var(--color-ink, #102a32);
  font-variant-numeric: tabular-nums;
}
.nl-destination-entries__hint {
  flex: 1 1 100%;
  margin: 0;
  color: var(--color-muted);
  font-size: 0.86rem;
}
.nl-destination-entries__actions {
  flex: 0 0 auto;
  margin: 0;
}
.nl-destination-entries__actions form {
  margin: 0;
}
.nl-destination-entries__export {
  flex: 0 0 auto;
  white-space: nowrap;
}
.nl-destination.is-off .event-form-bubble__body {
  opacity: 0.55;
  filter: grayscale(0.25);
}
.nl-destination.is-off .event-form-bubble__body .input,
.nl-destination.is-off .event-form-bubble__body textarea {
  background: #eef1f3;
  color: #6a7a84;
  cursor: not-allowed;
}
.nl-asset-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}
.nl-asset-layout__editor {
  display: grid;
  gap: 14px;
  min-width: 0;
}
.nl-asset-tiles {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  min-width: 0;
  max-height: min(70vh, 42rem);
  overflow: auto;
  padding: 2px 2px 8px;
}
.nl-asset-empty {
  width: 100%;
  margin: 0;
  padding: 14px;
  color: var(--color-muted);
  font-size: 0.86rem;
  border: 1px dashed rgba(0, 82, 98, 0.16);
  border-radius: 8px;
  background: #f7fbfc;
  box-sizing: border-box;
}
.nl-asset-tile {
  position: relative;
  float: none;
  clear: none;
  flex: 0 0 7.25rem;
  width: 7.25rem;
  margin: 0;
  padding: 12px 10px 14px;
  border: 1px solid rgba(0, 82, 98, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(9, 31, 42, 0.06);
  box-sizing: border-box;
}
.nl-asset-tile__hit {
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  min-width: 0;
  font: inherit;
}
.nl-asset-tile__hit:hover .nl-asset-tile__title,
.nl-asset-tile__hit:focus-visible .nl-asset-tile__title {
  color: var(--color-brand);
}
.nl-asset-tile__hit:focus-visible {
  outline: 2px solid var(--color-brand-2);
  outline-offset: 2px;
  border-radius: 6px;
}
.nl-asset-dialog {
  border: 0;
  padding: 0;
  max-width: min(720px, calc(100vw - 32px));
  width: 100%;
  background: transparent;
}
.nl-asset-dialog::backdrop {
  background: rgba(12, 28, 36, 0.45);
}
.nl-asset-dialog__panel {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(0, 82, 98, 0.12);
  box-shadow: 0 18px 40px rgba(9, 31, 42, 0.18);
}
.nl-asset-dialog__head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nl-asset-dialog__title {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 1rem;
  color: var(--color-brand);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nl-asset-dialog__close {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--color-muted);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}
.nl-asset-dialog__close:hover,
.nl-asset-dialog__close:focus-visible {
  color: var(--color-brand);
  background: #eef6f8;
  outline: none;
}
.nl-asset-dialog__body {
  min-width: 0;
  max-height: min(60vh, 28rem);
  overflow: auto;
}
.nl-asset-dialog__pre {
  margin: 0;
  padding: 12px 14px;
  border-radius: 8px;
  background: #f7fbfc;
  border: 1px solid rgba(0, 82, 98, 0.08);
  font: inherit;
  font-size: 0.9rem;
  line-height: 1.5;
  white-space: pre-wrap;
  word-break: break-word;
}
.nl-asset-dialog__img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 8px;
}
.nl-asset-dialog__actions {
  justify-content: flex-end;
}
.unsaved-dialog {
  border: 0;
  padding: 0;
  max-width: min(440px, calc(100vw - 32px));
  width: 100%;
  background: transparent;
}
.unsaved-dialog::backdrop {
  background: rgba(12, 28, 36, 0.45);
}
.unsaved-dialog__panel {
  display: grid;
  gap: 16px;
  padding: 20px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(0, 82, 98, 0.12);
  box-shadow: 0 18px 40px rgba(9, 31, 42, 0.18);
}
.unsaved-dialog__text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.45;
  color: var(--color-text);
}
.unsaved-dialog__actions {
  margin: 0;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.nl-asset-tile__title {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0 4px;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nl-asset-tile__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand);
}
.nl-asset-tile__remove {
  position: absolute;
  top: 4px;
  right: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--color-muted);
  cursor: pointer;
}
.nl-asset-tile__remove:hover,
.nl-asset-tile__remove:focus-visible {
  color: #b42318;
  background: rgba(180, 35, 24, 0.08);
  outline: none;
}
.nl-asset-mode {
  margin: 0;
  width: fit-content;
  max-width: 100%;
}
.nl-asset-mode .admin-type-toggle__btn {
  min-width: 0;
  padding: 7px 12px;
  font-size: 0.86rem;
}
.nl-asset-create {
  display: grid;
  gap: 0;
}
.nl-asset-create[hidden] {
  display: none !important;
}
.nl-asset-create__card {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px dashed rgba(0, 82, 98, 0.22);
  border-radius: 8px;
  background: #fff;
  min-width: 0;
}
.nl-asset-create__hint {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.86rem;
}
@media (max-width: 900px) {
  .nl-asset-layout {
    grid-template-columns: 1fr;
  }
  .nl-asset-tiles {
    max-height: none;
  }
}
.event-form-bubble .admin-type-toggle,
.event-form-bubble .admin-type-badge {
  margin-bottom: 16px;
}
.event-form-bubble[hidden] {
  display: none !important;
}
.event-form-bubble--fold {
  padding: 0;
  overflow: hidden;
}
.event-form-bubble__summary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.event-form-bubble__summary::-webkit-details-marker {
  display: none;
}
.event-form-bubble__summary .event-form-bubble__title {
  margin: 0;
}
.event-form-bubble__summary::after {
  content: "";
  width: 0.55em;
  height: 0.55em;
  margin-left: 2px;
  border-right: 2px solid var(--color-brand);
  border-bottom: 2px solid var(--color-brand);
  transform: rotate(45deg);
  transition: transform .18s ease;
  flex-shrink: 0;
}
.event-form-bubble--fold[open] > .event-form-bubble__summary::after {
  transform: rotate(-135deg);
  margin-top: 4px;
}
.event-form-bubble--fold[open] > .event-form-bubble__summary {
  padding-bottom: 12px;
}
.event-form-bubble__body {
  padding: 0 22px 22px;
}
.teaser-field {
  position: relative;
}
.teaser-field__backdrop,
.teaser-field__input {
  width: 100%;
  min-height: 72px;
  height: 72px;
  padding: 13px 14px;
  border-radius: 8px;
  border: 1px solid var(--color-line);
  font: inherit;
  line-height: 1.45;
  white-space: pre-wrap;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.teaser-field__backdrop {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: auto;
  pointer-events: none;
  color: var(--color-text);
  background: #fff;
  z-index: 0;
}
.teaser-field__overflow {
  color: #b4bec6;
}
.teaser-field__input {
  position: relative;
  z-index: 1;
  resize: vertical;
  background: transparent;
  color: transparent;
  caret-color: var(--color-text);
  overflow: auto;
}
.teaser-field__input::selection {
  background: rgba(0, 82, 98, 0.18);
  color: transparent;
}
.teaser-counter {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 4px 12px;
  margin: 8px 0 0;
  font-size: 0.82rem;
  line-height: 1.35;
  color: var(--color-muted, #6b7a86);
}
.body-format-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  margin: 0 0 8px;
}
.body-format-toolbar__btn {
  appearance: none;
  margin: 0;
  padding: 5px 10px;
  min-height: 32px;
  border: 1px solid var(--color-line, #d5dde4);
  border-radius: 6px;
  background: #fff;
  color: var(--color-text, #1a2a36);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}
.body-format-toolbar__btn:hover,
.body-format-toolbar__btn:focus-visible {
  border-color: var(--color-brand);
  outline: none;
}
.body-format-toolbar__btn i {
  font-style: italic;
  font-weight: 700;
}
.body-format-toolbar__sep {
  width: 1px;
  height: 22px;
  background: var(--color-line, #d5dde4);
  margin: 0 2px;
}
.body-format-toolbar__color {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.body-format-toolbar__color-mark {
  font-weight: 800;
  color: #c62828;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}
.body-format-toolbar__color-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.body-format-file {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.teaser-counter__count {
  flex: 0 0 auto;
  text-align: left;
}
.teaser-counter--with-hint {
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px 16px;
  margin-top: 10px;
}
.teaser-counter--with-hint .form-hint-bubble {
  margin: 0;
}
.teaser-counter__hints {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: baseline;
  gap: 4px 8px;
  margin-left: auto;
  text-align: right;
}
.teaser-counter__sep {
  opacity: 0.55;
}
.teaser-counter.is-over-card [data-teaser-card],
.teaser-counter.is-over-list [data-teaser-list] {
  color: var(--color-text);
  font-weight: 800;
}
.teaser-counter.is-over-list [data-teaser-count] {
  color: var(--color-text);
  font-weight: 800;
}
.event-image-fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(280px, 380px);
  gap: 16px;
  align-items: start;
}
.admin-preview-banner {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 320px;
  height: 320px;
  overflow: hidden;
  pointer-events: none;
}
.admin-preview-banner span {
  position: absolute;
  top: 58px;
  left: -92px;
  width: 420px;
  padding: 10px 0;
  transform: rotate(-45deg);
  background: #f07178;
  color: #fff;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}
.event-image-preview-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}
.event-image-preview-wrap .label-hint {
  font-weight: 400;
  color: var(--color-muted, #6b7a86);
  font-size: 0.82em;
}
.event-image-preview {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  flex: none;
  border-radius: 8px;
  border: 1px solid var(--color-line);
  background: #fff;
  overflow: hidden;
  cursor: grab;
  touch-action: none;
  user-select: none;
}
.event-image-preview.is-dragging {
  cursor: grabbing;
}
.event-image-preview img {
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  max-width: none;
  max-height: none;
  pointer-events: none;
  -webkit-user-drag: none;
}
.event-image-tools {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 10px;
  align-self: stretch;
  min-width: 8.5rem;
  padding-top: 1.6rem;
}
.event-image-zoom-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.event-image-zoom-block__label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-brand);
  letter-spacing: 0.02em;
}
.event-image-tools__hint {
  position: relative;
  margin: 0;
  max-width: 8.5rem;
  padding: 8px 10px;
  border-radius: 8px;
  background: #eef6f8;
  border: 1px solid rgba(0, 82, 98, 0.12);
  font-size: 0.78rem;
  line-height: 1.35;
  color: var(--color-brand);
  box-shadow: 0 1px 2px rgba(0, 82, 98, 0.06);
  text-align: left;
}
.event-image-tools__hint::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -6px;
  left: auto;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  background: #eef6f8;
  border-right: 1px solid rgba(0, 82, 98, 0.12);
  border-top: 1px solid rgba(0, 82, 98, 0.12);
  transform: rotate(45deg);
}
.event-image-zoom {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.event-image-zoom__btn {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: 1px solid var(--color-line);
  background: #fff;
  color: var(--color-brand);
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
}
.event-image-zoom__btn:hover:not(:disabled) {
  border-color: var(--color-brand);
}
.event-image-zoom__btn:disabled {
  opacity: 0.4;
  cursor: default;
}
.event-image-zoom__value {
  min-width: 2.6rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-brand);
}
.event-image-inputs {
  display: grid;
  gap: 14px;
  min-width: 0;
}
.event-image-url-row {
  display: flex;
  align-items: stretch;
  gap: 8px;
  min-width: 0;
}
.event-image-url-row .input {
  flex: 1;
  min-width: 0;
}
.event-image-url-clear {
  flex: 0 0 auto;
  align-self: stretch;
  width: auto;
  min-width: 44px;
  height: auto;
  padding: 0 12px;
}
.event-image-url-clear:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}
.event-image-url-clear:not(:disabled):hover,
.event-image-url-clear:not(:disabled):focus-visible {
  color: #b42318;
  border-color: rgba(180, 35, 24, 0.35);
  outline: none;
}
.event-video-fields {
  display: grid;
  gap: 12px;
}
.event-video-panel {
  display: grid;
  gap: 14px;
}
.event-video-panel[hidden] {
  display: none !important;
}
.event-video-hint {
  margin: 0;
  font-size: 0.85rem;
  opacity: .75;
}
.event-video-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  margin-top: 12px;
}
.event-video-option__hint {
  margin: 6px 0 0;
  font-size: 0.85rem;
  opacity: .75;
}
@media (max-width: 760px) {
  .event-video-options {
    grid-template-columns: 1fr;
  }
}
.event-video-panel__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 16px;
  align-items: start;
}
.event-video-inputs {
  display: grid;
  gap: 14px;
  min-width: 0;
}
.event-video-preview-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}
.event-video-preview {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: #0f2434;
  display: flex;
  align-items: center;
  justify-content: center;
}
.event-video-preview video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #0f2434;
}
.event-video-preview__empty {
  margin: 0;
  padding: 16px;
  color: rgba(255,255,255,.72);
  font-size: 0.9rem;
  text-align: center;
}
@media (max-width: 760px) {
  .event-video-panel__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .event-image-fields {
    grid-template-columns: 1fr;
  }
  .event-image-preview-wrap {
    height: auto;
    min-height: 0;
  }
  .event-image-preview {
    width: 100%;
    aspect-ratio: 16 / 9;
    flex: none;
  }
  .event-image-tools {
    padding-top: 0;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
  }
  .event-image-zoom-block {
    align-items: flex-start;
  }
  .event-image-tools__hint {
    max-width: none;
  }
  .event-image-tools__hint::before {
    top: auto;
    bottom: -6px;
    left: 18px;
    right: auto;
    margin-top: 0;
    border-right: 1px solid rgba(0, 82, 98, 0.12);
    border-top: 0;
    border-bottom: 1px solid rgba(0, 82, 98, 0.12);
  }
}
.settings-stack {
  display: grid;
  gap: 14px;
  max-width: none;
  width: 100%;
}
.settings-panel {
  padding: 0;
  max-width: none;
  overflow: hidden;
}
.settings-fold__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.settings-fold__summary::-webkit-details-marker { display: none; }
.settings-fold__summary::after {
  content: "";
  width: 0.55em;
  height: 0.55em;
  border-right: 2px solid var(--color-brand);
  border-bottom: 2px solid var(--color-brand);
  transform: rotate(45deg);
  transition: transform .18s ease;
  flex-shrink: 0;
  margin-left: 8px;
}
.settings-fold[open] > .settings-fold__summary::after {
  transform: rotate(-135deg);
  margin-top: 4px;
}
.settings-fold__title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-text);
}
.settings-fold__meta {
  margin-left: auto;
  font-size: 0.82rem;
  color: var(--color-muted);
}
.settings-fold__body {
  padding: 0 18px 18px;
  border-top: 1px solid var(--color-line);
}
.settings-fold__hint {
  margin: 14px 0 16px;
  color: var(--color-muted);
  font-size: 0.92rem;
}
.settings-export-toggle {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px 14px;
  margin: 0 0 12px;
  min-width: 0;
}
.settings-export-toggle__controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  flex: 0 1 auto;
  min-width: 0;
  margin: 0;
}
.settings-export-preset-hint {
  flex: 0 0 auto;
  width: fit-content !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 8px 12px;
  white-space: nowrap;
  font-weight: 600;
}
.settings-export-summary {
  display: inline-block !important;
  width: fit-content !important;
  max-width: 100% !important;
  box-sizing: border-box;
}
.settings-export-fields {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 8px 14px;
  padding: 12px 14px;
  border: 1px solid var(--color-line, #d5dde4);
  border-radius: 8px;
  background: #fff;
}
.settings-export-fields label {
  gap: 8px;
  font-size: 0.9rem;
}
.settings-export-fields code {
  font-size: 0.78rem;
  opacity: 0.7;
}
@media (max-width: 720px) {
  .settings-export-toggle {
    flex-wrap: wrap;
  }
  .settings-export-preset-hint {
    white-space: normal;
    width: fit-content;
    max-width: 100%;
  }
}
.settings-audience-list {
  display: grid;
  gap: 10px;
}
.settings-audience-head,
.settings-audience-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr) 40px;
  gap: 10px;
  align-items: center;
}
.settings-audience-head {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--color-brand);
  padding: 0;
}
.settings-audience-head span:last-child {
  width: 40px;
}
.settings-audience-row .input {
  margin: 0;
}
.admin-type-toggle {
  display: inline-flex;
  gap: 0;
  margin-bottom: 20px;
  border: 1.5px solid rgba(0, 82, 98, 0.22);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.admin-type-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 10px 18px;
  border-radius: 8px;
  background: var(--color-brand);
  color: #fff;
  font-weight: 800;
  min-width: 96px;
  justify-content: center;
}
.admin-type-toggle__btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--color-brand);
  font: inherit;
  font-weight: 800;
  padding: 10px 18px;
  cursor: pointer;
  min-width: 96px;
}
.admin-type-toggle__btn + .admin-type-toggle__btn {
  border-left: 1.5px solid rgba(0, 82, 98, 0.22);
}
.admin-type-toggle__btn.is-active {
  background: var(--color-brand);
  color: #fff;
}
.admin-type-toggle__btn:focus-visible {
  outline: 2px solid var(--color-brand-2);
  outline-offset: -2px;
  z-index: 1;
}
.check-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  padding: 12px 14px;
  border: 1.5px solid rgba(0, 82, 98, 0.16);
  border-radius: 8px;
  background: #fff;
}
.check-grid--perms {
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0;
}
.check-grid__group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}
.check-grid__break {
  height: 12px;
  flex: 0 0 auto;
}
.check-grid__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  cursor: pointer;
}
.check-grid__item input {
  width: 16px;
  height: 16px;
  accent-color: var(--color-brand);
}
.form-grid .input[type="date"],
.form-grid .input[type="time"] {
  box-sizing: border-box;
  width: auto;
  min-width: 11rem;
  max-width: 100%;
  height: 48px;
  min-height: 48px;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 1.2;
  -webkit-appearance: none;
  appearance: none;
  color-scheme: light;
}
.form-grid .input[type="time"] {
  min-width: 8rem;
}
.form-grid .input[type="date"]::-webkit-datetime-edit,
.form-grid .input[type="time"]::-webkit-datetime-edit,
.form-grid .input[type="date"]::-webkit-datetime-edit-fields-wrapper,
.form-grid .input[type="time"]::-webkit-datetime-edit-fields-wrapper {
  padding: 0;
  display: flex;
  align-items: center;
  height: 100%;
}
.form-grid .input[type="date"]::-webkit-calendar-picker-indicator,
.form-grid .input[type="time"]::-webkit-calendar-picker-indicator {
  margin: 0;
  height: 1.1em;
  width: 1.1em;
}
.form-field-row {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.nl-project-ids {
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 10px 14px;
}
.nl-project-ids > div {
  flex: 0 0 22rem;
  width: 22rem;
  max-width: 100%;
}
.form-field-row.nl-project-ids > div .input,
.nl-project-ids > div .input {
  flex: none !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
}
.form-field-row.nl-project-ids .form-hint-bubble,
.nl-project-ids .form-hint-bubble {
  flex: 0 1 auto;
  width: auto;
  max-width: 16rem;
  align-self: flex-end;
  margin: 0 0 2px;
}
.nl-project-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 10px 14px; /* wie Titel/Code-Zeile darüber */
}
.nl-project-meta__status {
  flex: 0 0 auto;
}
.nl-project-meta__status .input {
  display: block;
  width: auto;
  min-width: 0;
  max-width: none;
  /* nur so breit wie der längste Eintrag + Chevron */
  field-sizing: content;
  padding-inline: 12px 36px;
}
@supports not (field-sizing: content) {
  .nl-project-meta__status .input {
    width: 8.25rem;
  }
}
.nl-project-meta__sent {
  flex: 0 0 auto;
}
.nl-project-meta__sent .input {
  display: block;
  width: 10.5rem;
  min-width: 0;
  max-width: 100%;
}
.form-field-row .input[type="date"],
.form-field-row .input[type="time"] {
  flex: 0 0 auto;
  align-self: stretch;
  height: 48px;
}
.form-field-row .input:not([type="date"]):not([type="time"]) {
  flex: 0 1 9rem;
  width: auto;
  min-width: 7.5rem;
  max-width: 100%;
}
.form-hint-bubble--cta {
  flex: 1 1 8rem;
  width: auto;
  max-width: none;
  font-size: 0.74rem;
}
.form-hint-bubble {
  position: relative;
  flex: 0 1 20rem;
  width: 20rem;
  max-width: min(20rem, 100%);
  margin: 0;
  padding: 8px 12px;
  border-radius: 8px;
  background: #eef6f8;
  border: 1px solid rgba(0, 82, 98, 0.12);
  font-size: 0.78rem;
  line-height: 1.35;
  font-weight: 600;
  color: var(--color-brand);
  box-shadow: 0 1px 2px rgba(0, 82, 98, 0.06);
}
.form-hint-bubble--block {
  display: block;
  flex: none;
  width: 100%;
  max-width: none;
  margin: 0 0 22px;
  padding: 10px 14px;
  font-weight: 400;
  line-height: 1.45;
}
.form-hint-bubble--block.form-hint-bubble--block-up {
  width: fit-content;
  max-width: 100%;
}
.form-hint-bubble--block strong {
  font-weight: 700;
}
.form-hint-bubble::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -6px;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  background: #eef6f8;
  border-left: 1px solid rgba(0, 82, 98, 0.12);
  border-bottom: 1px solid rgba(0, 82, 98, 0.12);
  transform: rotate(45deg);
}
.form-hint-bubble.form-hint-bubble--block::before {
  top: auto;
  left: 22px;
  bottom: -5px;
  margin-top: 0;
  border-left: none;
  border-right: 1px solid rgba(0, 82, 98, 0.12);
  border-bottom: 1px solid rgba(0, 82, 98, 0.12);
  transform: rotate(45deg);
}
.form-hint-bubble.form-hint-bubble--block-up::before {
  top: -5px;
  right: auto;
  bottom: auto;
  left: 22px;
  margin-top: 0;
  border-top: 1px solid rgba(0, 82, 98, 0.12);
  border-right: none;
  border-bottom: none;
  border-left: 1px solid rgba(0, 82, 98, 0.12);
  transform: rotate(45deg);
}
.news-targets {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.news-targets__fields {
  flex: 1 1 auto;
  min-width: 0;
  display: grid;
  gap: 16px;
}
.form-hint-bubble--targets {
  flex: 0 0 11.5rem;
  width: 11.5rem;
  max-width: 11.5rem;
  align-self: center;
}
@media (max-width: 720px) {
  .news-targets {
    flex-direction: column;
  }
  .form-hint-bubble--targets {
    flex-basis: auto;
    width: auto;
    max-width: none;
    align-self: stretch;
  }
  .form-hint-bubble--targets::before {
    top: -5px;
    left: 18px;
    margin-top: 0;
    transform: rotate(135deg);
  }
}
.checks { display:flex; flex-wrap:wrap; gap:14px; }
.checks label {
  display:flex;
  align-items:center;
  gap:8px;
  font-weight:700;
  cursor: pointer;
}
.checks label .label-hint {
  font-weight: 400;
  color: var(--color-muted, #6b7a86);
  /* gleiche effektive Größe wie .label .label-hint (0.92em von 0.88rem) */
  font-size: calc(0.88rem * 0.92);
}
.checks label:has(input:disabled) {
  cursor: default;
}
.checks label[hidden],
[data-news-hide][hidden],
[data-news-only][hidden],
[data-event-only][hidden],
.news-targets[hidden],
.form-field-row input[type="time"][hidden] {
  display: none !important;
}
input[type="checkbox"] {
  width: 1.05em;
  height: 1.05em;
  accent-color: var(--color-brand);
  cursor: pointer;
}
input[type="checkbox"]:disabled {
  cursor: default;
}
label:has(> input[type="checkbox"]),
label:has(input[type="checkbox"]) {
  cursor: pointer;
}
label:has(input[type="checkbox"]:disabled) {
  cursor: default;
}
.checks input[type="checkbox"] {
  width: 1.05em;
  height: 1.05em;
  accent-color: var(--color-brand);
  cursor: pointer;
}
.login-card { width:min(100% - 32px, 460px); margin: 8vh auto; padding:26px; background:#fff; border-radius: 8px; border:1px solid rgba(0,82,98,.08); box-shadow: var(--shadow-soft); }
.member-account__container {
  max-width: 980px;
}
.member-account__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(200px, 240px);
  gap: 16px;
  align-items: start;
}
.member-account__main {
  min-height: 280px;
  padding: 22px;
}
.member-account__welcome {
  margin: 0;
  color: var(--color-text);
  font-size: 1.05rem;
  line-height: 1.45;
}
.member-deletion-fold {
  margin-top: 28px;
  padding-top: 10px;
  border-top: 1px solid var(--color-line);
}
.member-deletion-fold__summary {
  padding: 12px 0;
}
.member-deletion-fold__summary .event-form-bubble__title {
  margin: 0;
}
.member-deletion-fold[open] > .member-deletion-fold__summary::after {
  transform: rotate(-135deg);
  margin-top: 4px;
}
.member-deletion-fold__body {
  padding: 0 0 4px;
}
.member-account__nav {
  padding: 14px;
  position: sticky;
  top: 18px;
}
.member-account__menu {
  display: grid;
  gap: 6px;
}
.member-account__menu-link {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1.5px solid transparent;
  color: var(--color-brand);
  font-weight: 700;
  text-decoration: none;
}
.member-account__menu-link:hover,
.member-account__menu-link.is-active {
  border-color: rgba(0, 82, 98, 0.22);
  background: #eef6f8;
}
.member-account__menu-link.is-active {
  border-color: var(--color-brand);
}
@media (max-width: 760px) {
  .member-account__grid {
    grid-template-columns: 1fr;
  }
  .member-account__nav {
    position: static;
    order: -1;
  }
}
.reg-consents {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.reg-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--color-text);
  cursor: pointer;
}
.reg-consent input[type="checkbox"] {
  width: 1.05em;
  height: 1.05em;
  margin-top: 0.2em;
  accent-color: var(--color-brand);
  cursor: pointer;
}
.reg-consent a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.fade-in,
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-in.is-visible,
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .fade-in,
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 8px;
  background: #1a2945;
  color: #fff;
  line-height: 1;
  box-shadow: 0 10px 28px rgba(0, 40, 55, 0.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}
.back-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}
.back-top:hover {
  filter: brightness(1.06);
}
.back-top svg {
  display: block;
  flex: 0 0 auto;
}
@media (max-width: 760px) {
  .back-top {
    right: 14px;
    bottom: 14px;
    width: 36px;
    height: 36px;
  }
}
@keyframes fadeUp { from { opacity:0; transform: translateY(14px); } to { opacity:1; transform: translateY(0); } }
@media (max-width: 1080px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-layout .hero-upcoming {
    height: auto;
    min-height: 0;
    max-height: 300px;
  }
  .detail-wrap, .admin-shell, .partner-grid { grid-template-columns: 1fr; }
  .detail-side { position: static; }
  .filter-panel { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .admin-grid { grid-template-columns: 1fr 1fr; }
  .dashboard-metrics {
    grid-template-columns: 1fr;
  }
  .admin-stats-grid { grid-template-columns: 1fr; }
  .admin-sidebar {
    position: relative;
    height: auto;
    min-height: 0;
    overflow: visible;
  }
}
@media (max-width: 760px) {
  .admin-event-bubble {
    flex-wrap: wrap;
  }
  .admin-row-actions {
    width: 100%;
    justify-content: flex-end;
  }
  .admin-user-row__side {
    width: 100%;
    justify-content: flex-end;
  }
  .admin-user-row__side .admin-row-actions {
    width: auto;
  }
}
@media (max-width: 760px) {
  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand cta"
      "nav nav";
    min-height: auto;
    padding: 14px 0;
    align-items: center;
    gap: 10px 12px;
  }
  .site-header.is-member .header-inner {
    grid-template-columns: 1fr auto auto;
    grid-template-areas:
      "brand account cta"
      "nav nav nav";
  }
  .brand,
  .main-nav,
  .header-actions {
    justify-self: auto;
  }
  .brand {
    grid-area: brand;
    min-width: 0;
  }
  .brand img { width: 180px; }
  .site-header:not(.is-member) .header-actions {
    grid-area: cta;
    justify-self: end;
    align-self: center;
  }
  .site-header.is-member .header-actions {
    display: contents;
  }
  .site-header.is-member .header-actions .nav-cta {
    grid-area: cta;
    justify-self: end;
    align-self: center;
  }
  .site-header.is-member .header-account {
    grid-area: account;
    justify-self: end;
    align-self: center;
    width: auto;
    padding: 7px;
  }
  .site-header.is-member .header-account__name {
    display: none;
  }
  .site-header.is-member .header-account__icon {
    display: block;
  }
  .main-nav {
    grid-area: nav;
    gap: 12px;
    justify-content: center;
  }
  .site-header:not(.is-member) .main-nav {
    flex-wrap: nowrap;
    gap: 4px;
    justify-content: space-between;
  }
  .site-header:not(.is-member) .main-nav > a {
    padding: 7px 8px;
    font-size: 0.95rem;
  }
  .site-header:not(.is-member) .nav-icon-link {
    padding: 7px;
  }
  .site-header:not(.is-member) .nav-icon-link__label {
    display: none;
  }
  .site-header:not(.is-member) .nav-icon-link__icon {
    display: block;
  }
  .hide-on-mobile { display: none !important; }
  .show-on-mobile { display: inline-flex !important; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-track { height: min(64vh, 500px); min-height: 400px; }
  .hero-layout .hero-upcoming {
    height: auto;
    min-height: 0;
    max-height: 320px;
  }
  .hero-content { padding: 28px 24px 72px; }
  .hero-dots { right:24px; left:auto; }
  .card-grid { grid-auto-columns: min(300px, 78vw); }
  .partner-related .card-grid--wrap {
    grid-auto-columns: unset;
    grid-template-columns: repeat(auto-fill, minmax(min(240px, 100%), 1fr));
  }
  .card-rail {
    --rail-arrow: 1.85rem;
    /* Kein Negativ-Margin: Pfeile sonst außerhalb des 16px-Gutters abgeschnitten */
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .card-rail__prev,
  .card-rail__next {
    height: 4.25rem;
    /* font-size bleibt 0: sichtbarer Pfeil kommt nur aus ::before, nicht aus ‹› im Button */
  }
  .partner-item { width: 170px; }
  .filter-panel {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 10px 8px;
    padding: 12px;
  }
  .filter-panel.is-mobile-filter {
    position: relative;
    top: auto;
    /* backdrop-filter würde position:fixed am Toggle relativ zum Panel machen */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .filter-panel.is-mobile-filter > .filter-panel__search {
    flex: 1 0 100%;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .filter-panel.is-mobile-filter > .filter-float-btn {
    display: none;
  }
  .filter-panel.is-mobile-filter > .filter-panel__controls {
    display: flex;
    flex: 1 0 100%;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 8px;
    min-width: 0;
  }

  /* Eingeklappt beim Scrollen: nur sticky Toggle rechts */
  .filter-panel.is-mobile-filter.is-collapsed:not(.is-mobile-open) {
    height: 0;
    min-height: 0;
    margin: 0 0 12px;
    padding: 0;
    border: 0;
    overflow: visible;
    background: transparent;
    box-shadow: none;
    pointer-events: none;
    transform: none;
    filter: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .filter-panel.is-mobile-filter.is-collapsed:not(.is-mobile-open) > .filter-panel__search,
  .filter-panel.is-mobile-filter.is-collapsed:not(.is-mobile-open) > .filter-panel__controls {
    display: none !important;
  }
  .filter-panel.is-mobile-filter.is-collapsed:not(.is-mobile-open) > .filter-float-btn:not([hidden]) {
    display: inline-flex !important;
    pointer-events: auto;
    position: fixed;
    right: 16px;
    top: calc(var(--site-header-offset, 88px) + 10px);
    z-index: 37;
    width: 3.1rem;
    height: 3.1rem;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: #1a2945;
    color: #fff;
    box-shadow: 0 12px 28px rgba(0, 40, 55, 0.28);
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  /* Ausgeklappt: Bubble unter Header, Zeile 1 = Suche + Toggle, Zeile 2 = Icons */
  .filter-panel.is-mobile-filter.is-collapsed.is-mobile-open {
    pointer-events: auto;
    position: fixed;
    left: 16px;
    right: 16px;
    top: var(--site-header-offset, 88px);
    width: auto;
    height: auto;
    margin: 0;
    padding: 12px;
    overflow: visible;
    border: 1px solid rgba(0, 82, 98, 0.09);
    border-top: 0;
    border-radius: 0 0 8px 8px;
    z-index: 36;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 16px 36px rgba(9, 31, 42, 0.16);
    display: grid;
    grid-template-columns: minmax(0, 1fr) 2.75rem;
    grid-template-rows: auto auto;
    column-gap: 8px;
    row-gap: 10px;
    align-items: center;
  }
  .filter-panel.is-mobile-filter.is-collapsed.is-mobile-open > .filter-panel__search {
    grid-column: 1;
    grid-row: 1;
    flex: none;
    width: 100%;
    max-width: none;
    min-width: 0;
  }
  .filter-panel.is-mobile-filter.is-collapsed.is-mobile-open > .filter-float-btn:not([hidden]) {
    display: inline-flex !important;
    grid-column: 2;
    grid-row: 1;
    position: relative;
    z-index: auto;
    width: 2.75rem;
    height: 2.75rem;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: var(--color-brand-2);
    color: #fff;
    box-shadow: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .filter-panel.is-mobile-filter.is-collapsed.is-mobile-open > .filter-panel__controls {
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 8px;
    align-items: center;
  }

  .filter-float-btn svg {
    display: block;
    width: 20px;
    height: 20px;
  }
  .filter-float-btn__badge {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 1.15rem;
    height: 1.15rem;
    padding: 0 4px;
    border-radius: 999px;
    background: var(--color-brand-2);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1.15rem;
    text-align: center;
    box-sizing: border-box;
  }
  .filter-float-btn.has-filters:not(.is-open) {
    box-shadow: 0 12px 28px rgba(91, 192, 222, 0.35);
  }
  .filter-panel--news {
    grid-template-columns: unset;
  }
  .filter-panel > .input,
  .filter-panel > .filter-panel__search {
    flex: 1 0 100%;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .filter-select {
    width: 2.75rem;
    height: 2.75rem;
    margin: 0;
  }
  .filter-select__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    color: var(--color-brand);
  }
  .filter-select__icon svg {
    display: block;
  }
  .filter-select.is-active .filter-select__icon {
    color: var(--color-brand-2);
  }
  .filter-select.is-active select {
    border-color: var(--color-brand-2);
  }
  .filter-select select {
    width: 100%;
    height: 100%;
    padding: 0;
    color: transparent;
    caret-color: transparent;
    appearance: none;
    -webkit-appearance: none;
    background-image: none;
    cursor: pointer;
  }
  .filter-select select option {
    color: var(--color-text);
  }
  .filter-check {
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    margin: 0;
    position: relative;
    justify-content: center;
    border: 1px solid var(--color-line);
    border-radius: 8px;
    background: #fff;
    box-sizing: border-box;
  }
  .filter-check input[type="checkbox"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
  }
  .filter-check__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-brand);
    pointer-events: none;
  }
  .filter-check__icon svg {
    display: block;
  }
  .filter-check__label {
    display: none;
  }
  .filter-check.is-active,
  .filter-check:has(input:checked) {
    border-color: var(--color-brand-2);
  }
  .filter-check.is-active .filter-check__icon,
  .filter-check:has(input:checked) .filter-check__icon {
    color: var(--color-brand-2);
  }
  .filter-panel .filter-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 4.5rem;
    width: 4.5rem;
    min-width: 4.5rem;
    height: 2.75rem;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: #1a2945;
    color: #fff;
    box-shadow: 0 10px 28px rgba(0, 40, 55, 0.18);
    box-sizing: border-box;
  }
  .filter-panel .filter-submit:hover,
  .filter-panel .filter-submit:focus-visible {
    color: #fff;
    filter: brightness(1.06);
  }
  .filter-submit__icon {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .filter-submit__icon svg {
    display: block;
    width: 20px;
    height: 20px;
  }
  .filter-submit__label {
    display: none;
  }
  .form-grid { grid-template-columns: 1fr; }
  .event-commerce-row { grid-template-columns: 1fr; }
  .event-commerce-arrow { display: none; }
  .event-news-link-row { grid-template-columns: 1fr; }
  .filter-panel.is-stuck { border-radius: 0 0 8px 8px; }
  .list-item {
    grid-template-columns: 1fr;
    height: auto;
  }
  .list-item__image {
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: 0;
  }
  .list-item__body {
    height: auto;
  }
  .partner-card { grid-template-columns: 1fr; }
  .list-item__body {
    padding: 18px 18px 20px;
    border-left: 0;
    border-top: 1px solid rgba(0, 82, 98, 0.28);
  }
  .footer-card { flex-direction: column; }
  .footer-blue { max-width: none; width: 100%; }
  .footer-address,
  .footer-col { flex: 1 1 auto; min-width: 0; border: 0; }
  .footer-social--on-brand {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    margin-top: 2px;
  }
  .footer-social--on-brand a {
    color: #fff;
  }
  .footer-social--on-brand a:hover {
    color: #fff;
    opacity: 0.85;
    transform: translateY(-1px);
  }
  .footer-address .footer-social {
    display: none;
  }
  .footer-address {
    align-self: stretch;
    width: 100%;
    max-width: none;
    padding: 14px 28px 4px;
    text-align: left;
  }
  .footer-address-row {
    display: block;
    width: 100%;
    gap: 0;
  }
  .footer-address p {
    text-align: left;
    width: 100%;
  }
  .footer-links {
    display: flex;
    width: 100%;
    margin-left: 0;
    align-items: flex-start;
  }
  .footer-overview,
  .footer-legal {
    flex: 1 1 0;
    min-width: 0;
    margin-left: 0;
    padding: 8px 20px 18px 28px;
  }
  .footer-legal {
    padding-right: 28px;
  }
  .footer-copy { white-space: normal; }
}
