@font-face {
  font-family: "GrueneType Campaign";
  src: url("../fonts/gruenetype-black-condensed-italic.otf") format("opentype");
  font-display: swap;
  font-style: italic;
  font-weight: 900;
}

:root {
  --bhs-black: #002216;
  --bhs-fir: #005437;
  --bhs-clover: #008939;
  --bhs-grass: #8abd24;
  --bhs-sand: #f5f1e9;
  --bhs-green-sand: #f3faf6;
  --bhs-magenta: #e6007e;
  --bhs-white: #fff;
  --bhs-text: #243d35;
  --bhs-border: rgba(0, 84, 55, 0.18);
  --bhs-shadow: 0 18px 45px rgba(0, 34, 22, 0.12);
  --bhs-content: 1440px;
  --bhs-gutter: clamp(1.25rem, 3vw, 3rem);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 8rem;
}

body {
  color: var(--bhs-black);
  background: var(--bhs-sand);
}

.home .u-fade {
  opacity: 1 !important;
  transform: none !important;
}

/* Header and local sender */
.top-bar,
.top-bar.stuck {
  position: sticky !important;
  top: 0;
  width: 100%;
  height: 7rem !important;
  border: 0;
  border-bottom: 1px solid var(--bhs-border);
  border-radius: 0 !important;
  color: var(--bhs-black);
  background: rgba(245, 241, 233, 0.98) !important;
  box-shadow: none;
  z-index: 1000;
  transition: box-shadow 180ms ease, background-color 180ms ease;
}

.top-bar.is-scrolled,
.top-bar.stuck {
  box-shadow: 0 10px 28px rgba(0, 34, 22, 0.1);
}

.top-bar > .container-fluid {
  width: min(var(--bhs-content), calc(100% - (2 * var(--bhs-gutter))));
  height: 100%;
  margin-inline: auto;
  padding: 0 !important;
  flex-wrap: nowrap !important;
}

.top-bar .brand-left,
.top-bar.stuck .brand-left,
.hamburger-menu .brand-left {
  position: relative !important;
  inset: auto !important;
  display: grid !important;
  grid-template-columns: auto 4.5rem;
  grid-template-areas:
    "title flower"
    "subtitle flower";
  align-items: center;
  column-gap: 0.9rem;
  width: fit-content;
  margin: 0 !important;
  color: var(--bhs-white);
  text-align: left !important;
  text-decoration: none;
  opacity: 1 !important;
}

.top-bar .brand-left::after {
  content: "";
  grid-area: flower;
  width: 4.5rem;
  aspect-ratio: 1;
  background: url("../images/sonnenblume-kampagne.png") center / contain no-repeat;
  filter: drop-shadow(0 5px 8px rgba(0, 34, 22, 0.12));
}

.top-bar .brand-left .label-top,
.top-bar .brand-left .label-bottom {
  right: auto;
  width: fit-content;
  max-width: none;
  color: var(--bhs-white);
  line-height: 1;
  clip-path: polygon(0 0, 100% 0, calc(100% - 0.7rem) 100%, 0 100%);
  transition: background-color 160ms ease;
}

.top-bar .brand-left .label-top::before,
.top-bar .brand-left .label-bottom::before {
  content: none;
}

.top-bar .brand-left .label-top {
  grid-area: title;
  padding: 0.42rem 1.45rem 0.32rem 0.8rem;
  font-family: "GrueneType Campaign", sans-serif;
  font-size: 2rem;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  background: var(--bhs-fir);
}

.top-bar .brand-left .label-bottom {
  grid-area: subtitle;
  margin-top: 0.18rem;
  padding: 0.42rem 1.25rem 0.42rem 0.8rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  white-space: nowrap;
  background: var(--bhs-clover);
}

.top-bar .brand-left:hover .label-top,
.top-bar .brand-left:focus-visible .label-top {
  background: var(--bhs-clover);
}

.top-bar .brand-left:hover .label-bottom,
.top-bar .brand-left:focus-visible .label-bottom {
  background: var(--bhs-fir);
}

