@charset "UTF-8";
/* ------------------------------------------------------------------------ */
/* Heading typography                                                       */
/*                                                                          */
/* One mixin per level. font-size uses clamp() to interpolate between min   */
/* and max across viewport widths 400px → 1640px. To tune a heading, edit   */
/* the values right here — no map, no function, no indirection.             */
/*                                                                          */
/* Used in two places:                                                      */
/*   - base/_typography.scss   → applies to <h1>..<h4> elements             */
/*   - utilities/_typography.scss → applies to .px_h1..px_h4 utility classes*/
/* ------------------------------------------------------------------------ */
:root {
  --px-radius-sm: 0.75rem;
  --px-radius-md: 1.25rem;
  --px-radius-lg: 1.5rem;
  --px-radius-pill: 999px;
}

html {
  font-size: 62.5% !important;
}

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

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

a:focus-visible {
  outline: 2px solid;
  outline-offset: 2px;
}

.logged-in.admin-bar .px_header {
  top: 32px;
}

body {
  line-height: 1.5;
}

h1 {
  font-family: "LaRuja", Sans-serif !important;
  font-size: clamp(4rem, 4vw + 2.5rem, 9.5rem) !important;
  line-height: 1.2 !important;
  overflow-wrap: break-word;
  hyphens: auto;
}

h2 {
  font-family: "LaRuja", Sans-serif !important;
  font-size: clamp(3.5rem, 4vw + 2.54rem, 7.5rem) !important;
  line-height: 1.2 !important;
  overflow-wrap: break-word;
  hyphens: auto;
}

h3 {
  font-family: "LaRuja", Sans-serif !important;
  font-size: clamp(2rem, 2vw + 1.686rem, 4rem) !important;
  line-height: 1.2 !important;
  overflow-wrap: break-word;
  hyphens: auto;
}

h4 {
  font-family: "LaRuja", Sans-serif !important;
  font-size: clamp(1.5rem, 0.6vw + 1.508rem, 2.5rem) !important;
  line-height: 1.2 !important;
  overflow-wrap: break-word;
  hyphens: auto;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  word-wrap: normal;
}

.skip-link.screen-reader-text:focus {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 100000;
  clip: auto;
  clip-path: none;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  background: #fff;
  color: #111;
  font-weight: 600;
  text-decoration: none;
}

.alignwide {
  margin-inline: auto;
  max-width: min(100%, 1100px);
}

.alignfull {
  margin-inline: calc(50% - 50vw);
  max-width: 100vw;
}

#site-header,
#site-footer {
  padding: 0;
}

.site-header,
.site-footer {
  background: transparent;
}

.elementor-widget-image .elementor-widget-container img {
  object-fit: cover;
}

.elementor-widget-text-editor a {
  text-decoration: underline;
}

.elementor-editor-active #site-header {
  z-index: 0;
}

.elementor-editor-active main {
  z-index: 999;
}

.px_menu_open header::after {
  content: "" !important;
  position: absolute !important;
  background-repeat: no-repeat !important;
  top: 0 !important;
  bottom: 0;
  height: 100dvh !important;
  background-color: var(--e-global-color-primary) !important;
  left: 0;
  width: 100% !important;
  z-index: 90 !important;
}

