:root {
  --fp-blue: #082f63;
  --fp-blue-2: #0d427e;
  --fp-blue-soft: #eef4fa;
  --fp-yellow: #f6c62f;
  --fp-yellow-dark: #d7aa1e;
  --fp-text: #243142;
  --fp-muted: #687586;
  --fp-border: #dfe6ee;
  --fp-bg: #f6f8fb;
  --fp-white: #fff;
  --fp-shadow: 0 10px 30px rgba(20, 42, 70, .09);
  --fp-nav-font-size: 15px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--fp-text);
  background: #fff;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--fp-blue-2); transition: .2s ease; }
a:hover, a:focus { color: var(--fp-blue); text-decoration: none; }
img { max-width: 100%; height: auto; }
h1,h2,h3,h4,h5,h6 {
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--fp-blue);
  font-weight: 600;
  line-height: 1.2;
  margin-top: 0;
}
p { margin: 0 0 1.25rem; }

/* Typografie: Bootstrap-Standardgrößen bewusst überschreiben */
h1 { font-size: 28px; }
h2 { font-size: 24px; }

.fp-container {
  width: min(1280px, calc(100% - 56px));
  margin: 0 auto;
}

/* Header */
#header {
  height: 68px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 2px 14px rgba(20,42,70,.08);
  z-index: 997;
  transition: height .2s ease, box-shadow .2s ease;
}
#header.header-scrolled { height: 60px; box-shadow: 0 5px 20px rgba(20,42,70,.12); }
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--fp-blue); }
.brand:hover { color: var(--fp-blue); }
.brand-icon {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--fp-yellow);
  color: var(--fp-blue);
  font-size: 19px;
  flex: 0 0 38px;
}
.brand-copy { display: flex; flex-direction: column; line-height: 1.08; }
.brand-copy strong { font-family: "Montserrat", sans-serif; font-size: 18px; font-weight: 700; letter-spacing: -.3px; }
.brand-copy small { color: var(--fp-muted); font-size: 10px; font-weight: 600; margin-top: 3px; letter-spacing: .02em; }

.main-nav > ul { margin: 0; padding: 0; list-style: none; display: flex; align-items: center; gap: 4px; }
.main-nav > ul > li { position: relative; }
.main-nav a {
  display: block;
  padding: 10px 13px;
  border-radius: 9px;
  color: #243142;
  background: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: var(--fp-nav-font-size);
  font-weight: 600;
}
.main-nav > ul > li.active > a,
.main-nav > ul > li > a:hover,
.main-nav > ul > li > a:focus {
  background: var(--fp-yellow);
  color: var(--fp-blue);
}
.main-nav .drop-down ul {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  min-width: 220px;
  margin: 0; padding: 8px;
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--fp-shadow);
  list-style: none;
}
.main-nav .drop-down:hover > ul { display: block; }
.main-nav .drop-down ul a {
  padding: 10px 12px;
  background: #fff;
  color: var(--fp-text);
  border-radius: 8px;
}
.main-nav .drop-down ul li.active > a,
.main-nav .drop-down ul a:hover,
.main-nav .drop-down ul a:focus {
  background: var(--fp-yellow);
  color: var(--fp-blue);
}