.top-bar .right-bar .concave-30px {
  display: none;
}

@media (min-width: 950px) {
  .top-bar .right-bar,
  .top-bar.stuck .right-bar {
    position: relative;
    inset: auto;
    width: auto;
    max-width: none;
    height: auto;
    margin-left: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent !important;
    backdrop-filter: none;
  }

  .top-bar .right-bar__content,
  .top-bar.stuck .right-bar__content {
    width: auto;
    height: auto;
    margin: 0;
    gap: 0;
  }

  .top-bar .right-bar__content .main-menu {
    margin: 0;
  }

  .top-bar .right-bar__content .main-menu .nav {
    gap: clamp(1.1rem, 2vw, 2rem);
    margin: 0;
    align-items: center;
  }

  .top-bar .right-bar a,
  .top-bar.stuck .right-bar a {
    position: relative;
    padding: 0.65rem 0;
    color: var(--bhs-black) !important;
    font-size: 0.95rem;
    letter-spacing: 0.015em;
  }

  .top-bar .right-bar a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0.35rem;
    left: 0;
    height: 0.18rem;
    background: var(--bhs-magenta);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 160ms ease;
  }

  .top-bar .right-bar a:hover::after,
  .top-bar .right-bar a:focus-visible::after {
    transform: scaleX(1);
  }
}

.hamburger-menu .hamburger {
  width: 4.75rem;
  height: 4.75rem;
  padding: 0.75rem;
  border-radius: 0;
  color: var(--bhs-black);
  background: var(--bhs-sand) !important;
}

.hamburger-menu .hamburger span {
  left: 0.85rem;
  width: 3rem;
  height: 0.38rem;
  border-radius: 0;
  background: var(--bhs-clover);
}

.hamburger-menu .hamburger span:nth-of-type(1) {
  top: 1rem;
  left: 0.85rem;
}

.hamburger-menu .hamburger span:nth-of-type(2) {
  top: 2.15rem;
  left: 0.85rem;
}

.hamburger-menu .hamburger span:nth-of-type(3) {
  top: 3.3rem;
  left: 0.85rem;
}

.hamburger-menu .hamburger .concave-30px {
  display: none;
}

.colorscheme-light.hamburger-menu .top-bar .right-bar.unfold {
  color: var(--bhs-white);
  background: var(--bhs-fir) !important;
}

.colorscheme-light.hamburger-menu .top-bar .right-bar.unfold a {
  color: var(--bhs-white) !important;
  background: transparent;
}

/* Full-width campaign canvas */
.home #content.container {
  width: 100%;
  max-width: none;
  padding: 0;
  overflow: hidden;
}

.home #content > .row,
.home #content > .row > .col-12 {
  margin: 0;
  padding: 0;
}

.home .site-main,
.home .entry-content,
.home article.page {
  margin: 0;
  padding: 0;
}

.home .entry-content > * {
  margin-block-start: 0;
}

/* Sunflower offsets alignfull blocks by the theme gutter. The campaign canvas
 * already owns its full-width spacing, so keep every stage on the same axis. */
.home .entry-content > .alignfull {
  position: relative !important;
  left: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
  transform: none !important;
}

/* Hero */
.bhs-hero {
  position: relative;
  isolation: isolate;
  width: 100% !important;
  min-height: min(49rem, calc(100svh - 7rem));
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
  color: var(--bhs-white);
  background-image: url("../images/hero-bhs.webp");
  background-position: center;
  background-size: cover;
}

.bhs-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 34, 22, 0.96) 0%, rgba(0, 34, 22, 0.86) 38%, rgba(0, 34, 22, 0.4) 66%, rgba(0, 34, 22, 0.1) 100%),
    linear-gradient(0deg, rgba(0, 34, 22, 0.5), transparent 55%);
}

.bhs-hero::after {
  content: "";
  position: absolute;
  right: clamp(-5rem, -2vw, -1rem);
  bottom: clamp(-8rem, -6vw, -3rem);
  z-index: -1;
  width: min(34vw, 34rem);
  aspect-ratio: 1;
  background: url("../images/sonnenblume-kampagne.png") center / contain no-repeat;
  opacity: 0.22;
  pointer-events: none;
}