.px_header {
  transition: all 0.3s ease;
  right: var(--scrollbar-width, 0) !important;
}
@media (min-width: 768px) and (max-width: calc(1025px - 0.02rem)) {
  .px_header .px_links .elementor-icon-list-item:nth-child(2) {
    display: none !important;
  }
  .px_header .px_links .elementor-icon-list-item:first-child::after {
    display: none !important;
  }
}
.px_header .px_logo_container {
  position: relative !important;
}
@media (min-width: 768px) {
  .px_header .px_logo_container .px_logo {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}
.px_header.is-scrolled {
  min-height: 7rem !important;
  background-color: color-mix(in srgb, var(--e-global-color-primary) 70%, transparent) !important;
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
}
@media (max-width: calc(768px - 0.02rem)) {
  .px_header.is-scrolled {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
}
@media (min-width: 768px) {
  .px_header.is-scrolled .px_logo {
    max-width: 8rem !important;
    top: -2.4rem !important;
  }
}

.px_footer {
  position: relative;
}

/**
 * Full-screen menu overlay.
 *
 * Structure:
 *   <header> ... <button class="px_menu_toggle">Menü</button>
 *   <div class="px_menu"> … menu content … </div>
 *
 * The menu is hidden by default. JavaScript (with GSAP) animates it open
 * when any `.px_menu_toggle` is clicked. Both the "Menü" button in the
 * header and the "Schließen" button inside the open menu should carry
 * the `.px_menu_toggle` class — the JS treats them as toggles.
 *
 * The `body.px_menu_open` class is also set while the menu is open, useful
 * for swapping the toggle's icon/text (Menü ↔ Schließen) via CSS.
 */
.px_menu {
  position: fixed !important;
  inset: 0;
  z-index: 99;
  visibility: hidden;
  opacity: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  top: var(--px-header-height, 14rem) !important;
  height: calc(100dvh - var(--px-header-height, 14rem)) !important;
}
.px_menu .elementor-nav-menu {
  display: grid !important;
  width: 100% !important;
}
@media (min-width: 1025px) {
  .px_menu .elementor-nav-menu {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2.5rem !important;
  }
}
@media (min-width: 768px) and (max-width: calc(1025px - 0.02rem)) {
  .px_menu .elementor-nav-menu {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2rem !important;
  }
}
@media (max-width: calc(768px - 0.02rem)) {
  .px_menu .elementor-nav-menu {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
}
.px_menu .elementor-nav-menu > .menu-item > :first-child {
  font-family: "LaRuja", Sans-serif !important;
  font-size: clamp(2rem, 2vw + 1.686rem, 4rem) !important;
  line-height: 1.2 !important;
  overflow-wrap: break-word;
  hyphens: auto;
  padding-left: 0 !important;
}
.px_menu .elementor-nav-menu > .menu-item .sub-menu {
  display: block !important;
  position: static !important;
  width: 100% !important;
}
.px_menu nav.elementor-nav-menu--dropdown {
  display: none !important;
}
.px_menu .sub-menu {
  display: block !important;
  position: static !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.px_menu .sub-arrow {
  display: none !important;
}
.px_menu .elementor-button,
.px_menu .elementor-nav-menu--main .elementor-nav-menu a,
.px_menu .elementor-nav-menu a {
  transition: none !important;
}
.px_menu .elementor-nav-menu--main .elementor-nav-menu a,
.px_menu .elementor-nav-menu a {
  border-inline-start: 0 !important;
}

#px_logo_short {
  display: none;
}

body.px_menu_open {
  overflow: hidden;
}
body.px_menu_open .px_header {
  background-color: var(--e-global-color-primary) !important;
}
body.px_menu_open .px_links {
  display: none !important;
}
@media (min-width: 768px) {
  body.px_menu_open .px_logo {
    display: none !important;
  }
  body.px_menu_open #px_logo_short {
    display: block;
  }
}
@media (max-width: calc(768px - 0.02rem)) {
  body.px_menu_open .px_logo img {
    content: url("/wp-content/uploads/2026/06/logo_small.svg");
    width: auto !important;
    height: auto !important;
    max-height: 4rem !important;
  }
}

/* ---------- toggle button ---------- */
.px_menu_toggle {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  color: var(--e-global-color-secondary);
  font-family: inherit;
  font-size: inherit;
  line-height: 1;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
.px_menu_toggle:hover, .px_menu_toggle:focus, .px_menu_toggle:focus-visible {
  background: transparent !important;
  outline: none;
}

.px_menu_toggle__text {
  display: inline-grid;
  grid-template-columns: max-content;
}

.px_menu_toggle__text_open,
.px_menu_toggle__text_close {
  grid-area: 1/1;
  text-align: right;
  transition: opacity 0.2s ease;
}

.px_menu_toggle__text_close {
  opacity: 0;
  pointer-events: none;
}

body.px_menu_open .px_menu_toggle__text_open {
  opacity: 0;
}
body.px_menu_open .px_menu_toggle__text_close {
  opacity: 1;
}

/* ---------- animated 3-line icon ---------- */
.px_menu_toggle__icon {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  width: 3.2rem;
  height: 2.2rem;
  flex: 0 0 auto;
}

.px_menu_toggle__line {
  display: block;
  width: 100%;
  height: 0.25rem;
  background-color: currentColor;
  border-radius: 0.25rem;
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
}

body.px_menu_open .px_menu_toggle__line:nth-child(1) {
  transform: translateY(calc(2.2rem / 2 - 0.25rem / 2)) rotate(45deg);
}
body.px_menu_open .px_menu_toggle__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
body.px_menu_open .px_menu_toggle__line:nth-child(3) {
  transform: translateY(calc(-1 * (2.2rem / 2 - 0.25rem / 2))) rotate(-45deg);
}

.post-password-form {
  display: grid;
  gap: 1rem;
  max-width: 32rem;
}

.post-password-form p {
  margin: 0;
}

.post-password-form__fields {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: flex-end;
}

.post-password-form label {
  display: grid;
  flex: 1 1 14rem;
  gap: 0.5rem;
  font-weight: 600;
}

.post-password-form input[type=password] {
  width: 100%;
  max-width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid;
  border-radius: var(--px-radius-md);
}

.post-password-form input[type=password]:focus-visible {
  outline: 2px solid;
  outline-offset: 2px;
}

.px_hero .swiper-slide > .elementor-element {
  padding-bottom: 3rem !important;
}
@media (max-width: calc(1025px - 0.02rem)) {
  .px_hero .swiper-slide > .elementor-element {
    padding-left: 5vw !important;
    padding-right: 5vw !important;
  }
}

@media (min-width: 1025px) {
  .px_hero,
  .px_hero_carousel_container {
    padding: 4rem !important;
  }
}
@media (min-width: 768px) and (max-width: calc(1025px - 0.02rem)) {
  .px_hero,
  .px_hero_carousel_container {
    padding: 3rem !important;
  }
}
@media (max-width: calc(768px - 0.02rem)) {
  .px_hero,
  .px_hero_carousel_container {
    padding: 2rem !important;
  }
}

.px_hero {
  height: 65rem !important;
}
.px_hero .px_hero_carousel,
.px_hero .px_hero_carousel .swiper {
  height: 100% !important;
  padding-bottom: 0 !important;
}

.px_hero_carousel_container {
  height: 100dvh !important;
}
.px_hero_carousel_container .px_arrow_down {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto !important;
}
@media (min-width: 1025px) {
  .px_hero_carousel_container .px_arrow_down {
    bottom: 10rem !important;
  }
}
@media (max-width: calc(1025px - 0.02rem)) {
  .px_hero_carousel_container .px_arrow_down {
    bottom: 8rem !important;
  }
}
.px_hero_carousel_container .px_hero_carousel,
.px_hero_carousel_container .px_hero_carousel .swiper {
  height: 100% !important;
}
.px_hero_carousel_container .px_hero_carousel .swiper-slide .e-con {
  padding-bottom: 15rem !important;
}

.px_accent.e-button-base,
.px_accent .elementor-button {
  background-image: url("/wp-content/uploads/2026/06/arror_right_accent.svg") !important;
  border-color: var(--e-global-color-accent) !important;
}
.px_accent .elementor-button-text {
  color: var(--e-global-color-accent) !important;
}

.px_light.e-button-base,
.px_light .elementor-button {
  background-image: url("/wp-content/uploads/2026/06/arrow_right_light.svg") !important;
  border-color: var(--e-global-color-secondary) !important;
}
.px_light .elementor-button-text {
  color: var(--e-global-color-secondary) !important;
}

.px_dark.e-button-base,
.px_dark .elementor-button {
  background-image: url("/wp-content/uploads/2026/06/arrow-right-dark.svg") !important;
  border-color: var(--e-global-color-text) !important;
}
.px_dark,
.px_dark .elementor-button-text {
  color: var(--e-global-color-text) !important;
}

.px_border.e-button-base,
.px_border .elementor-button {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 3rem !important;
  padding-right: 7rem !important;
  background-position: calc(100% - 3rem) center !important;
  border: 0.2rem solid;
}
.px_border.e-button-base:hover,
.px_border .elementor-button:hover {
  padding-right: 8rem !important;
}

.e-button-base,
.elementor-button {
  transition: all 0.3s ease;
  padding-left: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  padding-right: 4rem !important;
  background-position: center right !important;
  background-repeat: no-repeat !important;
  background-image: url("/wp-content/uploads/2026/06/arrow-right-primary.svg") !important;
}
.e-button-base:hover,
.elementor-button:hover {
  padding-right: 5rem !important;
}
.e-button-base:hover,
.e-button-base:hover .elementor-button-text,
.elementor-button:hover,
.elementor-button:hover .elementor-button-text {
  color: var(--e-global-color-primary);
}
.e-button-base,
.e-button-base .elementor-button-text,
.elementor-button,
.elementor-button .elementor-button-text {
  color: var(--e-global-color-primary);
}

.px_veranstaltungen_slider {
  position: relative;
  padding-top: 5rem;
}
@media (max-width: calc(768px - 0.02rem)) {
  .px_veranstaltungen_slider {
    padding-top: 4rem;
  }
}
.px_veranstaltungen_slider .splide__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* arrows — anchored top-right above the slider */
.px_veranstaltungen_slider .splide__arrows,
.px_slider_arrows {
  position: absolute !important;
  top: 0;
  right: 0;
  display: flex !important;
  align-items: center;
  gap: 2rem;
  z-index: 2;
}

.px_slider_arrow {
  position: static !important;
  transform: none !important;
  flex: 0 0 auto;
  width: 6rem;
  height: 1.6rem;
  padding: 0;
  border: 0;
  background: transparent !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.px_slider_arrow:hover, .px_slider_arrow:focus, .px_slider_arrow:focus-visible, .px_slider_arrow:active {
  background: transparent !important;
  outline: none;
}
.px_slider_arrow img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.px_slider_arrow:disabled {
  opacity: 0.4;
  cursor: default;
}
@media (max-width: calc(768px - 0.02rem)) {
  .px_slider_arrow {
    width: 4rem;
    height: 1.1rem;
  }
}

.px_slider_arrow--prev img {
  transform: rotate(180deg);
}

/* slide */
.px_veranstaltungen_slide {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.px_veranstaltungen_slide__image_link {
  display: block;
  overflow: hidden;
}

.px_veranstaltungen_slide__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.px_veranstaltungen_slide__title {
  margin: 0;
  color: var(--e-global-color-primary);
}
.px_veranstaltungen_slide__title a {
  color: inherit;
  text-decoration: none;
  font-family: inherit !important;
}

.px_veranstaltungen_slide__meta {
  margin: 0;
  font-weight: 700;
}

.px_veranstaltungen_slide__excerpt p {
  margin: 0;
}

.px_veranstaltungen_slide__cta {
  margin-top: 0.5rem;
}

/**
 * Heading decorations.
 *
 * Usage on any heading (or container):
 *   <h2 class="px_deco px_leaves">Öffnungszeiten</h2>
 *   <h2 class="px_deco px_preise">Ausstattung &amp; Preise</h2>
 *
 *   - .px_deco        — generic primitive: positions an SVG via ::after
 *   - .px_<name>      — modifier: sets the SVG, size, offset, overlap
 *
 * Knobs per modifier:
 *   - background-image  → which SVG
 *   - width / height    → SVG render size
 *   - right             → horizontal offset (negative = pushed outside title)
 *   - z-index           → 0 = beside text (default), -1 = behind text
 */
.px_deco {
  display: flex;
  align-items: center;
  position: relative;
  isolation: isolate;
}
.px_deco > .elementor-heading-title,
.px_deco > h1,
.px_deco > h2,
.px_deco > h3,
.px_deco > h4 {
  flex: 0 1 auto;
  min-width: 0;
}
.px_deco::after {
  content: "";
  display: block;
  flex: 0 0 auto;
  margin-left: auto;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 12rem;
  height: 12rem;
}
@media (min-width: 768px) and (max-width: calc(1025px - 0.02rem)) {
  .px_deco::after {
    width: 8rem;
    height: 8rem;
  }
}
@media (max-width: calc(768px - 0.02rem)) {
  .px_deco::after {
    display: none;
  }
}

/* Overlay decos — SVG sits BEHIND the title text (text-on-top effect). */
.px_deco.px_veranstaltungskalender::after,
.px_deco.px_heiraten::after {
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  margin-left: 0;
  z-index: -1;
}

/* ---------- specific decos ---------- */
/* Leaves — Öffnungszeiten. Sits to the right of the title, no overlap. */
.px_deco.px_leaves::after {
  background-image: url("/wp-content/uploads/2026/06/leaves.svg");
  width: 9rem;
  height: 16rem;
}

/* House illustration — Ausstattung & Preise. No overlap. */
.px_deco.px_preise::after {
  background-image: url("/wp-content/uploads/2026/06/haus.svg");
  width: 18rem;
  height: 14rem;
}

/* Events (guitar + mic) — Veranstaltungskalender. Overlaps the title text. */
.px_deco.px_veranstaltungskalender::after {
  background-image: url("/wp-content/uploads/2026/06/events.svg");
  width: 16rem;
  height: 14rem;
}

/* Wedding table — Warum am Wildberghof heiraten. Heavy overlap. */
.px_deco.px_heiraten::after {
  background-image: url("/wp-content/uploads/2026/06/hochzeit.svg");
  width: 32rem;
  height: 26rem;
}
@media (min-width: 1025px) {
  .px_deco.px_heiraten::after {
    right: -20rem;
  }
}

/**
 * Öffnungszeiten — four-column hours block with vertical dividers.
 *
 * Outer class: .px_offnungszeiten (set on the e-grid container in Elementor).
 * Direct children are Elementor e-con columns; we add a thin divider in the
 * middle of the gap between adjacent columns via ::before on each non-first
 * column.
 */
.px_offnungszeiten {
  /* desktop: 4 columns, vertical dividers between every adjacent pair */
}
@media (min-width: 1025px) {
  .px_offnungszeiten {
    column-gap: 8rem;
    row-gap: 4rem;
  }
  .px_offnungszeiten > .e-con + .e-con {
    position: relative;
  }
  .px_offnungszeiten > .e-con + .e-con::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -4rem;
    width: 1px;
    background-color: var(--e-global-color-primary);
    opacity: 0.5;
  }
}
.px_offnungszeiten {
  /* tablet: 2 columns. Vertical divider between left/right columns,
     horizontal divider between rows 1 and 2. */
}
@media (min-width: 768px) and (max-width: calc(1025px - 0.02rem)) {
  .px_offnungszeiten {
    column-gap: 6rem;
    row-gap: 4rem;
  }
  .px_offnungszeiten > .e-con {
    position: relative;
  }
  .px_offnungszeiten > .e-con:nth-child(2n)::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -3rem;
    width: 1px;
    background-color: var(--e-global-color-primary);
    opacity: 0.5;
  }
  .px_offnungszeiten > .e-con:nth-child(n+3)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -2rem;
    height: 1px;
    background-color: var(--e-global-color-primary);
    opacity: 0.5;
  }
}
.px_offnungszeiten {
  /* mobile: 1 column stacked, no dividers — just breathing room. */
}
@media (max-width: calc(768px - 0.02rem)) {
  .px_offnungszeiten {
    row-gap: 3rem;
  }
}

@media (min-width: 1025px) {
  .px_middle_image_container {
    padding-left: 25% !important;
  }
}
@media (min-width: 768px) and (max-width: calc(1025px - 0.02rem)) {
  .px_middle_image_container {
    padding-left: 25% !important;
  }
}
@media (min-width: 1025px) {
  .px_middle_image_container .px_middle_image {
    width: 38rem !important;
  }
}
@media (min-width: 768px) and (max-width: calc(1025px - 0.02rem)) {
  .px_middle_image_container .px_middle_image {
    width: 30rem !important;
  }
}
.px_middle_image_container .px_middle_image img {
  object-fit: cover;
  object-position: center;
}

.px_accordion .e-n-accordion-item-title {
  padding-left: 0 !important;
  padding: 3rem 0 !important;
}
.px_accordion .e-n-accordion-item {
  border-bottom: 0.1rem solid var(--e-global-color-primary) !important;
}
@media (min-width: 1025px) {
  .px_accordion .e-n-accordion-item > :last-child {
    padding-left: 8rem !important;
  }
}
@media (min-width: 768px) and (max-width: calc(1025px - 0.02rem)) {
  .px_accordion .e-n-accordion-item > :last-child {
    padding-left: 6rem !important;
  }
}

.px_hochzeit_anfragen input:not([type=checkbox]),
.px_hochzeit_anfragen select,
.px_hochzeit_anfragen textarea {
  border: none !important;
  box-shadow: none !important;
  border-bottom: 0.1rem solid var(--e-global-color-text) !important;
  border-radius: 0 !important;
  padding-left: 0 !important;
}

.px_image_slider .swiper-wrapper {
  align-items: center !important;
}
@media (min-width: 768px) {
  .px_image_slider .swiper-wrapper {
    gap: 3rem !important;
  }
}
@media (min-width: 768px) {
  .px_image_slider .elementor-image-carousel-wrapper {
    padding-bottom: 10rem !important;
  }
}
@media (max-width: calc(768px - 0.02rem)) {
  .px_image_slider .elementor-image-carousel-wrapper {
    padding-bottom: 6rem !important;
  }
}
.px_image_slider .elementor-swiper-button {
  top: unset !important;
  transform: none !important;
}
@media (min-width: 768px) {
  .px_image_slider .elementor-swiper-button {
    bottom: -2.2rem !important;
  }
}
@media (max-width: calc(768px - 0.02rem)) {
  .px_image_slider .elementor-swiper-button {
    bottom: -1.2rem !important;
  }
}
.px_image_slider .elementor-swiper-button-prev {
  transform-origin: center !important;
  transform: rotate(-180deg) !important;
}
.px_image_slider .swiper-pagination {
  width: max-content !important;
  margin: 0 auto !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
}

/**
 * Veranstaltungen list — used by the [veranstaltungen_list] shortcode.
 *
 * Layout: filter pills on top, then a stacked list of event rows. Each row
 * has the date as a large heading, with image (left) and content (right)
 * below it on desktop, stacked on mobile.
 */
.px_veranstaltungen_list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

/* ---------- filter pills ---------- */
.px_veranstaltungen_filter {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.px_filter_pill {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  border: 1px solid var(--e-global-color-primary);
  background: transparent;
  color: var(--e-global-color-primary);
  text-decoration: none;
  font-size: 1.4rem;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.px_filter_pill:hover, .px_filter_pill:focus-visible {
  background-color: var(--e-global-color-primary);
  color: var(--e-global-color-background, #fff);
}
.px_filter_pill.is-active {
  background-color: var(--e-global-color-primary);
  color: var(--e-global-color-background, #fff);
}

/* Year dropdown — used in past view only. Visually matches the pills. */
.px_filter_year {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: auto;
  padding: 1rem 3rem 1rem 2rem;
  border: 1px solid var(--e-global-color-primary);
  border-radius: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 7'><path d='M1 1l5 5 5-5' stroke='%23647e60' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>");
  color: var(--e-global-color-primary);
  font-size: 1.4rem;
  font-family: inherit;
  line-height: 1.2;
  cursor: pointer;
}
.px_filter_year:focus-visible {
  outline: 2px solid var(--e-global-color-primary);
  outline-offset: 2px;
}

/* ---------- items list ---------- */
.px_veranstaltungen_list__items {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  transition: opacity 0.2s ease;
}
.px_veranstaltungen_list__items.is-loading {
  opacity: 0.5;
  pointer-events: none;
}

.px_veranstaltungen_list__empty {
  padding: 4rem 0;
  text-align: center;
  color: var(--e-global-color-text);
  opacity: 0.7;
}

/* ---------- single event row ---------- */
.px_veranstaltung {
  border-bottom: 1px solid var(--e-global-color-primary);
  padding-bottom: 4rem;
}
.px_veranstaltung:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}

.px_veranstaltung__date {
  margin: 0 0 3rem;
  color: var(--e-global-color-primary);
  line-height: 1;
}
@media (min-width: 1025px) {
  .px_veranstaltung__date {
    font-size: 6rem;
  }
}
@media (min-width: 768px) and (max-width: calc(1025px - 0.02rem)) {
  .px_veranstaltung__date {
    font-size: 4.5rem;
  }
}
@media (max-width: calc(768px - 0.02rem)) {
  .px_veranstaltung__date {
    font-size: 3.5rem;
    margin-bottom: 2rem;
  }
}

.px_veranstaltung__body {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
@media (min-width: 768px) and (max-width: calc(1025px - 0.02rem)) {
  .px_veranstaltung__body {
    gap: 3rem;
    align-items: stretch;
  }
}
@media (max-width: calc(768px - 0.02rem)) {
  .px_veranstaltung__body {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.px_veranstaltung__image_link {
  display: block !important;
  overflow: hidden;
}
@media (min-width: 768px) and (max-width: calc(1025px - 0.02rem)) {
  .px_veranstaltung__image_link {
    position: relative;
    height: 100%;
  }
}

.px_veranstaltung__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover !important;
}
@media (min-width: 768px) and (max-width: calc(1025px - 0.02rem)) {
  .px_veranstaltung__image {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
  }
}

.px_veranstaltung__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
}

.px_veranstaltung__title {
  margin: 0;
  color: var(--e-global-color-primary);
}
.px_veranstaltung__title a {
  color: inherit;
  font-family: inherit;
  text-decoration: none;
}

.px_veranstaltung__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.px_veranstaltung__meta li {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.px_veranstaltung__meta_icon {
  width: 1.8rem;
  height: 1.8rem;
  display: block;
  object-fit: contain;
}

.px_veranstaltung__description p {
  margin: 0;
}

.px_veranstaltung__actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: auto;
  flex-wrap: wrap;
}

.px_veranstaltung__details {
  color: var(--e-global-color-primary);
  text-decoration: underline;
}
.px_veranstaltung__details:hover {
  text-decoration: none;
}

/* ---------- pagination ---------- */
.px_veranstaltungen_pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 4rem;
}
.px_veranstaltungen_pagination .px_veranstaltungen_pagination__link,
.px_veranstaltungen_pagination .px_veranstaltungen_pagination__current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.5rem;
  height: 3.5rem;
  padding: 0 1rem;
  border: 1px solid var(--e-global-color-primary);
  color: var(--e-global-color-primary);
  text-decoration: none;
  font-size: 1.4rem;
  line-height: 1;
}
.px_veranstaltungen_pagination .px_veranstaltungen_pagination__link {
  transition: background-color 0.2s ease, color 0.2s ease;
}
.px_veranstaltungen_pagination .px_veranstaltungen_pagination__link:hover {
  background-color: var(--e-global-color-primary);
  color: var(--e-global-color-background, #fff);
}
.px_veranstaltungen_pagination .px_veranstaltungen_pagination__current {
  background-color: var(--e-global-color-primary);
  color: var(--e-global-color-background, #fff);
}

/**
 * Veranstaltung details — used by the [veranstaltung_details] shortcode on
 * the single-event template. Renders weekday + date heading, a list of
 * key/value rows (Beginn / Einlass / VVK / Abendkasse), and the Ticket kaufen
 * button.
 */
.px_veranstaltung_details {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.px_veranstaltung_details__date {
  margin: 0;
  color: var(--e-global-color-text);
  line-height: 1.1;
}

/* Definition list rendered as a two-column grid per row with a divider below. */
.px_veranstaltung_details__list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.px_veranstaltung_details__row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 2rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--e-global-color-primary);
}
.px_veranstaltung_details__row:first-child {
  border-top: 1px solid var(--e-global-color-primary);
}

.px_veranstaltung_details__label {
  margin: 0;
  color: var(--e-global-color-text);
}

.px_veranstaltung_details__value {
  margin: 0;
  color: var(--e-global-color-text);
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

.px_veranstaltung_details__actions {
  margin-top: 1rem;
}

/**
 * Badge — bordered label primitive.
 *
 * Used by [veranstaltung_reihen] for taxonomy term display, but generic
 * enough to be reused (status pills, category labels, etc.).
 */
.px_badge {
  display: inline-block;
  padding: 1rem 2rem;
  border: 1px solid var(--e-global-color-primary);
  background-color: transparent;
  color: var(--e-global-color-primary);
  font-size: 1.6rem;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

a.px_badge:hover, a.px_badge:focus-visible {
  background-color: var(--e-global-color-primary);
  color: var(--e-global-color-background, #fff);
}

/* Wrapper for one or more badges — used by the [veranstaltung_reihen] shortcode. */
.px_reihen_badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.px_br {
  overflow: hidden;
  border-radius: var(--px-radius-lg);
}

.px_br_only {
  border-radius: var(--px-radius-lg);
}

.px_no_pointer {
  pointer-events: none;
}

.px_oh {
  overflow: hidden;
}

.px_relative {
  position: relative;
}

.px_relative_inner .e-con-inner {
  position: relative;
}

.px_no_margin,
.px_no_margin * {
  margin: 0;
}

@media (min-width: 1025px) {
  .px_block.px_desktop {
    display: block;
  }
}

@media (min-width: 768px) and (max-width: calc(1025px - 0.02rem)) {
  .px_block.px_tablet {
    display: block;
  }
}

.px_limit_left {
  padding-left: max(0px, (100vw - var(--container-max-width)) / 2);
}
@media (max-width: calc(768px - 0.02rem)) {
  .px_limit_left {
    padding-right: 5vw !important;
  }
}

.px_limit_right {
  padding-right: max(0px, (100vw - var(--container-max-width)) / 2);
}
@media (max-width: calc(768px - 0.02rem)) {
  .px_limit_right {
    padding-left: 5vw !important;
  }
}

.px_limit_left_less {
  padding-left: max(0px, (100vw - var(--container-max-width)) / 2 - var(--container-max-width) / 3);
}

.px_limit_right_less {
  padding-right: max(0px, (100vw - var(--container-max-width)) / 2 - var(--container-max-width) / 3);
}

@media (min-width: 1025px) {
  .px_limit_width {
    width: 60% !important;
  }
}
@media (min-width: 768px) and (max-width: calc(1025px - 0.02rem)) {
  .px_limit_width {
    width: 80% !important;
  }
}

.px_gap {
  gap: 3rem;
}

.px_pt {
  padding-top: 4rem;
}
@media (min-width: 768px) {
  .px_pt {
    padding-top: 6rem;
  }
}
@media (min-width: 1025px) {
  .px_pt {
    padding-top: 8rem;
  }
}

.px_pt_s {
  padding-top: 2rem;
}
@media (min-width: 768px) {
  .px_pt_s {
    padding-top: 3rem;
  }
}
@media (min-width: 1025px) {
  .px_pt_s {
    padding-top: 4rem;
  }
}

.px_pb {
  padding-bottom: 4rem;
}
@media (min-width: 768px) {
  .px_pb {
    padding-bottom: 6rem;
  }
}
@media (min-width: 1025px) {
  .px_pb {
    padding-bottom: 8rem;
  }
}

.px_pb_s {
  padding-bottom: 2rem;
}
@media (min-width: 768px) {
  .px_pb_s {
    padding-bottom: 3rem;
  }
}
@media (min-width: 1025px) {
  .px_pb_s {
    padding-bottom: 4rem;
  }
}

.px_py {
  padding-top: 4rem;
}
@media (min-width: 768px) {
  .px_py {
    padding-top: 6rem;
  }
}
@media (min-width: 1025px) {
  .px_py {
    padding-top: 8rem;
  }
}
.px_py {
  padding-bottom: 4rem;
}
@media (min-width: 768px) {
  .px_py {
    padding-bottom: 6rem;
  }
}
@media (min-width: 1025px) {
  .px_py {
    padding-bottom: 8rem;
  }
}

.px_py_s {
  padding-top: 2rem;
}
@media (min-width: 768px) {
  .px_py_s {
    padding-top: 3rem;
  }
}
@media (min-width: 1025px) {
  .px_py_s {
    padding-top: 4rem;
  }
}
.px_py_s {
  padding-bottom: 2rem;
}
@media (min-width: 768px) {
  .px_py_s {
    padding-bottom: 3rem;
  }
}
@media (min-width: 1025px) {
  .px_py_s {
    padding-bottom: 4rem;
  }
}

/* grid */
@media (min-width: 1025px) {
  .px_gap_wide,
  .px_gap_wide .e-con-inner {
    column-gap: 7rem !important;
    row-gap: 7rem !important;
  }
}
@media (min-width: 768px) and (max-width: calc(1025px - 0.02rem)) {
  .px_gap_wide,
  .px_gap_wide .e-con-inner {
    column-gap: 5rem !important;
    row-gap: 5rem !important;
  }
}

/* typography */
.px_underline {
  text-decoration: underline;
}

.px_extra_bold * {
  font-weight: 800;
}

.px_bold * {
  font-weight: 700;
}

.px_uppercase,
.px_uppercase * {
  text-transform: uppercase;
}

@media (min-width: 1025px) {
  .px_offset {
    transform: translateX(-12rem);
  }
}
@media (min-width: 768px) and (max-width: calc(1025px - 0.02rem)) {
  .px_offset {
    transform: translateX(-8rem);
  }
}

.px_highlight {
  font-weight: 300 !important;
}
@media (max-width: calc(768px - 0.02rem)) {
  .px_highlight {
    font-size: 2rem !important;
  }
}
@media (min-width: 768px) and (max-width: calc(1025px - 0.02rem)) {
  .px_highlight {
    font-size: 2.75rem !important;
  }
}
@media (min-width: 1025px) {
  .px_highlight {
    font-size: 3.75rem !important;
  }
}

.px_h1,
.px_h1 * {
  font-family: "LaRuja", Sans-serif !important;
  font-size: clamp(4rem, 4vw + 2.5rem, 9.5rem) !important;
  line-height: 1.2 !important;
  overflow-wrap: break-word;
  hyphens: auto;
}

.px_h2,
.px_h2 * {
  font-family: "LaRuja", Sans-serif !important;
  font-size: clamp(3.5rem, 4vw + 2.54rem, 7.5rem) !important;
  line-height: 1.2 !important;
  overflow-wrap: break-word;
  hyphens: auto;
}

.px_h3,
.px_h3 * {
  font-family: "LaRuja", Sans-serif !important;
  font-size: clamp(2rem, 2vw + 1.686rem, 4rem) !important;
  line-height: 1.2 !important;
  overflow-wrap: break-word;
  hyphens: auto;
}

.px_h4,
.px_h4 * {
  font-family: "LaRuja", Sans-serif !important;
  font-size: clamp(1.5rem, 0.6vw + 1.508rem, 2.5rem) !important;
  line-height: 1.2 !important;
  overflow-wrap: break-word;
  hyphens: auto;
}

.px_image {
  width: 100%;
}
@media (max-width: calc(768px - 0.02rem)) {
  .px_image img {
    height: 35rem !important;
  }
}

/*# sourceMappingURL=main.css.map */