/* Mobile navigation – mobile-nav.js from Cielo */
.mobile-nav-toggle {
  position: fixed; right: 22px; top: 20px; z-index: 9998;
  border: 0; background: transparent; font-size: 19px; outline: none !important;
  color: var(--fp-blue);
}
.mobile-nav {
  position: fixed; top: 0; bottom: 0; z-index: 9999; overflow-y: auto;
  left: -280px; width: 280px; padding-top: 18px;
  background: var(--fp-blue); transition: .35s;
}
.mobile-nav * { margin: 0; padding: 0; list-style: none; }
.mobile-nav a { display: block; color: #fff; padding: 12px 20px; font-weight: 600; }
.mobile-nav a:hover, .mobile-nav .active > a { color: var(--fp-yellow); }
.mobile-nav .drop-down > a:after { content: "\f107"; font-family: FontAwesome; padding-left: 8px; }
.mobile-nav .drop-down ul { display: none; overflow: hidden; }
.mobile-nav-overly {
  width: 100%; height: 100%; z-index: 9997; top: 0; left: 0; position: fixed;
  background: rgba(4,24,48,.72); overflow: hidden; display: none;
}
.mobile-nav-active { overflow: hidden; }
.mobile-nav-active .mobile-nav { left: 0; }

/* Hero */
.fp-hero {
  margin-top: 68px;
  height: 325px;
  min-height: 325px;
  position: relative;
  display: flex;
  align-items: center;
  background-image: url("../img/hero-fahrradprogramm.jpg");
  background-size: cover;
  background-position: 58% 70%;
  overflow: hidden;
}
.fp-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(4,32,68,.88) 0%, rgba(4,32,68,.62) 38%, rgba(4,32,68,.16) 68%, rgba(4,32,68,.03) 100%);
}
.fp-hero-inner { position: relative; z-index: 1; width: min(1280px, calc(100% - 56px)); }
.fp-hero-copy { max-width: 520px; color: #fff; padding: 28px 0; }
.eyebrow {
  display: inline-block;
  color: var(--fp-yellow);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 11px;
}
.eyebrow.dark { color: var(--fp-blue-2); }
.fp-hero h1 { color: #fff; font-size: clamp(34px, 3vw, 40px); letter-spacing: -.035em; margin-bottom: 13px; }
.fp-hero p { max-width: 600px; font-size: 16px; line-height: 1.55; margin-bottom: 22px; color: rgba(255,255,255,.95); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary-fp, .btn-secondary-fp {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 40px; padding: 0 18px; border-radius: 8px;
  font-family: "Montserrat", sans-serif; font-weight: 700; font-size: var(--fp-nav-font-size);
}
.btn-primary-fp { background: var(--fp-yellow); color: var(--fp-blue); box-shadow: 0 8px 22px rgba(0,0,0,.14); }
.btn-primary-fp:hover { background: #ffd84a; color: var(--fp-blue); transform: translateY(-1px); }
.btn-secondary-fp { border: 1px solid rgba(255,255,255,.72); color: #fff; background: rgba(255,255,255,.08); backdrop-filter: blur(5px); }
.btn-secondary-fp:hover { background: #fff; color: var(--fp-blue); }

/* Quicklinks */
.quicklinks { background: #fff; position: relative; z-index: 3; }
.quicklinks-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 0; transform: translateY(-25px);
  background: #fff; border-radius: 11px; box-shadow: var(--fp-shadow); overflow: hidden;
}
.quicklink {
  min-height: 82px; display: flex; align-items: center; gap: 12px;
  padding: 17px 21px; color: var(--fp-text); border-right: 1px solid var(--fp-border);
  background: #fff;
}
.quicklink:last-child { border-right: 0; }
.quicklink:hover { background: #fffaf0; color: var(--fp-text); }
.quicklink-icon {
  width: 38px; height: 38px; border-radius: 9px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--fp-blue-soft); color: var(--fp-blue); font-size: 15px; flex: 0 0 38px;
}
.quicklink strong { display: block; font-family: "Montserrat", sans-serif; color: var(--fp-blue); font-size: 15px; }
.quicklink small { display: block; color: var(--fp-muted); margin-top: 2px; }

/* Content */
.content-section { padding: 30px 0 54px; background: var(--fp-bg); }
.fp-home .content-section { padding-top: 10px; }
.section-heading { max-width: 760px; margin-bottom: 24px; }
.section-heading h2 { font-size: clamp(26px, 2.3vw, 34px); margin-bottom: 8px; letter-spacing: -.025em; }
.section-heading p { color: var(--fp-muted); font-size: 15px; }

/*
 * WebsiteBaker Content-Bloecke
 * 1 = Hauptinhalt
 * 2 = Rechts
 * 3 = Links
 * 4 = Vollbreite oben
 * 5 = Vollbreite unten
 *
 * Die Seitenbreite wird durch .fp-container auf 1280 px begrenzt.
 * CSS Grid verteilt die vorhandenen Bloecke automatisch:
 * - ohne Seitenblock: 100 % Hauptinhalt
 * - ein Seitenblock: 250 px / Rest Hauptinhalt
 * - beide Seitenbloecke: 220 px / Rest / 220 px
 */
.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

/* Nur linker Block */
.content-layout:has(.content-side-left):not(:has(.content-side-right)) {
  grid-template-columns: 250px minmax(0, 1fr);
}

/* Nur rechter Block */
.content-layout:not(:has(.content-side-left)):has(.content-side-right) {
  grid-template-columns: minmax(0, 1fr) 250px;
}

/* Linker und rechter Block */
.content-layout:has(.content-side-left):has(.content-side-right) {
  grid-template-columns: 220px minmax(0, 1fr) 220px;
}

.content-main,
.content-side,
.content-block {
  min-width: 0;
}

.content-block.fulltop {
  width: 100%;
  margin-bottom: 24px;
  background: #fff;
  border: 1px solid var(--fp-border);
  border-radius: 11px;
  padding: 22px 26px;
  box-shadow: 0 5px 18px rgba(20,42,70,.04);
}

.content-block.fullbottom {
  width: 100%;
  margin-top: 24px;
  background: #fff;
  border: 1px solid var(--fp-border);
  border-radius: 11px;
  padding: 22px 26px;
  box-shadow: 0 5px 18px rgba(20,42,70,.04);
}

.content-side {
  background: #fff;
  border: 1px solid var(--fp-border);
  border-radius: 11px;
  padding: 20px;
  box-shadow: 0 5px 18px rgba(20,42,70,.04);
  font-size: 14px;
  line-height: 1.55;
}

.content-side h2,
.content-side h3,
.content-side h4 {
  margin-top: 0;
  margin-bottom: 10px;
}

.content-side h2 { font-size: 18px; }
.content-side h3 { font-size: 16px; }
.content-side h4 { font-size: 15px; }

.content-main > :first-child,
.content-side > :first-child,
.content-block > :first-child {
  margin-top: 0;
}

.content-main > :last-child,
.content-side > :last-child,
.content-block > :last-child {
  margin-bottom: 0;
}

.content-main h1 { font-size: 28px; margin-top: 0; }
.content-main h2 { font-size: 24px; margin-top: 1.5em; }
.content-main h3 { font-size: 19px; margin-top: 1.4em; }
.content-main table { width: 100%; }
.content-main .box, .columns .box { width: 100%; }

/* Gentle generic styling for lists/cards from WB modules */
.content-main hr { border: 0; border-top: 1px solid var(--fp-border); margin: 24px 0; }
.content-main input[type="text"], .content-main input[type="search"], .content-main select, .content-main textarea {
  max-width: 100%; border: 1px solid #cbd5df; border-radius: 7px; padding: 9px 11px; background: #fff;
}
.content-main input[type="submit"], .content-main button {
  border: 0; border-radius: 7px; background: var(--fp-blue); color: #fff; padding: 9px 15px; cursor: pointer;
}

/* Hauptinhalt als weiße Inhaltskarte – auf Start- und Unterseiten */
.content-main {
  background: #fff;
  border: 1px solid var(--fp-border);
  border-radius: 11px;
  padding: 26px 30px;
  box-shadow: 0 5px 18px rgba(20,42,70,.04);
}

/* Subpages */
.subpage-hero {
  position: relative;
  margin-top: 68px;
  min-height: 150px;
  display: flex;
  align-items: center;
  padding: 34px 0;
  background:
    linear-gradient(rgba(8,47,99,.72), rgba(8,47,99,.72)),
    url("../img/hero-fahrradprogramm.jpg");
  background-size: cover;
  background-position: 58% 65%;
  background-repeat: no-repeat;
  color: #fff;
}
.subpage-hero h1,
.subpage-hero h2,
.subpage-hero h3,
.subpage-hero p,
.subpage-hero a { color: #fff; }
.subpage-hero h1 { font-size: clamp(28px, 2.5vw, 32px); margin: 0; }
.fp-subpage .content-section { background: var(--fp-bg); }

/* Home information */
.home-info { background: var(--fp-bg); padding: 48px 0; border-top: 1px solid var(--fp-border); }
.home-info-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.home-info article { background: #fff; border: 1px solid var(--fp-border); border-radius: 11px; padding: 22px; box-shadow: 0 7px 22px rgba(20,42,70,.04); }
.info-icon { width: 38px; height: 38px; border-radius: 10px; background: #fff5cd; color: var(--fp-blue); display: inline-flex; align-items: center; justify-content: center; font-size: 21px; margin-bottom: 13px; }
.home-info h3 { font-size: 20px; margin-bottom: 8px; }
.home-info p { color: var(--fp-muted); margin-bottom: 0; }

/* Footer */
#footer { background: #061f42; color: rgba(255,255,255,.78); }
.footer-top { padding: 40px 0 34px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 44px; }
.brand-footer { color: #fff; margin-bottom: 13px; }
.brand-footer .brand-copy strong { color: #fff; }
.brand-footer .brand-copy small { color: rgba(255,255,255,.62); }
.footer-brand p, .footer-meta p { max-width: 440px; color: rgba(255,255,255,.67); }
#footer h4 { color: #fff; font-size: 15px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 13px; }
#footer a { color: rgba(255,255,255,.78); }
#footer a:hover { color: var(--fp-yellow); }
.footer-links ul { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); }
.footer-bottom-inner { min-height: 46px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: 11px; color: rgba(255,255,255,.52); }

.back-to-top {
  position: fixed; display: none; right: 18px; bottom: 18px; z-index: 99;
  width: 44px; height: 44px; line-height: 44px; text-align: center; border-radius: 50%;
  background: var(--fp-yellow); color: var(--fp-blue); box-shadow: var(--fp-shadow);
}
.back-to-top:hover { color: var(--fp-blue); background: #ffd84a; }


@media (min-width: 1200px) {
  .fp-hero { background-position: 58% 70%; }
}
@media (max-width: 1199px) {
  .fp-container, .fp-hero-inner { width: min(100% - 40px, 1180px); }
  .quicklinks-grid { grid-template-columns: repeat(2,1fr); }
  .quicklink:nth-child(2) { border-right: 0; }
  .quicklink:nth-child(-n+2) { border-bottom: 1px solid var(--fp-border); }
  .content-layout { gap: 20px; }
  .content-layout:has(.content-side-left):not(:has(.content-side-right)) { grid-template-columns: 220px minmax(0,1fr); }
  .content-layout:not(:has(.content-side-left)):has(.content-side-right) { grid-template-columns: minmax(0,1fr) 220px; }
  .content-layout:has(.content-side-left):has(.content-side-right) { grid-template-columns: 200px minmax(0,1fr) 200px; }
}

@media (max-width: 991px) {
  #header, #header.header-scrolled { height: 64px; }
  .fp-hero, .subpage-hero { margin-top: 64px; }
  .brand-icon { width: 42px; height: 42px; flex-basis: 42px; font-size: 20px; }
  .brand-copy strong { font-size: 18px; }
  .brand-copy small { font-size: 10px; }
  .fp-hero { min-height: 430px; background-position: 57% 55%; }
  .fp-hero-overlay { background: rgba(4,32,68,.64); }
  .fp-hero-copy { max-width: 620px; }
  .content-layout,
  .content-layout:has(.content-side-left):not(:has(.content-side-right)),
  .content-layout:not(:has(.content-side-left)):has(.content-side-right),
  .content-layout:has(.content-side-left):has(.content-side-right) {
    grid-template-columns: 1fr;
  }
  .content-side-left { order: 1; }
  .content-main { order: 2; }
  .content-side-right { order: 3; }
  .home-info-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  .fp-container, .fp-hero-inner { width: calc(100% - 30px); }
  .fp-hero { min-height: 500px; background-position: 62% center; }
  .fp-hero-copy { padding: 42px 0; }
  .fp-hero h1 { font-size: 36px; }
  .fp-hero p { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-primary-fp, .btn-secondary-fp { width: 100%; }
  .quicklinks-grid { grid-template-columns: 1fr; transform: translateY(-24px); }
  .quicklink { border-right: 0 !important; border-bottom: 1px solid var(--fp-border); min-height: 92px; padding: 18px 20px; }
  .quicklink:last-child { border-bottom: 0; }
  .content-section { padding: 30px 0 54px; }
  .content-main { padding: 24px 20px; }
  .content-side { padding: 20px; }
  .content-block.fulltop,
  .content-block.fullbottom { padding: 22px 20px; }
  .subpage-hero { padding: 46px 0 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom-inner { padding: 16px 0; min-height: 0; flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px) {
  .brand-copy small { display: none; }
  .brand-copy strong { font-size: 15px; }
  .fp-hero h1 { font-size: 36px; }
}

/* Cookie-Hinweis --------------------------------------------------------- */
.cookie-notice {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  pointer-events: none;
}

.cookie-notice[hidden] {
  display: none !important;
}

.cookie-notice-inner {
  width: min(100%, 920px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid rgba(8, 47, 99, 0.18);
  border-radius: 12px;
  box-shadow: 0 12px 34px rgba(8, 47, 99, 0.18);
  pointer-events: auto;
}

.cookie-notice-text {
  flex: 1 1 auto;
  min-width: 0;
}

.cookie-notice-text strong {
  display: block;
  margin-bottom: 3px;
  color: var(--fp-blue);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 600;
}

.cookie-notice-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: var(--fp-text);
}

.cookie-notice-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.cookie-notice-link {
  color: var(--fp-blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-notice-link:hover,
.cookie-notice-link:focus {
  color: var(--fp-blue-dark);
  text-decoration-thickness: 2px;
}

.cookie-notice-close {
  appearance: none;
  border: 0;
  border-radius: 8px;
  background: var(--fp-yellow);
  color: var(--fp-blue);
  padding: 9px 14px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: filter .15s ease, transform .15s ease;
}

.cookie-notice-close:hover,
.cookie-notice-close:focus {
  filter: brightness(0.96);
}

.cookie-notice-close:active {
  transform: translateY(1px);
}

@media (max-width: 767.98px) {
  .cookie-notice {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .cookie-notice-inner {
    display: block;
    padding: 14px;
  }

  .cookie-notice-text p {
    font-size: 13px;
  }

  .cookie-notice-actions {
    margin-top: 12px;
    justify-content: space-between;
    gap: 10px;
    white-space: normal;
  }
}

/* ------------------------------------------------------------
   Gesamter Terminbereich
------------------------------------------------------------ */

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

.fp-events {
    width: 100%;
    min-width: 0;

    color: var(--fp-blue, #0b3568);
}


/* ------------------------------------------------------------
   Filter
------------------------------------------------------------ */

.fp-event-filter {
    margin-bottom: 18px;
    padding: 18px;

    background: #f4f7fa;

    border: 1px solid #e0e7ed;
    border-radius: 12px;
}

.fp-event-filter-grid {
    display: grid;
    grid-template-columns:
        minmax(240px, 1.25fr)
        minmax(210px, 1fr)
        minmax(170px, .85fr)
        minmax(280px, 1.45fr);
    gap: 14px;
}

.fp-filter-field {
    min-width: 0;
}

.fp-filter-field label {
    display: block;

    margin: 0 0 5px;

    font-family:
        "Montserrat",
        Arial,
        sans-serif;

    font-size: 12px;
    font-weight: 600;

    color: var(--fp-blue, #0b3568);
}

.fp-filter-field input,
.fp-filter-field select {
    width: 100%;
    height: 39px;

    padding: 0 10px;

    font-family:
        "Open Sans",
        Arial,
        sans-serif;

    font-size: 13px;

    color: #243b53;
    background: #fff;

    border: 1px solid #cfd9e2;
    border-radius: 7px;

    outline: none;
}

.fp-filter-field input:focus,
.fp-filter-field select:focus {
    border-color:
        var(--fp-blue, #0b3568);

    box-shadow:
        0 0 0 2px
        rgba(11, 53, 104, .08);
}


/* Zeitraum */

.fp-date-range {
    display: grid;

    grid-template-columns:
        minmax(90px, 1fr)
        auto
        minmax(90px, 1fr);

    align-items: center;

    gap: 6px;
}

.fp-date-separator {
    color: #718096;
}



/* Suche */

.fp-search-input {
    display: flex;

    width: 100%;
}

.fp-search-input input {
    flex: 1 1 auto;
    min-width: 0;
    border-radius: 7px 0 0 7px;
}

.fp-search-input button {
    flex: 0 0 40px;

    border: 0;

    border-radius:
        0 7px 7px 0;

    color: #fff;

    background:
        var(--fp-blue, #0b3568);

    cursor: pointer;
    height: 39px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fp-search-input button i {
    position: relative;
    top: -2px;
}

.fp-search-input button:hover {
    background: #082950;
}


/* Buttons unter Filter */

.fp-filter-actions {
    display: none;

    margin-top: 12px;

    gap: 8px;
}

.fp-filter-submit,
.fp-filter-reset {
    padding: 9px 15px;

    font-family:
        "Montserrat",
        Arial,
        sans-serif;

    font-size: 12px;
    font-weight: 600;

    border-radius: 7px;

    cursor: pointer;
}

.fp-filter-submit {
    border:
        1px solid
        var(--fp-yellow, #ffc928);

    color:
        var(--fp-blue, #0b3568);

    background:
        var(--fp-yellow, #ffc928);
}

.fp-filter-reset {
    border:
        1px solid #ccd6df;

    color: #52687a;

    background: #fff;
}


/* ------------------------------------------------------------
   Ergebnis-Kopf
------------------------------------------------------------ */

.fp-event-toolbar {
    display: flex;

    justify-content:
        space-between;

    align-items: center;

    gap: 15px;

    margin: 0 0 8px;

    padding:
        0 2px 9px;

    border-bottom:
        1px solid #dde4ea;

    font-size: 12px;

    color: #62788e;
}

.fp-event-count {
    white-space: nowrap;
}

.fp-event-sort {
    display: flex;

    align-items: center;

    gap: 5px;
}

.fp-event-sort label {
    margin: 0;

    font-size: 12px;
}

.fp-event-sort select {
    padding: 2px 3px;

    color:
        var(--fp-blue, #0b3568);

    background: transparent;

    border: 0;

    font-size: 12px;
    font-weight: 600;

    outline: 0;
}


/* ------------------------------------------------------------
   Liste
------------------------------------------------------------ */

.fp-event-list {
    width: 100%;
}

.fp-event-card {
    position: relative;

    display: grid;

    grid-template-columns:
        62px
        minmax(0, 1fr)
        auto;

    gap: 16px;

    align-items: center;

    min-height: 104px;

    padding:
        12px 8px
        12px 0;

    border-bottom:
        1px solid #dfe6ec;
}

.fp-event-card:last-child {
    border-bottom: 0;
}


/* Datum */

.fp-event-date {
    display: flex;

    flex-direction: column;

    justify-content: center;
    align-items: center;

    align-self: stretch;

    min-height: 74px;

    padding: 8px 5px;

    text-align: center;

    background: #f3f7fb;

    border-radius: 9px;
}

.fp-event-date strong {
    display: block;

    font-family:
        "Montserrat",
        Arial,
        sans-serif;

    font-size: 22px;
    font-weight: 600;

    line-height: 1;

    color:
        var(--fp-blue, #0b3568);
}

.fp-event-date span {
    display: block;

    margin-top: 3px;

    font-family:
        "Montserrat",
        Arial,
        sans-serif;

    font-size: 13px;
    font-weight: 600;

    color:
        var(--fp-blue, #0b3568);
}


/* Hauptinhalt */

.fp-event-content {
    position: relative;

    min-width: 0;
}

.fp-event-topline {
    display: flex;

    justify-content:
        space-between;

    align-items:
        flex-start;

    gap: 10px;

    min-height: 19px;
}

.fp-event-time {
    margin-bottom: 2px;

    font-size: 11px;

    color: #687b8d;
}

.fp-event-title {
    margin: 4px 0 5px;

    font-family:
        "Montserrat",
        Arial,
        sans-serif;

    font-size: 15px;
    font-weight: 600;

    line-height: 1.25;
}

.content-main .fp-event-title,
.fp-event-title {
    margin-top: 4px;
    margin-bottom: 5px;
}

.fp-event-title a {
    color:
        var(--fp-blue, #0b3568);

    text-decoration: none;
}

.fp-event-title a:hover {
    text-decoration: underline;
}

.fp-event-organizer {
    margin-bottom: 4px;

    font-size: 12px;

    color: #607486;
}

.fp-event-description {
    max-width: 720px;

    margin-top: 3px;

    font-size: 12px;
    line-height: 1.45;

    color: #617589;
}

.fp-event-meta {
    display: flex;

    flex-wrap: wrap;

    gap:
        6px 14px;

    margin-top: 7px;

    font-size: 11px;

    color: #607486;
}

.fp-event-meta span {
    white-space: nowrap;
}

.fp-event-meta i {
    min-width: 13px;

    margin-right: 3px;

    text-align: center;

    color: #70879a;
}


/* Logo */

.fp-event-logo {
    position: absolute;

    display: flex;

    right: 0;
    top: 0;

    width: 92px;
    height: 38px;

    align-items: center;
    justify-content: flex-end;
}

.fp-event-logo img {
    max-width: 88px;
    max-height: 36px;

    width: auto;
    height: auto;

    object-fit: contain;
}

.fp-event-card:has(.fp-event-logo)
.fp-event-title {
    padding-right: 105px;
}

.fp-event-card:has(.fp-event-logo)
.fp-event-description {
    padding-right: 105px;
}


/* Rechte Seite */

.fp-event-side {
    display: flex;

    flex-direction: column;

    align-items: flex-end;
    justify-content: space-between;

    align-self: stretch;

    min-width: 130px;

    padding: 2px 0;
}

.fp-event-side::before {
    content: "";
}

.fp-event-badge {
    display: inline-block;

    max-width: 150px;

    padding: 4px 10px;

    font-size: 10px;
    line-height: 1.2;

    text-align: center;

    color:
        var(--fp-blue, #0b3568);

    background: #deebf6;

    border-radius: 12px;
}

.fp-event-arrow {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    margin-top: auto;

    color:
        var(--fp-blue, #0b3568);

    border-radius: 50%;

    text-decoration: none;

    transition:
        background .15s ease,
        color .15s ease;
}

.fp-event-arrow:hover {
    color:
        var(--fp-blue, #0b3568);

    background:
        var(--fp-yellow, #ffc928);

    text-decoration: none;
}


/* Meldung */

.fp-event-message {
    padding: 15px;

    background: #f6f8fa;

    border:
        1px solid #dfe6ec;

    border-radius: 8px;
}


/* ------------------------------------------------------------
   Tablet
------------------------------------------------------------ */

@media (max-width: 1100px) {

    .fp-event-filter-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }

    .fp-filter-search {
        grid-column:
            span 2;
    }

    .fp-filter-actions {
        display: flex;
    }

}


/* ------------------------------------------------------------
   Smartphone
------------------------------------------------------------ */

@media (max-width: 650px) {

    .fp-event-filter {
        padding: 14px;
    }

    .fp-event-filter-grid {
        grid-template-columns: 1fr;

        gap: 11px;
    }

    .fp-filter-search {
        grid-column: auto;
    }

    .fp-date-range {
        grid-template-columns:
            minmax(0, 1fr)
            auto
            minmax(0, 1fr);
    }

    .fp-filter-actions {
        display: flex;

        flex-direction: column;
    }

    .fp-event-toolbar {
        align-items: flex-start;

        flex-direction: column;

        gap: 5px;
    }

    .fp-event-card {
        grid-template-columns:
            54px
            minmax(0, 1fr)
            28px;

        gap: 10px;

        min-height: 96px;

        padding-right: 0;
    }

    .fp-event-date {
        min-height: 68px;
    }

    .fp-event-date strong {
        font-size: 20px;
    }

    .fp-event-title {
        font-size: 14px;
    }

    .fp-event-description {
        display: none;
    }

    .fp-event-meta {
        gap:
            4px 10px;
    }

    .fp-event-side {
        min-width: 28px;

        justify-content: center;
    }

    .fp-event-badge {
        display: none;
    }

    .fp-event-arrow {
        margin: 0;
    }

    .fp-event-logo {
        position: static;

        width: auto;
        height: 28px;

        margin-left: auto;
    }

    .fp-event-logo img {
        max-width: 68px;
        max-height: 27px;
    }

    .fp-event-card:has(.fp-event-logo)
    .fp-event-title,

    .fp-event-card:has(.fp-event-logo)
    .fp-event-description {
        padding-right: 0;
    }

}


/* ------------------------------------------------------------
   Sehr kleine Displays
------------------------------------------------------------ */

@media (max-width: 420px) {

    .fp-date-range {
        grid-template-columns: 1fr;
    }

    .fp-date-separator {
        display: none;
    }

    .fp-event-meta span:nth-child(n+3) {
        display: none;
    }

}


/* ---------------------------------------------------------
   Wetter-Widget
--------------------------------------------------------- */

.fp-weather-widget {
    font-family: "Open Sans", Arial, sans-serif;
    color: var(--fp-blue, #14395b);
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
}

.fp-weather-widget *,
.fp-weather-widget *::before,
.fp-weather-widget *::after {
    box-sizing: border-box;
}

.fp-weather-widget-head {
    margin-bottom: 14px;
}

.fp-weather-widget-title,
.fp-weather-widget-place {
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 600;
    color: var(--fp-blue, #14395b);
    line-height: 1.15;
}

.fp-weather-widget-title {
    font-size: 20px;
    margin-bottom: 2px;
}

.fp-weather-widget-place {
    font-size: 20px;
}

.fp-weather-widget-current {
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid #dbe5ec;
}

.fp-weather-widget-current-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 10px;
}

.fp-weather-widget-icon {
    font-size: 42px;
    line-height: 1;
}

.fp-weather-widget-temp {
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    color: var(--fp-blue, #14395b);
}

.fp-weather-widget-current-text {
    text-align: center;
    font-size: 14px;
    line-height: 1.45;
}

.fp-weather-widget-current-text strong {
    display: block;
    margin-bottom: 2px;
    font-weight: 600;
}

.fp-weather-widget-current-text span {
    display: block;
}

.fp-weather-widget-forecast {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.fp-weather-widget-day {
    min-width: 0;
    text-align: center;
    padding: 10px 6px;
    border: 1px solid #dbe5ec;
    border-radius: 10px;
    background: #f9fbfd;
}

.fp-weather-widget-day-name {
    margin-bottom: 4px;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--fp-blue, #14395b);
}

.fp-weather-widget-day-icon {
    margin-bottom: 4px;
    font-size: 26px;
    line-height: 1.2;
}

.fp-weather-widget-day-temp {
    margin-bottom: 4px;
    font-size: 14px;
    line-height: 1.25;
}

.fp-weather-widget-day-temp strong {
    font-weight: 600;
}

.fp-weather-widget-day-temp span {
    margin-left: 3px;
    color: #6c7b88;
}

.fp-weather-widget-day-meta {
    font-size: 11px;
    line-height: 1.45;
    color: #6c7b88;
}

.fp-weather-widget-day-meta span {
    display: block;
    overflow-wrap: anywhere;
}

.fp-weather-widget-source {
    margin-top: 12px;
    font-size: 10px;
    color: #7b8994;
    text-align: center;
}

.fp-weather-widget-source a {
    color: inherit;
    text-decoration: underline;
}

.fp-weather-widget-source a:hover {
    color: var(--fp-blue, #14395b);
}

.fp-weather-widget-error {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

@media (max-width: 260px) {
    .fp-weather-widget-forecast {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   Ergänzungen Facelift – aktuelle Inhaltsmodule
============================================================ */

/* Veranstalter – Übersicht */
/* ---------------------------------------------------------
   Veranstalterübersicht
--------------------------------------------------------- */

.fp-organizers {
    width: 100%;
    max-width: 1020px;
    margin: 0 auto;
}


/* Einleitung */

.fp-organizer-intro {
    margin-bottom: 18px;
}

.fp-organizer-intro p {
    margin: 0;

    font-size: 16px;
    line-height: 1.5;

    color: var(--fp-text, #243142);
}


/* Kartenraster */

.fp-organizer-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 10px;
}


/* Einzelkarte */

.fp-organizer-card {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        42px;

    gap: 12px;
    align-items: start;
    min-width: 0;
    padding: 12px 12px;
    background: #fff;
    border:
        1px solid
        var(--fp-border, #dfe6ee);
    border-radius: 9px;
}


/* Karteninhalt */

.fp-organizer-card-main {
    min-width: 0;
}

.fp-organizer-name {
    margin: 0 0 5px;

    font-family:
        "Montserrat",
        Arial,
        sans-serif;

    font-size: 17px;
    font-weight: 600;
    line-height: 1.25;

    color:
        var(--fp-blue, #082f63);
}

.fp-organizer-name a {
    color: inherit;

    text-decoration: none;
}

.fp-organizer-name a:hover {
    text-decoration: underline;
}


/* Anschrift */

.fp-organizer-address {
    display: flex;

    gap: 7px;

    margin-top: 3px;

    font-size: 13px;
    line-height: 1.45;

    color:
        var(--fp-muted, #687586);
}

.fp-organizer-address i {
    flex: 0 0 13px;

    margin-top: 3px;

    text-align: center;

    color: #70879a;
}


/* Homepage */

.fp-organizer-homepage {
    display: flex;

    align-items: center;

    gap: 5px;

    margin-top: 3px;

    min-width: 0;

    font-size: 13px;
    line-height: 1.4;
}

.fp-organizer-homepage i {
    flex: 0 0 13px;

    text-align: center;

    color: #70879a;
}

.fp-organizer-homepage a {
    min-width: 0;

    color:
        var(--fp-blue, #082f63);

    text-decoration: none;

    overflow-wrap: anywhere;
}

.fp-organizer-homepage a:hover {
    text-decoration: underline;
}


/* Pfeil rechts */

.fp-organizer-card-side {
    display: flex;

    align-items: center;
    justify-content: center;

    align-self: stretch;
}

.fp-organizer-arrow {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    margin: auto;

    font-size: 24px;

    color:
        var(--fp-blue, #082f63);

    border-radius: 50%;

    text-decoration: none;

    transition:
        background .15s ease,
        color .15s ease;
}

.fp-organizer-arrow:hover {
    color:
        var(--fp-blue, #082f63);

    background:
        var(--fp-yellow, #f6c62f);

    text-decoration: none;
}


/* Meldungen */

.fp-organizer-message {
    padding: 15px;

    background: #f6f8fa;

    border:
        1px solid
        var(--fp-border, #dfe6ee);

    border-radius: 8px;
}


/* Tablet / Smartphone */

@media (max-width: 800px) {

    .fp-organizer-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 480px) {

    .fp-organizer-card {
        grid-template-columns:
            minmax(0, 1fr)
            34px;

        gap: 8px;
        padding: 11px 9px;
    }

    .fp-organizer-name {
        font-size: 16px;
    }

    .fp-organizer-arrow {
        width: 30px;
        height: 30px;
        font-size: 21px;
    }

}

.content-main .fp-organizer-card .fp-organizer-name {
    margin: 0 0 5px;
}

/* ProCalendar – Monatsansicht */
.m-procalendar,
.m-procalendar *,
.m-procalendar *::before,
.m-procalendar *::after { box-sizing: border-box; }
.m-procalendar { width: 100%; max-width: 1020px; margin: 0 auto; }
.m-procalendar .w3--content { width: 100%; }
.show_calendar {
    width: 100%;
    max-width: 650px;
    margin: 0 auto 22px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--fp-border);
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(11,53,104,.045);
}
.calendarmod {
    width: 100%;
    table-layout: auto;
    margin: 0;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}
.calendarmod-header td {
    height: 42px;
    padding: 7px 10px;
    background: var(--fp-blue);
    color: #fff;
    border: 0 !important;
    border-radius: 0 !important;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}
.calendarmod-header td[colspan="5"] { width: auto !important; white-space: nowrap; }
.calendarmod-header td:first-child,
.calendarmod-header td:last-child { width: 14.2857% !important; }
.calendarmod-header .arrows,
.calendarmod-header td > span {
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}
.calendarmod-header a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 26px !important;
    min-width: 26px !important;
    height: 26px !important;
    margin: 0 1px !important;
    padding: 0 !important;
    color: #fff !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 50% !important;
    box-shadow: none !important;
    text-decoration: none !important;
}
.calendarmod-header a:hover,
.calendarmod-header a:focus { color: var(--fp-blue) !important; background: var(--fp-yellow) !important; }
.calendarmod .calendar_weekday {
    width: 14.2857% !important;
    height: 33px;
    padding: 5px;
    background: var(--fp-blue-soft);
    border: 0;
    border-right: 1px solid var(--fp-border);
    border-bottom: 1px solid var(--fp-border);
    text-align: center;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--fp-blue);
}
.calendarmod .calendar_weekday:last-child { border-right: 0; }
.calendarmod tbody td { width: 14.2857% !important; }
.calendarmod .calendar_emptyday,
.calendarmod .calendar_markday,
.calendarmod .calendar_noday {
    height: 44px;
    padding: 5px;
    text-align: center;
    vertical-align: middle;
    background: #fff;
    border: 0;
    border-right: 1px solid var(--fp-border);
    border-bottom: 1px solid var(--fp-border);
    font-size: 13px;
    color: #607486;
}
.calendarmod tbody tr td:last-child { border-right: 0; }
.calendarmod tbody tr:last-child td { border-bottom: 0; }
.calendarmod .calendar_noday { background: #fafbfd; }
.calendarmod .calendar_markday { padding: 4px; }
.calendarmod .calendar_markday a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin: 0 auto;
    font-weight: 600;
    color: var(--fp-blue);
    background: var(--fp-blue-soft);
    border-radius: 50%;
    text-decoration: none;
}
.calendarmod .calendar_markday a:hover,
.calendarmod .calendar_markday a:focus { color: var(--fp-blue); background: var(--fp-yellow); }
.calendarmod .procal_today { position: relative; font-weight: 700; color: var(--fp-blue); background: #fff9df; }
.calendarmod .procal_today::after { content: ""; display: block; width: 5px; height: 5px; margin: 2px auto 0; background: var(--fp-yellow-dark); border-radius: 50%; }
.calendarmod .calendar_markday.procal_today a { background: var(--fp-yellow); }
.actionlist { width: 100%; margin-top: 20px; }
.actionlist_table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--fp-border);
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(11,53,104,.045);
}
.actionlist_table thead th { padding: 10px 12px; background: var(--fp-blue); color: #fff; border: 0; font-family: "Montserrat", Arial, sans-serif; font-size: 12px; font-weight: 600; text-align: left; }
.actionlist_table tbody tr { background: #fff !important; }
.actionlist_table tbody tr:hover { background: #f8fafc !important; }
.actionlist_table tbody td { padding: 8px 12px; background: transparent !important; border: 0; border-bottom: 1px solid var(--fp-border); vertical-align: top; font-size: 13px; line-height: 1.4; color: #52687a; }
.actionlist_table tbody tr:last-child td { border-bottom: 0; }
.actionlist_table .actionlist_date { width: 80px; font-weight: 600; color: var(--fp-blue); }
.actionlist_table .actionlist_time { width: 68px; white-space: nowrap; color: #687b8d; }
.actionlist_table .actionlist_name a { font-family: "Montserrat", Arial, sans-serif; font-size: 14px; font-weight: 600; color: var(--fp-blue); text-decoration: none; }
.actionlist_table .actionlist_name a:hover { text-decoration: underline; }
.actionlist_table .actionlist_actiontype { width: 135px; }
.actionlist_table tbody .actionlist_actiontype { font-size: 0; }
.actionlist_table tbody .actionlist_actiontype::after { content: "Fahrradtour"; display: inline-block; padding: 4px 9px; font-size: 11px; line-height: 1.2; color: var(--fp-blue); background: #deebf6; border-radius: 12px; }
.actionlist_table tfoot { display: none; }

/* ProCalendar – Veranstaltungsdetail */
.fp-event-detail { width: 100%; max-width: 1020px; margin: 0 auto; }
.fp-event-detail-head { margin-bottom: 22px; padding-bottom: 14px; border-bottom: 1px solid var(--fp-border); }
.fp-event-detail-eyebrow { display: block; margin-bottom: 6px; font-family: "Montserrat", Arial, sans-serif; font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--fp-muted); }
.fp-event-detail-head h1 { margin: 0; font-size: 25px; font-weight: 600; line-height: 1.2; color: var(--fp-blue); }
.fp-event-detail-grid { display: grid; grid-template-columns: minmax(0, 1fr) 285px; gap: 32px; align-items: start; }
.fp-event-detail-main { min-width: 0; }
.fp-event-detail-organizer { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.fp-event-detail-organizer img { max-width: 120px; max-height: 55px; width: auto; height: auto; object-fit: contain; }
.fp-event-detail-organizer-name { font-size: 14px; line-height: 1.45; color: #607486; }
.fp-event-detail-content { font-size: 15px; line-height: 1.6; color: #334e68; }
.fp-event-detail-content p { margin: 0 0 12px; }
.fp-event-detail-info { padding: 16px 18px; background: #f4f7fa; border: 1px solid var(--fp-border); border-radius: 10px; font-size: 13px; line-height: 1.5; color: #52687a; }
.fp-event-detail-info > * { margin-top: 0; margin-bottom: 10px; }
.fp-event-detail-info > *:last-child { margin-bottom: 0; }
.fp-event-detail-info strong,
.fp-event-detail-info b { color: var(--fp-blue); font-weight: 600; }
.fp-event-detail-back { margin-top: 28px; padding-top: 14px; border-top: 1px solid var(--fp-border); font-size: 14px; font-weight: 600; }
.fp-event-detail-back a { color: var(--fp-blue); text-decoration: none; }

/* News */
.news-loop-header { width: 100%; max-width: 1020px; margin: 0 auto; }
.news-loop-header .post-top { margin-top: 14px; padding: 16px 18px 5px; background: #fff; border: 1px solid var(--fp-border); border-bottom: 0; border-radius: 10px 10px 0 0; }
.news-loop-header .post-top:first-child { margin-top: 0; }
.news-loop-header .post-title { margin: 0 0 4px; font-family: "Montserrat", Arial, sans-serif; font-size: 18px; font-weight: 600; line-height: 1.3; }
.news-loop-header .post-title a { color: var(--fp-blue); text-decoration: none; }
.news-loop-header .post-date { font-size: 12px; line-height: 1.4; color: var(--fp-muted); }
.news-loop-header .post-top + div { margin: 0 0 14px; padding: 7px 18px 16px; background: #fff; border: 1px solid var(--fp-border); border-top: 0; border-radius: 0 0 10px 10px; box-shadow: 0 3px 10px rgba(11,53,104,.04); }
.news-loop-header .post-short { font-family: "Open Sans", Arial, sans-serif; font-size: 14px; line-height: 1.6; color: #40566a; }
.news-loop-header .post-short span { font-family: inherit !important; font-size: inherit !important; color: inherit !important; }
.news-loop-header .post-short p { margin: 0 0 10px; font-family: inherit !important; font-size: inherit !important; line-height: inherit !important; color: inherit !important; }
.news-loop-header .post-short a:not(.readmore) { color: var(--fp-blue-2) !important; text-decoration: underline !important; }
.news-loop-header .post-short .readmore { display: inline-flex; align-items: center; margin-top: 6px; padding: 6px 11px; font-family: "Montserrat", Arial, sans-serif; font-size: 12px; font-weight: 600; color: var(--fp-blue) !important; background: var(--fp-yellow); border-radius: 7px; text-decoration: none !important; }
.news-loop-header .post-short .readmore::after { content: "›"; margin-left: 7px; font-size: 17px; line-height: 1; }
.news-loop-header .MsoNormal { margin: 0 0 10px !important; font-family: inherit !important; font-size: inherit !important; line-height: inherit !important; color: inherit !important; }

/* Statische Infokarten */
.fp-info-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.fp-info-card { padding: 16px 18px; background: #fff; border: 1px solid var(--fp-border); border-radius: 10px; box-shadow: 0 3px 10px rgba(11,53,104,.04); }
.content-main .fp-info-card h3,
.fp-info-card h3 { margin: 0 0 10px; font-size: 18px; font-weight: 600; color: var(--fp-blue); }
.fp-info-card p { margin: 0 0 10px; font-size: 14px; line-height: 1.55; color: #40566a; }
.fp-info-card p:last-child { margin-bottom: 0; }
.fp-info-card a { color: var(--fp-blue-2); }

/* Linkseite */
.fp-link-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.fp-link-card { padding: 16px 18px; background: #fff; border: 1px solid var(--fp-border); border-radius: 10px; box-shadow: 0 3px 10px rgba(11,53,104,.04); }
.content-main .fp-link-card h3,
.fp-link-card h3 { margin: 0 0 12px; font-size: 18px; font-weight: 600; color: var(--fp-blue); }
.fp-link-list { display: grid; gap: 11px; margin: 0; padding: 0; list-style: none; }
.fp-link-list li { padding-bottom: 10px; border-bottom: 1px solid #edf1f4; }
.fp-link-list li:last-child { padding-bottom: 0; border-bottom: 0; }
.fp-link-list a { display: inline-block; font-family: "Montserrat", Arial, sans-serif; font-size: 14px; font-weight: 600; color: var(--fp-blue-2); text-decoration: none; }
.fp-link-list a:hover { text-decoration: underline; }
.fp-link-list span { display: block; margin-top: 2px; font-size: 13px; line-height: 1.45; color: #607486; }

/* Archiv */
.fp-archive-intro { margin-bottom: 26px; }
.fp-archive-feature { padding: 17px 19px; background: #f4f7fa; border: 1px solid var(--fp-border); border-radius: 10px; }
.content-main .fp-archive-feature h3,
.fp-archive-feature h3 { margin: 0 0 8px; font-size: 18px; font-weight: 600; }
.fp-archive-feature p { margin: 0 0 10px; font-size: 14px; line-height: 1.55; color: #40566a; }
.fp-archive-feature-link { display: inline-flex; align-items: center; padding: 6px 11px; font-family: "Montserrat", Arial, sans-serif; font-size: 12px; font-weight: 600; color: var(--fp-blue); background: var(--fp-yellow); border-radius: 7px; text-decoration: none; }
.fp-archive-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin-top: 18px; }
.fp-archive-year { padding: 12px 14px; background: #fff; border: 1px solid var(--fp-border); border-radius: 9px; box-shadow: 0 2px 7px rgba(11,53,104,.035); }
.fp-archive-year > strong { display: block; margin-bottom: 5px; font-family: "Montserrat", Arial, sans-serif; font-size: 17px; font-weight: 600; color: var(--fp-blue); }
.fp-archive-year > a,
.fp-archive-links a { display: inline-block; font-size: 13px; font-weight: 600; color: var(--fp-blue-2); }
.fp-archive-links { display: flex; flex-wrap: wrap; gap: 4px 10px; }
.fp-archive-unavailable { display: block; font-size: 12px; color: var(--fp-muted); }
.fp-archive-pdf { display: inline-flex !important; align-items: center; gap: 6px; text-decoration: none; }
.fp-archive-pdf::before { content: "PDF"; display: inline-flex; align-items: center; justify-content: center; min-width: 30px; height: 20px; padding: 0 5px; font-family: "Montserrat", Arial, sans-serif; font-size: 9px; font-weight: 700; line-height: 1; letter-spacing: .03em; color: #fff; background: #b3261e; border-radius: 4px; }
.fp-archive-pdf:hover::before { background: #8f1d18; }

/* Aktuelle Terminliste – Feinschliff */
.fp-search-input button { height: 39px; }
.fp-search-input button i { position: relative; top: -2px; }
.content-main .fp-event-title,
.fp-event-title { margin-top: 4px; margin-bottom: 5px; }

@media (max-width: 1100px) {
    .fp-event-filter-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .fp-filter-search { grid-column: span 2; }
}

@media (max-width: 850px) {
    .fp-archive-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 800px) {
    .fp-organizers,
    .fp-info-grid,
    .fp-link-grid { grid-template-columns: 1fr; }
    .fp-organizer-detail-grid,
    .fp-event-detail-grid { grid-template-columns: 1fr; gap: 20px; }
    .show_calendar { max-width: 650px; }
}

@media (max-width: 700px) {
    .show_calendar { max-width: 100%; }
}

@media (max-width: 650px) {
    .fp-event-filter-grid { grid-template-columns: 1fr; gap: 11px; }
    .fp-filter-search { grid-column: auto; }
    .content-main .fp-event-title,
    .fp-event-title {
        margin-top: 2px;
        margin-bottom: 4px;
        font-size: 18px;
        line-height: 1.18;
        hyphens: auto;
        -webkit-hyphens: auto;
        overflow-wrap: break-word;
        word-break: normal;
    }
    .fp-event-title a { hyphens: inherit; -webkit-hyphens: inherit; }
    .show_calendar { border-radius: 4px; }
    .calendarmod-header td { padding: 5px 3px; font-size: 13px; }
    .calendarmod-header a { width: 24px !important; min-width: 24px !important; height: 24px !important; margin: 0 !important; }
    .calendarmod .calendar_weekday { height: 31px; padding: 3px; font-size: 11px; }
    .calendarmod .calendar_emptyday,
    .calendarmod .calendar_markday,
    .calendarmod .calendar_noday { height: 40px; padding: 2px; font-size: 12px; }
    .calendarmod .calendar_markday a { width: 30px; height: 30px; }
    .actionlist_table { display: block; border: 0; background: transparent; box-shadow: none; overflow: visible; }
    .actionlist_table thead,
    .actionlist_table tfoot { display: none; }
    .actionlist_table tbody { display: grid; gap: 8px; }
    .actionlist_table tbody tr { display: grid; grid-template-columns: 64px minmax(0, 1fr); column-gap: 10px; row-gap: 3px; padding: 10px 12px; background: #fff !important; border: 1px solid var(--fp-border); border-radius: 8px; }
    .actionlist_table tbody td { display: block; width: auto !important; padding: 0; border: 0; font-size: 12px; }
    .actionlist_table tbody .actionlist_date { grid-column: 1; grid-row: 1 / span 3; align-self: start; font-size: 14px; font-weight: 600; }
    .actionlist_table tbody .actionlist_time:nth-of-type(2) { grid-column: 2; grid-row: 1; }
    .actionlist_table tbody .actionlist_time:nth-of-type(3) { display: none; }
    .actionlist_table tbody .actionlist_name { grid-column: 2; grid-row: 2; }
    .actionlist_table tbody .actionlist_name a { font-size: 13px; line-height: 1.3; }
    .actionlist_table tbody .actionlist_actiontype { grid-column: 2; grid-row: 3; margin-top: 3px; }
    .fp-event-detail-head h1 { font-size: 21px; }
    .fp-event-detail-organizer img { max-width: 90px; max-height: 42px; }
    .fp-event-detail-content { font-size: 14px; }
    .fp-event-detail-info { padding: 14px; font-size: 13px; }
    .news-loop-header .post-title { font-size: 16px; }
    .news-loop-header .post-date { font-size: 11px; }
    .news-loop-header .post-short { font-size: 13px; line-height: 1.55; }
    .fp-info-card,
    .fp-link-card { padding: 14px; }
    .content-main .fp-info-card h3,
    .fp-info-card h3,
    .content-main .fp-link-card h3,
    .fp-link-card h3 { font-size: 16px; }
}

@media (max-width: 520px) {
    .fp-archive-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Veranstalterverwaltung
============================================================ */

.fp-organizer-admin,
.fp-organizer-admin *,
.fp-organizer-admin *::before,
.fp-organizer-admin *::after {
    box-sizing: border-box;
}

.fp-organizer-admin {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;

    color:
        var(--fp-text, #243142);
}


/* ------------------------------------------------------------
   Kopf
------------------------------------------------------------ */

.fp-admin-head {
    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 20px;
}

.fp-admin-head h2 {
    margin: 2px 0 0;

    font-family:
        "Montserrat",
        Arial,
        sans-serif;

    font-size: 25px;
    font-weight: 600;
    line-height: 1.25;

    color:
        var(--fp-blue, #082f63);
}

.fp-admin-eyebrow {
    display: block;

    margin-bottom: 3px;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .08em;

    text-transform: uppercase;

    color:
        var(--fp-muted, #687586);
}


/* ------------------------------------------------------------
   Buttons
------------------------------------------------------------ */

.fp-admin-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    min-height: 39px;

    padding: 0 14px;

    font-family:
        "Open Sans",
        Arial,
        sans-serif;

    font-size: 13px;
    font-weight: 600;

    line-height: 1;

    border:
        1px solid transparent;

    border-radius: 7px;

    cursor: pointer;

    text-decoration: none;

    transition:
        background .15s ease,
        border-color .15s ease,
        color .15s ease;
}

.fp-admin-button:hover {
    text-decoration: none;
}

.fp-admin-button-primary {
    color: #fff;

    background:
        var(--fp-blue, #082f63);

    border-color:
        var(--fp-blue, #082f63);
}

.fp-admin-button-primary:hover {
    color:
        var(--fp-blue, #082f63);

    background:
        var(--fp-yellow, #f6c62f);

    border-color:
        var(--fp-yellow, #f6c62f);
}

.fp-admin-button-secondary {
    color:
        var(--fp-blue, #082f63);

    background: #fff;

    border-color:
        var(--fp-border, #dfe6ee);
}

.fp-admin-button-secondary:hover {
    background:
        var(--fp-blue-soft, #eef4fa);

    border-color: #c8d6e5;
}

.fp-admin-button-danger-outline {
    color: #a52620;

    background: #fff;

    border-color: #e0b8b5;
}

.fp-admin-button-danger-outline:hover {
    color: #fff;

    background: #a52620;

    border-color: #a52620;
}


/* ------------------------------------------------------------
   Meldungen
------------------------------------------------------------ */

.fp-admin-message {
    margin-bottom: 18px;

    padding: 12px 15px;

    font-size: 13px;
    line-height: 1.5;

    border: 1px solid;

    border-radius: 8px;
}

.fp-admin-message-success {
    color: #285b38;

    background: #f0f8f2;

    border-color: #cbe3d1;
}

.fp-admin-message-warning {
    color: #765c12;

    background: #fff9e8;

    border-color: #ead99c;
}

.fp-admin-message-error {
    color: #842b27;

    background: #fff2f1;

    border-color: #e7c1be;
}


/* ------------------------------------------------------------
   Suche
------------------------------------------------------------ */

.fp-admin-search {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 18px;
}

.fp-admin-search-input {
    display: flex;

    width: 100%;
    max-width: 440px;
}

.fp-admin-search-input input {
    flex: 1 1 auto;

    min-width: 0;
    height: 39px;

    padding: 0 11px;

    font-family:
        "Open Sans",
        Arial,
        sans-serif;

    font-size: 13px;

    color:
        var(--fp-text, #243142);

    background: #fff;

    border:
        1px solid #cfd9e2;

    border-right: 0;

    border-radius:
        7px 0 0 7px;

    outline: none;
}

.fp-admin-search-input input:focus {
    border-color:
        var(--fp-blue, #082f63);
}

.fp-admin-search-input button {
    display: flex;

    flex: 0 0 40px;

    align-items: center;
    justify-content: center;

    width: 40px;
    height: 39px;

    padding: 0;

    color: #fff;

    background:
        var(--fp-blue, #082f63);

    border: 0;

    border-radius:
        0 7px 7px 0;

    cursor: pointer;
}

.fp-admin-search-input button i {
    position: relative;

    top: -2px;
}

.fp-admin-search-input button:hover {
    color:
        var(--fp-blue, #082f63);

    background:
        var(--fp-yellow, #f6c62f);
}

.fp-admin-search-reset {
    font-size: 12px;

    color:
        var(--fp-muted, #687586);

    text-decoration: none;
}

.fp-admin-search-reset:hover {
    color:
        var(--fp-blue, #082f63);

    text-decoration: underline;
}


/* ------------------------------------------------------------
   Übersichtstabelle
------------------------------------------------------------ */

.fp-admin-table-wrap {
    width: 100%;

    overflow-x: auto;

    background: #fff;

    border:
        1px solid
        var(--fp-border, #dfe6ee);

    border-radius: 10px;

    box-shadow:
        0 3px 10px
        rgba(11, 53, 104, .035);
}

.fp-admin-table {
    width: 100%;

    margin: 0;

    border: 0;

    border-collapse: collapse;

    background: #fff;
}

.fp-admin-table th {
    padding: 10px 12px;

    font-family:
        "Montserrat",
        Arial,
        sans-serif;

    font-size: 11px;
    font-weight: 600;

    text-align: left;

    color:
        var(--fp-blue, #082f63);

    background:
        var(--fp-blue-soft, #eef4fa);

    border: 0;

    border-bottom:
        1px solid
        var(--fp-border, #dfe6ee);
}

.fp-admin-table td {
    padding: 9px 12px;

    font-size: 12px;

    vertical-align: middle;

    color:
        var(--fp-text, #243142);

    border: 0;

    border-bottom:
        1px solid #edf1f5;
}

.fp-admin-table tbody tr:last-child td {
    border-bottom: 0;
}

.fp-admin-table tbody tr:hover {
    background: #fafcfe;
}

.fp-admin-table a {
    color:
        var(--fp-blue, #082f63);
}

.fp-admin-table-name {
    font-weight: 600;
}

.fp-admin-table-name a {
    text-decoration: none;
}

.fp-admin-table-name a:hover {
    text-decoration: underline;
}

.fp-admin-col-id {
    width: 55px;

    white-space: nowrap;
}

.fp-admin-col-logo {
    width: 90px;

    text-align: center;
}

.fp-admin-col-actions {
    width: 135px;

    text-align: right;
}


/* ------------------------------------------------------------
   Logo in Tabelle
------------------------------------------------------------ */

.fp-admin-table-logo {
    display: block;

    max-width: 70px;
    max-height: 32px;

    width: auto;
    height: auto;

    margin: 0 auto;

    object-fit: contain;
}

.fp-admin-no-logo {
    color: #a0abb5;
}


/* ------------------------------------------------------------
   Aktionsbuttons
------------------------------------------------------------ */

.fp-admin-actions {
    display: flex;

    align-items: center;
    justify-content: flex-end;

    gap: 4px;
}

.fp-admin-inline-form {
    display: inline;

    margin: 0;
    padding: 0;
}

.fp-admin-icon-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 31px;
    height: 31px;

    padding: 0;

    font-size: 13px;

    color:
        var(--fp-blue, #082f63);

    background: transparent;

    border: 0;

    border-radius: 50%;

    cursor: pointer;

    text-decoration: none;

    transition:
        background .15s ease,
        color .15s ease;
}

.fp-admin-icon-button:hover {
    color:
        var(--fp-blue, #082f63);

    background:
        var(--fp-yellow, #f6c62f);

    text-decoration: none;
}

.fp-admin-icon-danger {
    color: #a52620;
}

.fp-admin-icon-danger:hover {
    color: #fff;

    background: #a52620;
}


/* ------------------------------------------------------------
   Leerzustand
------------------------------------------------------------ */

.fp-admin-empty {
    padding: 30px 20px;

    text-align: center;

    color:
        var(--fp-muted, #687586);

    background: #f7f9fb;

    border:
        1px solid
        var(--fp-border, #dfe6ee);

    border-radius: 9px;
}


/* ============================================================
   Bearbeitungsformular
============================================================ */

.fp-admin-form {
    padding: 20px;

    background: #f6f8fb;

    border:
        1px solid
        var(--fp-border, #dfe6ee);

    border-radius: 11px;
}

.fp-admin-form-grid {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );

    gap: 15px 18px;
}

.fp-admin-field {
    min-width: 0;
}

.fp-admin-field-wide {
    grid-column:
        1 / -1;
}

.fp-admin-field label {
    display: block;

    margin: 0 0 5px;

    font-family:
        "Montserrat",
        Arial,
        sans-serif;

    font-size: 12px;
    font-weight: 600;

    color:
        var(--fp-blue, #082f63);
}

.fp-admin-field input[type="text"],
.fp-admin-field input[type="email"],
.fp-admin-field input[type="url"],
.fp-admin-field input[type="date"],
.fp-admin-field textarea {
    width: 100%;

    font-family:
        "Open Sans",
        Arial,
        sans-serif;

    font-size: 13px;

    color:
        var(--fp-text, #243142);

    background: #fff;

    border:
        1px solid #cfd9e2;

    border-radius: 7px;

    outline: none;
}

.fp-admin-field input[type="text"],
.fp-admin-field input[type="email"],
.fp-admin-field input[type="url"],
.fp-admin-field input[type="date"] {
    height: 39px;

    padding: 0 10px;
}

.fp-admin-field textarea {
    min-height: 110px;

    padding: 9px 10px;

    line-height: 1.5;

    resize: vertical;
}

.fp-admin-field input:focus,
.fp-admin-field textarea:focus {
    border-color:
        var(--fp-blue, #082f63);

    box-shadow:
        0 0 0 2px
        rgba(8, 47, 99, .07);
}


/* ------------------------------------------------------------
   Logo
------------------------------------------------------------ */

.fp-admin-logo-box {
    display: flex;

    align-items: center;

    gap: 18px;

    min-height: 85px;

    padding: 12px;

    background: #fff;

    border:
        1px solid
        var(--fp-border, #dfe6ee);

    border-radius: 8px;
}

.fp-admin-logo-preview {
    display: flex;

    flex: 0 0 140px;

    align-items: center;
    justify-content: center;

    min-height: 60px;
}

.fp-admin-logo-preview img {
    max-width: 130px;
    max-height: 60px;

    width: auto;
    height: auto;

    object-fit: contain;
}

.fp-admin-logo-info {
    display: flex;

    flex-direction: column;

    gap: 3px;

    font-size: 12px;

    color:
        var(--fp-muted, #687586);
}

.fp-admin-logo-info strong {
    color:
        var(--fp-text, #243142);
}

.fp-admin-logo-empty {
    display: flex;

    align-items: center;

    gap: 9px;

    color:
        var(--fp-muted, #687586);

    font-size: 13px;
}

.fp-admin-logo-empty i {
    font-size: 22px;

    color: #91a0ad;
}

.fp-admin-upload {
    margin-top: 10px;
}

.fp-admin-upload input[type="file"] {
    display: block;

    margin-bottom: 5px;

    font-size: 12px;
}

.fp-admin-upload small {
    display: block;

    font-size: 11px;
    line-height: 1.45;

    color:
        var(--fp-muted, #687586);
}


/* ------------------------------------------------------------
   Formularaktionen
------------------------------------------------------------ */

.fp-admin-form-actions {
    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 8px;

    margin-top: 20px;

    padding-top: 16px;

    border-top:
        1px solid
        var(--fp-border, #dfe6ee);
}


/* ============================================================
   Responsive
============================================================ */

@media (max-width: 800px) {

    .fp-admin-head {
        align-items: stretch;

        flex-direction: column;

        gap: 12px;
    }

    .fp-admin-head .fp-admin-button {
        align-self: flex-start;
    }

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

    .fp-admin-field-wide {
        grid-column: auto;
    }

}


@media (max-width: 650px) {

    .fp-admin-search {
        align-items: stretch;

        flex-direction: column;
    }

    .fp-admin-search-input {
        max-width: none;
    }


    /*
     * Tabelle auf Mobil als Karten darstellen
     */

    .fp-admin-table-wrap {
        overflow: visible;

        background: transparent;

        border: 0;

        border-radius: 0;

        box-shadow: none;
    }

    .fp-admin-table,
    .fp-admin-table tbody,
    .fp-admin-table tr,
    .fp-admin-table td {
        display: block;

        width: 100%;
    }

    .fp-admin-table thead {
        display: none;
    }

    .fp-admin-table tr {
        margin-bottom: 10px;

        padding: 11px 12px;

        background: #fff;

        border:
            1px solid
            var(--fp-border, #dfe6ee);

        border-radius: 9px;
    }

    .fp-admin-table td {
        display: grid;

        grid-template-columns:
            95px
            minmax(0, 1fr);

        gap: 8px;

        padding: 4px 0;

        border: 0;

        text-align: left;
    }

    .fp-admin-table td::before {
        content:
            attr(data-label);

        font-size: 11px;
        font-weight: 600;

        color:
            var(--fp-muted, #687586);
    }

    .fp-admin-col-logo {
        text-align: left;
    }

    .fp-admin-table-logo {
        margin: 0;
    }

    .fp-admin-col-actions {
        text-align: left;
    }

    .fp-admin-actions {
        justify-content: flex-start;
    }

    .fp-admin-logo-box {
        align-items: flex-start;

        flex-direction: column;
    }

    .fp-admin-logo-preview {
        flex-basis: auto;

        justify-content: flex-start;
    }

}


@media (max-width: 420px) {

    .fp-admin-form {
        padding: 14px;
    }

    .fp-admin-table td {
        grid-template-columns:
            78px
            minmax(0, 1fr);
    }

    .fp-admin-form-actions {
        align-items: stretch;

        flex-direction: column;
    }

    .fp-admin-form-actions .fp-admin-button {
        width: 100%;
    }

}