.bhs-hero__inner {
  position: relative;
  z-index: 1;
  width: min(var(--bhs-content), calc(100% - (2 * var(--bhs-gutter))));
  min-height: inherit;
  margin: 0 auto;
  padding: clamp(4rem, 7vw, 7rem) 0 clamp(3rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: minmax(0, 49rem) 1fr;
  grid-template-rows: auto auto;
  align-content: center;
  column-gap: 3rem;
}

.bhs-hero__copy {
  grid-column: 1;
  max-width: 49rem;
}

.bhs-kicker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
  margin: 0 0 1.35rem !important;
  color: var(--bhs-fir);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.bhs-kicker::before {
  content: "";
  flex: 0 0 2rem;
  height: 0.22rem;
  background: var(--bhs-magenta);
}

.bhs-hero .bhs-kicker {
  color: var(--bhs-white);
}

.bhs-hero h1 {
  max-width: 49rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.12em;
  color: var(--bhs-white);
  font-family: "GrueneType Campaign", sans-serif;
  font-size: clamp(5rem, 7.5vw, 8.6rem);
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.005em;
  line-height: 0.86 !important;
  text-transform: uppercase;
}

.bhs-hero h1 .bhs-hero__line {
  display: block;
  width: auto;
  margin: 0;
  padding: 0;
  color: inherit;
  font: inherit;
  line-height: 0.86;
  white-space: nowrap;
  background: transparent;
  transform: none;
}

.bhs-hero h1 .bhs-hero__line--accent {
  color: var(--bhs-grass);
}

.bhs-hero__lead {
  max-width: 43rem;
  margin: 2rem 0 0 !important;
  color: var(--bhs-white);
  font-size: clamp(1.15rem, 1.5vw, 1.35rem);
  line-height: 1.5;
  text-shadow: 0 2px 16px rgba(0, 34, 22, 0.55);
}

.bhs-hero .wp-block-buttons,
.bhs-cta .wp-block-buttons {
  margin-top: 2rem;
  gap: 0.8rem;
}

.bhs-hero .wp-block-button__link,
.bhs-cta .wp-block-button__link,
.bhs-place-card .wp-block-button__link {
  border: 2px solid var(--bhs-magenta);
  border-radius: 999px;
  padding: 0.78rem 1.25rem;
  color: var(--bhs-white);
  font-weight: 700;
  line-height: 1.2;
  background: var(--bhs-magenta);
  box-shadow: none;
  transition: transform 160ms ease, box-shadow 160ms ease, color 160ms ease, background-color 160ms ease;
}

.bhs-hero .is-style-outline .wp-block-button__link,
.bhs-cta .is-style-outline .wp-block-button__link {
  border-color: var(--bhs-white);
  color: var(--bhs-white);
  background: transparent;
}

.bhs-hero .wp-block-button__link:hover,
.bhs-hero .wp-block-button__link:focus-visible,
.bhs-cta .wp-block-button__link:hover,
.bhs-cta .wp-block-button__link:focus-visible,
.bhs-place-card .wp-block-button__link:hover,
.bhs-place-card .wp-block-button__link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 34, 22, 0.22);
}

.bhs-hero__bottom {
  grid-column: 1;
  width: fit-content;
  margin-top: 2.75rem;
}

.bhs-countdown {
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  min-width: 0;
  padding: 0.75rem 1rem;
  border: 0;
  border-radius: 0.35rem;
  color: var(--bhs-white);
  background: var(--bhs-magenta);
  box-shadow: 0 12px 28px rgba(0, 34, 22, 0.2);
  transform: none;
}

.bhs-countdown strong {
  grid-row: auto;
  margin: 0;
  color: var(--bhs-white);
  font-family: "GrueneType Campaign", sans-serif;
  font-size: 3.15rem;
  font-style: italic;
  font-weight: 900;
  line-height: 0.75;
}

.bhs-countdown span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.1;
  text-transform: uppercase;
}

.bhs-countdown time {
  grid-column: auto;
  margin: 0 0 0 0.3rem;
  padding: 0 0 0 0.85rem;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  font-weight: 700;
  white-space: nowrap;
}

/* Shared section rhythm */
.bhs-section {
  position: relative;
  width: 100% !important;
  margin: 0 !important;
  padding: clamp(5rem, 8vw, 8rem) var(--bhs-gutter) !important;
}

.bhs-section > .wp-block-group__inner-container,
.bhs-section__inner {
  position: relative;
  z-index: 1;
  width: min(var(--bhs-content), 100%);
  margin-inline: auto;
}

.bhs-section--sand {
  background: var(--bhs-sand);
}

.bhs-section--green-sand {
  background: var(--bhs-green-sand);
}

.bhs-section h2,
.bhs-election-band h2,
.bhs-cta h2,
.bhs-content-stage h2 {
  max-width: 67rem;
  margin: 0 0 1.5rem !important;
  color: var(--bhs-fir);
  font-family: "GrueneType Campaign", sans-serif;
  font-size: clamp(4rem, 6.4vw, 6.75rem);
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.005em;
  line-height: 0.9;
  text-wrap: balance;
}

.bhs-section__intro {
  max-width: 49rem;
  margin: 0 0 clamp(2.75rem, 5vw, 4.5rem) !important;
  color: var(--bhs-text);
  font-size: clamp(1.08rem, 1.6vw, 1.32rem);
  line-height: 1.55;
}

/* Equal municipality cards */
.bhs-place-grid,
.bhs-promise-grid,
.bhs-candidate-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(1.25rem, 2.2vw, 2rem);
  align-items: stretch;
}

.bhs-place-card {
  position: relative;
  min-width: 0;
  width: auto !important;
  min-height: 24rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  padding: clamp(1.75rem, 2.8vw, 2.5rem) !important;
  overflow: hidden;
  border: 1px solid var(--bhs-border);
  border-top: 0.5rem solid var(--bhs-clover);
  border-radius: 0.3rem;
  background: var(--bhs-white);
  box-shadow: var(--bhs-shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.bhs-place-card::before,
.bhs-place-card::after {
  content: none !important;
}

.bhs-place-card:hover,
.bhs-place-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(0, 34, 22, 0.16);
}

.bhs-place-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 1.25rem !important;
  color: var(--bhs-black);
  font-family: "GrueneType Campaign", sans-serif;
  font-size: 3rem;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.005em;
  line-height: 0.9;
  overflow-wrap: anywhere;
}

.bhs-place-card p {
  position: relative;
  z-index: 1;
  margin: 0 !important;
  color: var(--bhs-text);
  font-size: 1.02rem;
  line-height: 1.55;
}

.bhs-place-card .wp-block-buttons {
  position: relative;
  z-index: 1;
  margin: auto 0 0 !important;
  padding-top: 2rem;
}

.bhs-place-card .wp-block-button {
  margin: 0;
}

.bhs-place-card .wp-block-button__link {
  padding: 0.68rem 1rem;
  font-size: 0.94rem;
}

.bhs-place-card .wp-block-button__link::after {
  content: " ↗";
}

/* Candidate stage */
.bhs-section--dark {
  isolation: isolate;
  overflow: hidden;
  color: var(--bhs-white);
  background: var(--bhs-black);
}

.bhs-section--dark::before {
  content: "";
  position: absolute;
  right: -5rem;
  bottom: -8rem;
  z-index: 0;
  width: min(38vw, 38rem);
  aspect-ratio: 1;
  background: url("../images/sonnenblume-kampagne.png") center / contain no-repeat;
  opacity: 0.06;
  pointer-events: none;
}

.bhs-section--dark .bhs-kicker {
  color: var(--bhs-white);
}

.bhs-section--dark h2 {
  color: var(--bhs-white);
}

.bhs-section--dark .bhs-section__intro {
  color: rgba(255, 255, 255, 0.84);
}

.bhs-candidate-grid {
  margin-top: 3rem;
}

.bhs-candidate-card {
  overflow: hidden;
  border-radius: 0.3rem;
  background: var(--bhs-white);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease;
}

.bhs-candidate-card:hover,
.bhs-candidate-card:focus-within {
  transform: translateY(-4px);
}

.bhs-candidate-card a {
  display: block;
  height: 100%;
  color: var(--bhs-black);
  text-decoration: none;
}

.bhs-candidate-card__portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--bhs-white);
  font-family: "GrueneType Campaign", sans-serif;
  font-size: 9rem;
  background: linear-gradient(145deg, var(--bhs-fir), var(--bhs-clover));
}

.bhs-candidate-card__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bhs-candidate-card__content {
  padding: 1.75rem;
}

.bhs-candidate-card__place {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.3rem 0.6rem;
  color: var(--bhs-white);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--bhs-clover);
}

.bhs-candidate-card h3 {
  margin: 0;
  color: var(--bhs-black);
  font-family: "GrueneType Campaign", sans-serif;
  font-size: clamp(2.5rem, 3.2vw, 3.8rem);
  font-style: italic;
  font-weight: 900;
  line-height: 0.9;
}

.bhs-candidate-card__role {
  margin: 0.75rem 0;
  color: var(--bhs-fir);
  font-weight: 700;
}

.bhs-candidate-card blockquote {
  margin: 1rem 0;
  padding: 0;
  border: 0;
  color: var(--bhs-text);
  font-size: 1rem;
  font-style: normal;
  line-height: 1.5;
}

.bhs-text-link {
  color: var(--bhs-magenta);
  font-weight: 700;
}

.bhs-candidate-empty {
  position: relative;
  max-width: 60rem;
  box-sizing: border-box;
  margin-top: 3rem;
  padding: clamp(2rem, 4vw, 3.75rem);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-top: 0.5rem solid var(--bhs-magenta);
  border-radius: 0.3rem;
  background: rgba(0, 84, 55, 0.45);
}

.bhs-candidate-empty::after {
  content: "↗";
  position: absolute;
  right: 0.18em;
  bottom: -0.28em;
  color: rgba(255, 255, 255, 0.09);
  font-size: 13rem;
  line-height: 1;
}

.bhs-candidate-empty h3 {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  margin: 0 0 1rem;
  color: var(--bhs-white);
  font-family: "GrueneType Campaign", sans-serif;
  font-size: clamp(3rem, 5vw, 5.2rem);
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.005em;
  line-height: 0.9;
}

.bhs-candidate-empty p {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.06rem;
  line-height: 1.55;
}

/* Three aligned promises */
.bhs-promise-card {
  min-height: 25rem;
  box-sizing: border-box;
  display: grid;
  grid-template-rows: 4.25rem minmax(8.2rem, auto) 1fr;
  padding: clamp(1.75rem, 2.8vw, 2.5rem) !important;
  border: 1px solid var(--bhs-border);
  border-top: 0.5rem solid var(--bhs-fir);
  border-radius: 0.3rem;
  background: var(--bhs-white);
  box-shadow: var(--bhs-shadow);
}

.bhs-promise-card:nth-child(2),
.bhs-promise-card:nth-child(3) {
  border-top-color: var(--bhs-fir);
}

.bhs-promise-card__number {
  margin: 0 !important;
  color: var(--bhs-magenta);
  font-family: "GrueneType Campaign", sans-serif;
  font-size: 4rem;
  font-style: italic;
  font-weight: 900;
  line-height: 0.9;
}

.bhs-promise-card h3 {
  align-self: start;
  margin: 0 !important;
  color: var(--bhs-black);
  font-family: "GrueneType Campaign", sans-serif;
  font-size: clamp(2.6rem, 3.1vw, 3.65rem);
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.005em;
  line-height: 0.9;
}

.bhs-promise-card p:last-child {
  align-self: end;
  margin: 1.5rem 0 0 !important;
  color: var(--bhs-text);
  font-size: 1.02rem;
  line-height: 1.55;
}

/* Election, events and conversion */
.bhs-election-band {
  position: relative;
  width: 100% !important;
  margin: 0 !important;
  padding: clamp(3.5rem, 6vw, 6rem) var(--bhs-gutter) !important;
  overflow: hidden;
  color: var(--bhs-white);
  background: var(--bhs-magenta);
}

.bhs-election-band::after {
  content: "13.9.";
  position: absolute;
  top: 50%;
  right: 0;
  color: rgba(255, 255, 255, 0.13);
  font-family: "GrueneType Campaign", sans-serif;
  font-size: clamp(9rem, 20vw, 20rem);
  font-style: italic;
  font-weight: 900;
  line-height: 0.7;
  transform: translateY(-50%);
}

.bhs-election-band > .wp-block-group__inner-container,
.bhs-election-band > .bhs-section__inner {
  position: relative;
  z-index: 1;
  width: min(var(--bhs-content), 100%);
  margin-inline: auto;
}

.bhs-election-band h2 {
  max-width: 59rem;
  margin: 0 !important;
  color: var(--bhs-white);
}

.bhs-content-stage {
  width: 100% !important;
  margin: 0 !important;
  background: var(--bhs-white);
}

.bhs-content-stage .wp-block-sunflower-next-events,
.bhs-content-stage .wp-block-sunflower-latest-posts {
  width: min(var(--bhs-content), calc(100% - (2 * var(--bhs-gutter))));
  margin-inline: auto;
  padding-block: clamp(4rem, 7vw, 6.5rem);
}

.bhs-content-stage h2 {
  max-width: none;
  color: var(--bhs-fir);
  text-align: left !important;
}

.bhs-cta {
  position: relative;
  isolation: isolate;
  width: 100% !important;
  margin: 0 !important;
  padding: clamp(5rem, 8vw, 8rem) var(--bhs-gutter) !important;
  overflow: hidden;
  color: var(--bhs-white);
  background: linear-gradient(120deg, var(--bhs-fir), var(--bhs-clover));
}

.bhs-cta::after {
  content: "";
  position: absolute;
  right: -4rem;
  bottom: -7rem;
  z-index: -1;
  width: min(35vw, 34rem);
  aspect-ratio: 1;
  background: url("../images/sonnenblume-kampagne.png") center / contain no-repeat;
  opacity: 0.13;
}

.bhs-cta > .wp-block-group__inner-container,
.bhs-cta > .bhs-section__inner {
  width: min(var(--bhs-content), 100%);
  margin-inline: auto;
}

.bhs-cta .bhs-kicker,
.bhs-cta h2 {
  color: var(--bhs-white);
}

.bhs-cta p {
  max-width: 45rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.16rem;
  line-height: 1.55;
}

/* Municipality and contact pages */
article:has(> .entry-content > .bhs-subpage-hero) {
  padding-top: 0 !important;
}

article:has(> .entry-content > .bhs-subpage-hero) > .entry-content {
  margin-top: 0 !important;
}

.bhs-subpage-hero {
  position: relative;
  isolation: isolate;
  width: 100% !important;
  margin: 0 0 clamp(3rem, 7vw, 6rem) !important;
  padding: clamp(5rem, 8vw, 8rem) var(--bhs-gutter) !important;
  overflow: hidden;
  color: var(--bhs-white);
  background: linear-gradient(125deg, var(--bhs-black), var(--bhs-fir));
}

.bhs-subpage-hero::after {
  content: "";
  position: absolute;
  right: -4rem;
  bottom: -7rem;
  z-index: -1;
  width: min(36vw, 32rem);
  aspect-ratio: 1;
  background: url("../images/sonnenblume-kampagne.png") center / contain no-repeat;
  opacity: 0.12;
}

.bhs-subpage-hero > * {
  width: min(70rem, calc(100% - (2 * var(--bhs-gutter))));
  margin-inline: auto !important;
}

.bhs-subpage-hero .bhs-kicker {
  margin-bottom: 1.4rem !important;
  color: var(--bhs-white);
}

.bhs-subpage-hero h1 {
  margin: 0 0 1.25rem !important;
  color: var(--bhs-white);
  font-family: "GrueneType Campaign", sans-serif;
  font-size: clamp(4.5rem, 8vw, 8rem);
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.005em;
  line-height: 0.88;
}

.bhs-subpage-hero p {
  max-width: 48rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  line-height: 1.55;
}

.bhs-local-content {
  width: min(70rem, calc(100% - (2 * var(--bhs-gutter))));
  margin: 0 auto clamp(5rem, 8vw, 8rem) !important;
}

.bhs-local-content .bhs-candidate-empty {
  background: var(--bhs-fir);
}

.bhs-local-content .bhs-candidate-empty .bhs-kicker {
  color: var(--bhs-white) !important;
}

.bhs-local-content .bhs-candidate-empty p {
  color: rgba(255, 255, 255, 0.84) !important;
}

.bhs-candidate-empty .u-fade {
  opacity: 1 !important;
  transform: none !important;
}

/* Compact, useful footer */
body.formstyle-rounded footer.site-footer,
footer.site-footer {
  min-height: 0;
  margin: 0 !important;
  padding: 1.5rem var(--bhs-gutter) !important;
  border: 0;
  border-top: 0.3rem solid var(--bhs-clover);
  border-radius: 0 !important;
  color: var(--bhs-fir);
  background: var(--bhs-sand) !important;
}

.site-footer .site-info {
  width: min(var(--bhs-content), 100%);
  max-width: none;
  margin-inline: auto;
  padding: 0;
}

.site-footer__content {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
}

.site-footer__content > div {
  gap: 1rem;
}

.site-footer__content--top {
  grid-column: 1;
  margin: 0;
  align-items: center;
}

.site-footer__content--bottom {
  grid-column: 2;
  align-items: center;
  display: flex !important;
  flex-direction: row !important;
  width: auto !important;
}

.site-footer .vendorflex {
  width: auto;
  margin: 0;
}

.site-footer .vendorflex p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.4;
}

.site-footer .footermenu-1:empty,
.site-footer .footermenu-2:empty,
.site-footer .sunflower__socials:empty,
.site-footer__content--bottom > .d-flex:has(.sunflower__socials:empty) {
  display: none !important;
}

.site-footer__content--bottom .footerlogo,
body.formstyle-rounded footer.site-footer .footerlogo {
  position: static;
  inset: auto;
  width: 9rem !important;
  height: 4.25rem !important;
  min-height: 0 !important;
  max-height: 4.25rem !important;
  flex: 0 0 9rem;
  margin: 0;
  padding: 0;
  display: block;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.site-footer__content--bottom .footerlogo .concave-30px {
  display: none;
}

.site-footer__content--bottom .footerlogo img {
  display: block !important;
  width: 9rem !important;
  min-width: 9rem;
  max-width: 9rem;
  height: auto;
  min-height: 0;
  max-height: 4.25rem;
  padding: 0;
}

.site-footer a {
  color: var(--bhs-fir);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--bhs-magenta);
}

@media (max-width: 1199px) {
  .top-bar .brand-left::after {
    width: 3.75rem;
  }

  .top-bar .brand-left {
    grid-template-columns: auto 3.75rem;
  }

  .top-bar .brand-left .label-top {
    font-size: 1.7rem;
  }

  .top-bar .brand-left .label-bottom {
    font-size: 0.67rem;
  }

  .bhs-hero__inner {
    grid-template-columns: minmax(0, 44rem) 1fr;
  }
}

@media (max-width: 949px) {
  html {
    scroll-padding-top: 5.25rem;
  }

  .top-bar,
  .top-bar.stuck {
    height: 5.25rem !important;
  }

  .top-bar > .container-fluid {
    width: calc(100% - 1.5rem);
    margin-left: 0.75rem;
  }

  .top-bar .brand-left,
  .top-bar.stuck .brand-left,
  .hamburger-menu .brand-left {
    grid-template-columns: auto 3.15rem;
    column-gap: 0.55rem;
    max-width: calc(100vw - 5.5rem);
  }

  .top-bar .brand-left::after {
    width: 3.15rem;
  }

  .top-bar .brand-left .label-top {
    padding: 0.32rem 1.1rem 0.25rem 0.55rem;
    font-size: 1.4rem;
  }

  .top-bar .brand-left .label-bottom {
    max-width: min(17rem, calc(100vw - 9rem));
    overflow: hidden;
    padding: 0.32rem 0.9rem 0.32rem 0.55rem;
    font-size: 0.58rem;
    text-overflow: ellipsis;
  }

  .hamburger-menu .top-bar .right-bar {
    right: 100%;
    left: -200%;
    width: auto !important;
    min-width: 0;
    max-width: none !important;
    box-sizing: border-box;
    padding: 7rem 2.5rem 2.5rem;
  }

  .hamburger-menu .top-bar .right-bar.unfold {
    right: 0;
    left: 0;
  }

  .hamburger-menu .top-bar:has(.right-bar.unfold) .brand-left {
    visibility: hidden !important;
  }

  .hamburger-menu .top-bar .right-bar.unfold a {
    font-size: 1.25rem;
  }

  .bhs-hero {
    min-height: calc(100svh - 5.25rem);
    background-position: 62% center;
  }

  .bhs-hero::before {
    background:
      linear-gradient(90deg, rgba(0, 34, 22, 0.96), rgba(0, 34, 22, 0.58)),
      linear-gradient(0deg, rgba(0, 34, 22, 0.74), transparent 65%);
  }

  .bhs-hero::after {
    width: 22rem;
    opacity: 0.15;
  }

  .bhs-hero__inner {
    grid-template-columns: 1fr;
    width: calc(100% - (2 * var(--bhs-gutter)));
    padding-block: 4rem 3rem;
  }

  .bhs-hero h1 {
    font-size: clamp(4.6rem, 17vw, 7.2rem);
  }

  .bhs-place-grid,
  .bhs-promise-grid,
  .bhs-candidate-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .bhs-place-card {
    min-height: 20rem;
  }

  .bhs-promise-card {
    min-height: 22rem;
    grid-template-rows: 3.75rem auto 1fr;
  }

  .bhs-promise-card h3 {
    margin-bottom: 1rem !important;
  }

  .site-footer__content--bottom .footerlogo {
    width: 9rem !important;
  }
}

@media (max-width: 600px) {
  .bhs-hero__inner {
    padding-top: 3.25rem;
  }

  .bhs-hero h1 {
    font-size: clamp(3rem, 14vw, 4rem);
  }

  .bhs-hero__lead {
    margin-top: 1.5rem !important;
    font-size: 1.05rem;
  }

  .bhs-hero .wp-block-buttons,
  .bhs-cta .wp-block-buttons {
    align-items: stretch;
    flex-direction: column;
  }

  .bhs-hero .wp-block-button,
  .bhs-cta .wp-block-button {
    width: 100%;
  }

  .bhs-hero .wp-block-button__link,
  .bhs-cta .wp-block-button__link {
    width: 100%;
    text-align: center;
  }

  .bhs-countdown {
    grid-template-columns: auto auto;
  }

  .bhs-countdown time {
    grid-column: 1 / -1;
    margin: 0.3rem 0 0;
    padding: 0.55rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-left: 0;
  }

  .bhs-section h2,
  .bhs-election-band h2,
  .bhs-cta h2,
  .bhs-content-stage h2 {
    font-size: clamp(3.4rem, 15vw, 4.7rem);
    hyphens: auto;
  }

  .bhs-place-card,
  .bhs-promise-card {
    padding: 1.6rem !important;
  }

  .bhs-place-card h3 {
    font-size: 2.35rem;
    overflow-wrap: anywhere;
    white-space: nowrap;
  }

  .bhs-candidate-empty {
    padding: 2rem 1.5rem;
  }

  .site-footer__content {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .site-footer__content--top,
  .site-footer__content--bottom {
    grid-column: 1;
  }

  .site-footer__content--bottom {
    justify-content: flex-start !important;
  }

  .site-footer__content--bottom .footerlogo img {
    max-width: 7.5rem;
    max-height: 3.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
