@charset "UTF-8";
.d4a-breadcrumb {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: clamp(1.6rem, 1.5vw, 1.9rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--global-text-color, #303030);
  margin-left: 1rem;
}
.d4a-breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}
.d4a-breadcrumb ol li {
  padding: 4px;
}
.d4a-breadcrumb ol li a {
  color: inherit;
  text-decoration: none;
  font-weight: 400;
}
.d4a-breadcrumb ol li a:hover {
  text-decoration: underline;
}
.d4a-breadcrumb ol li span {
  margin: 0 4px;
}
.d4a-breadcrumb ol li:last-child span:last-child {
  display: none;
}
.d4a-breadcrumb__updated {
  margin-top: 0.5rem;
  font-size: clamp(1.5rem, 1.4vw, 1.8rem);
  font-weight: 300;
  color: var(--global-text-color, #303030);
}
/* Schützt sehr kleine Displays vor Text-Überläufen */
/* Macht lange Wörter oder URLs bei Bedarf trennbar oder umbrechbar. */
@media (max-width: 310px) {
  * {
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  a, p, h1, h2, h3, h4, h5, h6, .ct-text-block, .ct-headline {
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
}
/* Für alle Seiten und Beiträge */
/* Fixe 3rem Abstände nach oben und unten*/
/* Responsive Seitenränder */
.page-margins {
  padding: 3rem clamp(12rem, calc(12rem + ((1vw - 1.4rem) * 24)), 60rem);
}
/* Standard-Layout für einen inhaltlichen Abschnitt */
/* Zentriert, abgerundet, leicht schattiert, luftiger Abstand oben/unten. */
.page-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  margin: 3rem 0;
  padding: 0.6rem;
  background-color: rgba(43, 59, 67, 0.02);
  border-radius: 0.5rem;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  width: 100%;
}
.page-item__heading {
  padding: 0.6rem;
  font-size: clamp(1.8rem, calc(1.8rem + ((1vw - 0.28rem) * 0.4)), 2.2rem);
  font-weight: 500;
}
.page-item__text {
  padding: 0.6rem;
  font-size: clamp(1.6rem, calc(1.6rem + ((1vw - 0.28rem) * 0.2)), 1.8rem);
  font-weight: 400;
}
.page-item__bso--more.ct-div-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 2rem;
  width: 100%;
}
/* Horizontale Variante von .page-item */
/* Eine Box, bei der Inhalt horizontal nebeneinander liegt (statt column) */
.page-item__left {
  display: flex;
  flex-direction: row;
  align-items: left;
  text-align: left;
  margin: 3rem 0;
  padding: 0.6rem;
  background-color: rgba(43, 59, 67, 0.02);
  border-radius: 0.5rem;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  width: 100%;
}
/* „Nackte“ Version, ohne padding, ohne Hintergrund, ohne Schatten */
/* wenn man Struktur braucht, aber keine visuelle Gestaltung */
.page-item__pure {
  margin: 3rem 0;
  width: 100%;
}
/* ==========================================================================
   MODERNE LISTENPUNKTE – WPCodeBox Snippet
   Nutze z. B. class="list-triangle", "list-check", etc. im WP-Editor
   ========================================================================== */
/*  Basis-Stil: keine Standardpunkte, kein Einzug */
/* Gemeinsames Grundlayout */
ul.list-triangle, ul.list-dot, ul.list-check, ul.list-star, ul.list-dash {
  list-style: none;
  padding-left: 0;
}
ul.list-triangle li, ul.list-dot li, ul.list-check li, ul.list-star li, ul.list-dash li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 0.5em;
}
ul[class^="list-"] li {
  display: block;
  position: relative;
  margin-bottom: 1.2em;
}
/* ▸ Dreieck nach rechts */
ul.list-triangle li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 0;
  height: 0;
  border-top: clamp(0.2em, 0.25em + 0.2vw, 0.4em) solid transparent;
  border-bottom: clamp(0.2em, 0.25em + 0.2vw, 0.4em) solid transparent;
  border-left: 0.6em solid #2a5184;
  transition: border-left-color 0.4s ease, transform 0.3s ease;
}
ul.list-triangle li:hover::before {
  border-left-color: #f26659;
  transform: translateX(0.2em);
}
/* ● Punkt */
ul.list-dot li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0.2em;
  color: #2a5184;
  font-size: clamp(0.8rem, 1vw, 1.2rem);
  display: inline-block;
  margin-right: 0.5em;
  vertical-align: middle;
  transition: transform 0.3s ease, color 0.3s ease;
}
ul.list-dot li:hover::before {
  color: #f26659;
  transform: scale(1.4);
}
/* ✓ Haken */
ul.list-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.2em;
  color: #2a5184;
  font-size: clamp(1.1rem, 1.3vw, 1.6rem);
  display: inline-block;
  margin-right: 0.5em;
  vertical-align: middle;
  transition: transform 0.4s ease, color 0.4s ease;
}
ul.list-check li:hover::before {
  color: #2dee01;
  transform: rotate(25deg);
}
/* ★ Stern */
ul.list-star li::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 0.2em;
  color: #2a5184;
  font-size: clamp(0.9rem, 1vw, 1.4rem);
  display: inline-block;
  margin-right: 0.5em;
  vertical-align: middle;
  transition: color 0.3s ease, transform 0.3s ease;
}
ul.list-star li:hover::before {
  color: #f5ed01;
  transform: scale(1.2);
}
/* — Strich */
ul.list-dash li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 0.2em;
  color: #2a5184;
  font-size: clamp(1.2rem, 1.2vw, 1.4rem);
  display: inline-block;
  margin-right: 0.5em;
  vertical-align: middle;
  transition: transform 0.3s ease, color 0.3s ease;
}
ul.list-dash li:hover::before {
  color: #f26659;
  transform: translateX(0.3em);
}
/* ---------------------------------------- */
/* Für in Oxygen mit Div's erstellte Listen */
/* ---------------------------------------- */
.oxygen-pseudo-list__row {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.oxygen-pseudo-list__row--indent {
  padding-left: clamp(0.3rem, calc(0.3rem + ((1vw - 0.28rem) * 1.2)), 1.5rem);
}
.oxygen-pseudo-list__row--text {
  padding: 0.5rem 0.4rem;
}
.oxygen-pseudo-list__row:hover .oxygen-pseudo-list__icon {
  transform: translateX(4px);
  color: #2a5184;
  fill: #2a5184;
}
.oxygen-pseudo-list__row:hover .oxygen-pseudo-list__icon--bo7 {
  color: #800080;
  fill: #800080;
}
.oxygen-pseudo-list__row:hover .oxygen-pseudo-list__icon--bo8 {
  color: #008000;
  fill: #008000;
}
.oxygen-pseudo-list__row:hover .oxygen-pseudo-list__icon--bo9 {
  color: #333399;
  fill: #333399;
}
.oxygen-pseudo-list__row:hover .oxygen-pseudo-list__icon--bo10 {
  color: #c95102;
  fill: #c95102;
}
.oxygen-pseudo-list__icon {
  transition: transform 0.3s ease, color 0.3s ease, fill 0.3s ease;
  margin-right: 1.2rem;
  color: #888;
  fill: #888;
  width: clamp(1.5rem, 2vw, 2.5rem);
  height: clamp(1.5rem, 2vw, 2.4rem);
  display: flex;
  align-items: center;
  justify-content: center;
}
.oxygen-pseudo-list__icon svg {
  width: 100% !important;
  height: 100% !important;
  display: block;
}
/* Kleinere Schriftgröße für h1 */
.heading__h1 {
  display: flex;
  justify-content: center;
  padding: 3rem 1rem;
  width: 100%;
}
.heading__h1--small {
  font-size: clamp(2.6rem, 3vw, 3.6rem);
  font-weight: 400;
  line-height: 1.4;
}
/* Kleinere Schriftgröße für h2 */
.heading__h2--small {
  font-size: clamp(2rem, 2.5vw, 3rem);
  font-weight: 400;
  line-height: 1.4;
}
/* Kleinere Schriftgröße für h3 */
.heading__h3--small {
  font-size: clamp(1.8rem, 2vw, 2.6rem);
  font-weight: 400;
  line-height: 1.4;
}
/* Kleinere Schriftgröße für H2–H4 */
.heading-small {
  font-size: clamp(1.8rem, 2vw, 2.6rem);
  font-weight: 500;
  line-height: 1.4;
}
/* Größere Headings – auch für h3/h4 */
.heading-large {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
}
/* Blassere, weniger dominante Überschrift */
.heading-muted {
  color: #777;
  font-weight: 400;
}
/* Farbvariante – Primärfarbe */
.heading-primary {
  color: #2a5184;
}
/* Farbvariante – Akzentfarbe */
.heading-accent {
  color: #f26659;
}
/* Alle Großbuchstaben */
.heading-uppercase {
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 400;
}
/* Dezenter Abstand unten */
.heading-spaced {
  margin-bottom: 1.5rem;
}
.custom-table {
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100%;
  border-collapse: collapse;
}
.custom-table thead {
  color: white;
  background-color: #ff7569;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.custom-table tbody tr:nth-child(odd) {
  background-color: #ffffff;
}
.custom-table tbody tr:nth-child(even) {
  background-color: #c9ffd5;
}
.custom-table th, .custom-table td {
  padding: 0.75rem;
  text-align: left;
  border: 1px solid #ddd !important;
}
@media (max-width: 768px) {
  .custom-table th, .custom-table td {
    font-size: 0.875rem;
    padding: 0.5rem;
  }
}
.wp-block-button.custom-button > .wp-block-button__link {
  all: unset;
  display: inline-block;
  background-color: #2a5184;
  color: #ffffff;
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
  cursor: pointer;
}
.wp-block-button.custom-button > .wp-block-button__link:hover, .wp-block-button.custom-button > .wp-block-button__link:focus {
  background-color: #3e6ba8;
  color: #ffffff;
}
.wp-block-button.custom-button > .wp-block-button__link:active {
  background-color: #23426a;
}
@media (max-width: 768px) {
  .wp-block-button.custom-button > .wp-block-button__link {
    font-size: 0.9rem;
    padding: 0.65rem 1.2rem;
  }
}
/* Top- und Bottom Row gleiche Höhe */
.header-wrapper.ct-div-block {
  display: flex;
  flex-direction: column;
  height: 11rem;
}
.header-row.ct-div-block {
  flex: 1;
  display: flex;
}
#div_block-450-6672.header-row__top {
  padding-inline: 6vw;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
/*** Search Top Row ***/
#div_block-452-6672 {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.search-submit {
  display: none;
}
/* Suchfeld Standard */
.search-field {
  background-color: white;
  opacity: 0;
  width: 0;
  position: absolute;
  top: 0;
  right: 0;
  /* rechts vom Icon ausgerichtet */
  z-index: 999;
  transition: width 0.3s ease, opacity 0.3s ease;
  padding: 0;
  border-radius: 5px;
}
/* Icon klickbar */
#fancy_icon-460-6672 {
  cursor: pointer;
  position: relative;
  /* falls nötig */
  z-index: 1000;
}
#div_block-457-6672 {
  position: relative;
  z-index: 1;
  /* Der Container überlagert das Suchfeld  */
}
#div_block-457-6672:hover .search-field {
  width: 150px;
  top: -4px;
  opacity: 1;
  left: -154px;
  border-radius: 5px;
}
/* Kontakt Button bei Hover */
#link_button-718-6672.header-kontakt:hover {
  color: #f26659;
}
/* Standardansicht: Top Row Suchfeld sichtbar */
#link_text-454-6672 {
  color: #414c8b;
  transition: color 0.3s ease, transform 0.3s ease;
}
#link_text-454-6672:hover {
  color: #f26659;
  transform: scaleX(1.015);
}
.ct-fancy-icon.cdf-search-top {
  display: block;
}
@media (max-width: 992px) {
  #div_block-457-6672:hover .search-field {
    top: -7px;
  }
}
/* Ab 768px und kleiner: Top Row Suchfeld unsichtbar */
@media (max-width: 767px) {
  .ct-fancy-icon.cdf-search-top {
    display: none;
  }
}
/*** Search Bottom Row ***/
#div_block-682-6672.ct-div-block.main-bottom {
  background-color: #525fab;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  padding-inline: 6vw;
}
.ct-div-block.main-bottom form.header-search input.search-input {
  width: 100%;
  border-radius: 5px;
  display: none;
}
@media (max-width: 768px) {
  .ct-div-block.main-bottom form.header-search input.search-input {
    display: block;
  }
}
@media (max-width: 320px) {
  #div_block-682-6672.ct-div-block.main-bottom {
    justify-content: center;
    gap: 1px;
  }
  .ct-div-block.main-bottom form.header-search input.search-input {
    max-width: 120px;
  }
}
.footer {
  background: #f9f7f0;
  color: #2a5184;
  padding: 2rem clamp(2rem, calc(2rem + ((1vw - 0.28rem) * 13)), 15rem);
}
.footer__columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
@media (max-width: 768px) {
  .footer__columns {
    grid-template-columns: repeat(2, 1fr);
  }
}
.footer__heading {
  position: relative;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.footer__heading::after {
  content: "";
  display: block;
  width: 3rem;
  height: 2px;
  background-color: #f26659;
  position: absolute;
  bottom: -0.3rem;
  left: 0;
}
.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__link {
  font-size: clamp(1.3rem, calc(1.3rem + ((1vw - 0.28rem) * 0.3)), 1.6rem);
  color: #2a5184;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.5rem;
}
.footer__link:hover {
  text-decoration: underline;
  color: #f26659;
}
.footer__logo {
  max-width: 100px;
  margin-top: 1rem;
  display: block;
  width: 4rem;
}
.contact-container {
  position: relative;
  border-radius: 0.5rem;
}
.contact-modal {
  padding: 3rem clamp(1rem, calc(1rem + ((1vw - 0.28rem) * 5)), 6rem);
  color: #2a5184;
  font-family: sans-serif;
}
.contact-modal__wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.contact-modal__heading {
  font-size: clamp(1.8rem, calc(1.8rem + ((1vw - 0.28rem) * 1.2)), 3rem);
  font-weight: 200;
  color: #2a5184;
}
.contact-modal__subtext {
  font-size: clamp(1.6rem, calc(1.6rem + ((1vw - 0.28rem) * 0.6)), 2.2rem);
  font-weight: 300;
  margin-top: 0.7rem;
}
.contact-modal__subheading {
  font-size: clamp(1.6rem, calc(1.6rem + ((1vw - 0.28rem) * 0.9)), 2.5rem);
  font-weight: 300;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}
.contact-modal__item {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  margin-bottom: 0.5rem;
}
.contact-modal__icon {
  width: clamp(2rem, calc(2rem + ((1vw - 0.28rem) * 0.5)), 2.5rem);
  height: clamp(2rem, calc(2rem + ((1vw - 0.28rem) * 0.5)), 2.5rem);
  flex-shrink: 0;
  align-self: flex-end;
}
.contact-modal__icon svg {
  display: block;
  transform: translateY(-0.4rem);
  transition: transform 1s ease, fill 0.6s ease;
  fill: #2a5184;
}
.contact-modal__text {
  font-size: clamp(1.4rem, calc(1.4rem + ((1vw - 0.28rem) * 0.6)), 2rem);
  font-weight: 300;
  line-height: 1.6;
}
.contact-modal__link {
  font-size: clamp(1.4rem, calc(1.4rem + ((1vw - 0.28rem) * 0.6)), 2rem);
  font-weight: 300;
  color: #2a5184;
  text-decoration: none;
  transition: color 0.3s;
}
.contact-modal__link:hover {
  color: #f26659;
}
.contact-modal__spacer {
  height: 1rem;
}
/* Close Button */
#fancy_icon-588-6672.ct-fancy-icon.contact-close-button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  cursor: pointer;
}
#fancy_icon-588-6672.ct-fancy-icon.contact-close-button svg {
  width: clamp(2.7rem, calc(2.7rem + ((1vw - 0.28rem) * 1.3)), 4rem);
  height: clamp(2.7rem, calc(2.7rem + ((1vw - 0.28rem) * 1.3)), 4rem);
  transition: transform 1s ease, fill 0.6s ease;
  fill: #2a5184;
  transform: rotate(45deg);
}
#fancy_icon-588-6672.ct-fancy-icon.contact-close-button:hover svg {
  transform: scale(0.8) rotate(315deg);
}
.hero {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 2;
}
.hero__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  z-index: 1;
}
.hero__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
  color: white;
  font-size: clamp(2rem, calc(2rem + ((1vw - 0.28rem) * 2.5641)), 10rem);
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
  width: 100%;
}
@media (max-width: 480px) {
  .hero__text {
    font-size: 1.7rem;
  }
}
.about-school {
  width: 100%;
  max-width: 1100px;
  margin-bottom: 3rem;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  z-index: 10;
  border-radius: 5px;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  background-color: #fcef8d;
}
.about-school__icon-wrapper {
  display: flex;
  align-items: center !important;
  justify-content: center;
  width: 40%;
}
.about-school__icon {
  flex-shrink: 0;
}
.about-school__icon svg {
  width: 4rem;
  height: 4rem;
  fill: var(--primary-color);
}
.about-school__content {
  flex: 1;
}
.about-school__heading {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: bold;
}
.about-school__text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--test-color);
}
.about-school__button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-color);
  color: #fff;
  text-decoration: none;
  border-radius: 0.3rem;
  font-weight: 600;
  transition: background-color 0.3s;
}
.about-school__button:hover {
  background-color: var(--primary-color);
}
.current-events {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 1100px;
  padding: 1rem;
  margin: 2rem 0;
  align-items: center;
  gap: 2rem;
  background-color: #f26659;
  border-radius: 5px;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}
.current-events__heading {
  font-weight: 400;
  color: #fff;
  align-self: center;
  text-shadow: 1px 1px 1px #772d26;
}
.current-events__list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.current-events__list li {
  margin: 0;
  padding: 0;
  width: 100%;
  background: #fff;
  /* weißer Hintergrund */
  border-radius: 5px;
  /* abgerundete Ecken */
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  /* dezenter Schatten für Tiefe */
}
.current-events__list li a {
  display: block;
  padding: 10px 14px;
  /* Innenabstand */
  color: #111;
  /* fast schwarz */
  text-decoration: none;
  border-radius: 5px;
  /* Hover-Effekt folgt den Rundungen */
  transition: background 0.2s ease, color 0.2s ease;
}
.current-events__list li a:hover, .current-events__list li a:focus {
  background: #f5f5f5;
  color: #0073aa;
}
.current-events__empty {
  width: 100%;
  padding: 10px 14px;
  color: #111;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  text-align: center;
}
.carousel {
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
  padding: 2rem 0;
}
.carousel__viewport {
  overflow-x: auto;
  white-space: normal;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 1rem;
  -webkit-overflow-scrolling: touch;
}
.carousel__wrapper {
  padding-top: 1.2rem;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}
.carousel__card {
  flex: 0 0 auto;
  align-items: center;
  text-align: center;
  scroll-snap-align: start;
  scroll-margin-left: 1rem;
  border-radius: 10px;
  background-color: #f5f5f5;
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.carousel__card:hover {
  transform: translateY(-8px) scale(1.02);
  -webkit-transform: translateY(-8px) scale(1.02);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
  .carousel__card:hover {
    transform: translateY(-8px);
    -webkit-transform: translateY(-8px);
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.15);
  }
}
.carousel__card-icon.ct-fancy-icon {
  width: clamp(3rem, calc(3rem + ((1vw - 0.28rem) * 2.5)), 5.5rem);
  height: clamp(3rem, calc(3rem + ((1vw - 0.28rem) * 2.5)), 5.5rem);
  color: #fff;
  outline: 2px solid #fff;
  padding: 0.5em;
  margin: 2rem 2rem;
  align-items: center;
  justify-content: center;
}
.carousel__card-heading {
  max-width: 100%;
  font-size: clamp(1.8rem, calc(1.8rem + ((1vw - 0.28rem) * 0.6)), 2.4rem);
  font-weight: 400;
  color: white;
  margin-bottom: 2.5rem;
}
.carousel__card-text {
  max-width: 100%;
  font-size: clamp(1.6rem, calc(1.6rem + ((1vw - 0.28rem) * 0.4)), 2rem);
  font-weight: 300;
  color: white;
}
.carousel__dots {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  width: 100%;
}
.carousel__dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: #ccc;
  border-radius: 50%;
  flex-shrink: 0;
  flex: 0 0 auto;
}
.carousel__dot--active {
  background-color: #333;
  transform: scale(1.2);
}
@media (max-width: 768px) {
  .carousel__dot {
    display: none;
  }
}
.carousel__dots.ct-div-block {
  display: flex;
  flex-direction: row;
}
.post-grid__wrapper.ct-div-block {
  align-items: center;
}
.post-grid {
  max-width: 1100px;
  display: flex;
  flex-wrap: wrap;
  margin: 2rem -10px;
}
.post-grid__heading {
  padding-top: 2rem;
  font-size: 3rem;
  font-weight: 400;
}
.post-grid__item {
  width: calc(33.33% - 20px);
  margin: 0 10px 20px;
  box-sizing: border-box;
  padding: 1em;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.post-grid__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.post-grid__image-link {
  display: block;
}
.post-grid__image {
  padding-bottom: 60%;
  background-size: cover;
  background-position: center;
  border-radius: 5px;
  transition: transform 0.3s;
}
.post-grid__title {
  display: block;
  margin-top: 1.5rem;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--global-text-color, inherit);
  line-height: 1.2;
}
.post-grid__excerpt {
  margin: 0.5em 0 1.5em;
  color: var(--global-text-color, inherit);
  font-size: 1.6rem;
  font-weight: 300;
}
.post-grid__read-more {
  color: #fd5308;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 1.5rem;
  font-weight: 400;
  padding: 6px;
  border: 1px solid #000;
  border-radius: 5px;
}
.post-grid__read-more:hover {
  color: #00adef;
}
@media (max-width: 1024px) {
  .post-grid__item {
    width: calc(50% - 20px);
  }
  .post-grid__title {
    font-size: 1.8rem;
    font-weight: 400;
  }
}
@media (max-width: 768px) {
  .post-grid {
    gap: 15px;
  }
  .post-grid__item {
    width: 100%;
  }
  .post-grid__title {
    font-size: 1.6rem;
    font-weight: 400;
  }
}
.home-parallax {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.home-parallax__shape {
  position: absolute;
  z-index: -1;
  opacity: 0.2;
  will-change: transform;
  animation-name: float-dynamic;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  border: 1px solid rgba(210, 208, 208, 0.7);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
}
.home-parallax__shape--circle {
  width: 17rem;
  height: 17rem;
  border-radius: 50%;
  background: rgba(0, 80, 250, 0.25);
  top: 20%;
  left: 5%;
  animation-duration: 18s;
  animation-delay: 0s;
}
.home-parallax__shape--blob {
  width: 15rem;
  height: 15rem;
  border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%;
  background: rgba(255, 200, 0, 0.45);
  bottom: 20%;
  left: 10%;
  animation-duration: 22s;
  animation-delay: 1.5s;
}
.home-parallax__shape--tiny {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: rgba(0, 255, 150, 0.5);
  top: 35%;
  right: 8%;
  animation-duration: 16s;
  animation-delay: 0.5s;
}
.home-parallax__shape--note {
  width: 8rem;
  height: 8rem;
  background: rgba(200, 0, 100, 0.25);
  bottom: 12%;
  right: 5%;
  animation-duration: 20s;
  animation-delay: 2s;
}
.home-parallax__shape--poly1 {
  width: clamp(14rem, 20vw, 30rem);
  height: clamp(14rem, 20vw, 30rem);
  left: clamp(3rem, calc(3rem + ((1vw - 0.28rem) * 18.2692)), 60rem);
  top: 35rem;
  border-radius: 50% 50% 60% 40% / 50% 60% 40% 50%;
  background: rgba(255, 0, 0, 0.613);
  animation: float-dynamic 28s ease-in-out infinite;
  animation-delay: 3s;
}
@media (max-width: 768px) {
  .home-parallax__shape--poly1 {
    top: 25rem;
  }
}
@media (max-width: 480px) {
  .home-parallax__shape--poly1 {
    top: 37rem;
  }
}
.home-parallax__shape--poly2 {
  width: clamp(15rem, calc(15rem + ((1vw - 0.28rem) * 7.0513)), 37rem);
  height: clamp(15rem, calc(15rem + ((1vw - 0.28rem) * 7.0513)), 37rem);
  border-radius: 40% 60% 70% 45% / 60% 40% 80% 40%;
  background: rgba(255, 225, 0, 0.7);
  left: clamp(3rem, calc(3rem + ((1vw - 0.28rem) * 40.7051)), 130rem);
  top: 28rem;
  animation: float-dynamic 22s ease-in-out infinite;
  animation-delay: 1.5s;
}
@media (max-width: 768px) {
  .home-parallax__shape--poly2 {
    top: 20rem;
  }
}
@media (max-width: 480px) {
  .home-parallax__shape--poly2 {
    top: 30rem;
  }
}
.home-parallax__shape--poly3 {
  width: clamp(12rem, calc(12rem + ((1vw - 0.28rem) * 18)), 30rem);
  height: clamp(12rem, calc(12rem + ((1vw - 0.28rem) * 18)), 30rem);
  border-radius: 60% 40% 30% 70% / 60% 40% 85% 50%;
  background: rgba(3, 245, 229, 0.6);
  top: 32rem;
  right: clamp(3rem, calc(3rem + ((1vw - 0.28rem) * 40.7051)), 130rem);
  animation: float-dynamic 19s ease-in-out infinite;
  animation-delay: 0.5s;
}
@media (max-width: 768px) {
  .home-parallax__shape--poly3 {
    top: 26rem;
  }
}
@media (max-width: 480px) {
  .home-parallax__shape--poly3 {
    top: 40rem;
  }
}
.home-parallax__shape--poly4 {
  width: clamp(10rem, calc(10rem + ((1vw - 0.28rem) * 15)), 25rem);
  height: clamp(15rem, calc(15rem + ((1vw - 0.28rem) * 15)), 30rem);
  border-radius: 80% 45% 35% 65% / 40% 60% 74% 40%;
  background: rgba(102, 0, 255, 0.6);
  top: 29rem;
  right: clamp(3rem, calc(3rem + ((1vw - 0.28rem) * 24.6795)), 80rem);
  animation: float-dynamic 25s ease-in-out infinite;
  animation-delay: 2.2s;
}
@media (max-width: 768px) {
  .home-parallax__shape--poly4 {
    top: 23rem;
  }
}
@media (max-width: 480px) {
  .home-parallax__shape--poly4 {
    top: 39rem;
  }
}
@keyframes float-dynamic {
  0% {
    transform: translateY(0px) scale(1) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) scaleX(1.05) scaleY(0.85) rotate(25deg);
  }
  50% {
    transform: translateY(-45px) scaleX(0.97) scaleY(1.1) rotate(-12deg);
  }
  75% {
    transform: translateY(-15px) scale(0.95) rotate(4deg);
  }
  100% {
    transform: translateY(0px) scale(1) rotate(0deg);
  }
}
.ag-grid__card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 0.5rem;
  transition: transform 0.5s ease-in-out;
}
.ag-grid__card img {
  transition: transform 0.5s ease-in-out;
}
.ag-grid__card:hover img {
  transform: scale(1.1);
}
.ag-grid__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  transition: background-color 0.5s ease-in-out;
  z-index: 2;
}
.ag-grid__card:hover::before {
  background-color: rgba(0, 0, 0, 0.4);
}
.ag-grid__heading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  z-index: 4;
}
.oxel_flipbox {
  margin: 3rem 0;
}
.oxel_flipbox__front, .oxel_flipbox__back {
  transition: 1s all ease-in-out;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  min-height: 400px;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
}
.oxel_flipbox__front {
  transform: rotateX(0deg);
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
}
body.ng-scope .oxel_flipbox__back {
  transform: rotateX(0deg);
  position: static;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
}
body:not(.ng-scope) .oxel_flipbox:hover .oxel_flipbox__front {
  transform: rotateX(-180deg);
}
body:not(.ng-scope) .oxel_flipbox:hover .oxel_flipbox__back {
  transform: rotateX(0deg);
}
.oxel_flipbox__front *, .oxel_flipbox__back * {
  transform: translateZ(60px);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.oxel_flipbox__icon-wrapper {
  animation: icon-wobble 7.5s ease-in-out infinite both;
  display: inline-block;
}
@keyframes icon-wobble {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(42deg) scale(1.2);
  }
  100% {
    transform: rotate(0deg) scale(1);
  }
}
.bso-grades {
  margin-right: 1rem;
}
.profile {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 1.5rem;
  margin: 1rem 0;
  width: 100%;
  border: 1px solid #eee;
  border-radius: 0.5rem;
}
.profile__image-wrapper {
  flex: 0 0 auto;
  max-width: 17rem;
}
.profile__image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}
.profile__role {
  width: 100%;
  padding-left: 1rem;
}
.profile__name {
  width: 100%;
  padding-left: 1rem;
}
.profile__content {
  flex: 1 1 20rem;
}
.profile__info {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.25rem 1rem;
  margin-top: 1rem;
  padding: 1rem;
}
.profile__label {
  font-weight: bold;
  align-self: start;
  white-space: nowrap;
  min-width: 12rem;
}
.profile__value {
  align-self: start;
  word-break: break-word;
}
@media (max-width: 768px) {
  .profile {
    flex-direction: column;
    align-items: center;
  }
  .profile__image-wrapper {
    width: 50%;
    width: clamp(8rem, 50%, 17rem);
    margin-left: auto;
    margin-right: auto;
  }
  .profile__heading {
    padding-left: 0;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .profile__content {
    width: 100%;
    flex: 1 1 auto;
  }
  .profile__info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 480px) {
  .profile__image-wrapper {
    padding-left: 0;
  }
  .profile__content {
    flex: 1 0 auto;
  }
  .profile__info {
    padding-left: 0;
  }
}
.ct-div-block#div_block-151-753.bso-grid__wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 8px;
  width: 100%;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .ct-div-block#div_block-151-753 {
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)) !important;
  }
}
@media (max-width: 768px) {
  .ct-div-block#div_block-9-753 {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)) !important;
  }
}
/* Allgemeine Tab-Stile */
.oxy-tab {
  transition: all 0.3s ease;
}
.oxy-tab__lable {
  color: #060313;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.912);
}
.oxy-tab__text {
  width: 100%;
  text-align: center;
}
/* Stil für den aktiven Tab */
.tabs-0930-tab-active {
  transform: scale(1.05);
  /* Größerer aktiver Tab */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  /* Kleiner Box-Shadow */
  background-color: #e5e9fd;
  /* Optional: leicht anderer Hintergrund */
}
/* Stile für die inaktiven Tabs */
.oxy-tab:not(.tabs-0930-tab-active) {
  transform: scale(1);
  box-shadow: none;
}
.bso-jg__wrapper {
  padding: 1rem 0px;
  width: 100%;
}
.bso-jg__heading-wrapper.ct-div-block {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  text-align: left;
}
.bso-jg__heading-grades {
  font-size: clamp(1.8rem, calc(1.8rem + ((1vw - 0.28rem) * 0.6)), 2.4rem);
  padding-right: 1rem;
  line-height: 1.4;
}
.bso-jg__heading-grades--bo7 {
  color: #800080;
}
.bso-jg__heading-grades--bo8 {
  color: #008000;
}
.bso-jg__heading-grades--bo9 {
  color: #333399;
}
.bso-jg__heading-grades--bo10 {
  color: #c95102;
}
.kunst-columns {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 1rem;
}
.kunst-columns__cards {
  padding: 0.4rem;
}
.kunst-columns__link-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  box-sizing: border-box;
  transition: transform 0.3s ease-in-out;
  border-radius: 2rem;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}
.kunst-columns__link-wrapper--left-card {
  background-color: rgba(115, 8, 165, 0.93);
}
.kunst-columns__link-wrapper--middle-card {
  background-color: rgba(90, 112, 2, 0.9);
}
.kunst-columns__link-wrapper--right-card {
  background-color: rgba(173, 101, 0, 0.91);
}
@media (max-width: 767px) {
  .kunst-columns__link-wrapper {
    width: 100%;
  }
}
.kunst-columns__link-wrapper a {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.kunst-columns__link-wrapper a > * {
  flex-grow: 1;
}
.kunst-columns__link-wrapper:hover {
  transform: translateY(-5px);
}
.kunst-columns__card-icon {
  margin-top: 2rem;
  color: rgba(249, 247, 240, 0.56);
}
.kunst-columns__card-heading {
  margin-top: 1rem;
  line-height: 1.2;
  color: #fff;
  font-size: clamp(2.5rem, calc(2.5rem + ((1vw - 0.28rem) * 1.5)), 4rem);
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.66);
}
.kunst-columns__card-text {
  padding: 1rem 2rem;
  color: #fff;
  font-size: clamp(1.6rem, calc(1.6rem + ((1vw - 0.28rem) * 0.6)), 2.2rem);
  font-weight: 300;
  text-shadow: 1px 1px 3px rgba(5, 2, 2, 0.69);
}
@media (min-width: 767px) and (max-width: 900px) {
  .kunst-columns__card-text {
    font-size: clamp(1.6rem, calc(1.6rem + ((1vw - 0.67rem) * 1.7391)), 2rem);
  }
}
.nawi-columns {
  padding: 1rem;
}
.nawi-columns__levels {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  margin-bottom: 1rem;
  width: 100%;
}
.nawi-columns__heading {
  display: flex;
  justify-content: center;
  background-color: rgba(10, 0, 0, 0.06);
  padding: 1rem;
  width: 100%;
  border-radius: 4px;
  box-shadow: 2px 1px 1px 2px rgba(0, 0, 0, 0.1);
}
.nawi-columns__text {
  padding: 1rem;
  margin-top: 0.6rem;
  width: 100%;
  height: clamp(26rem, calc(26rem + ((1vw - 1.1rem) * 3.2258)), 27rem);
  text-shadow: 1px 1px 1px #fff;
  border-radius: 4px;
  box-shadow: 2px 2px 4px 2px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1280px) {
  .nawi-columns__text {
    height: 28rem;
  }
}
@media (max-width: 992px) {
  .nawi-columns__text {
    height: clamp(33rem, calc(33rem + ((1vw - 0.76rem) * -20.8333)), 28rem);
  }
}
@media (max-width: 767px) {
  .nawi-columns__text {
    height: clamp(21rem, calc(21rem + ((1vw - 0.28rem) * -14.2857)), 14rem);
  }
}
.nawi-columns__physik--jg7 {
  background-color: #e7f4cc;
}
.nawi-columns__physik--jg8 {
  background-color: #dbefb2;
}
.nawi-columns__physik--jg9 {
  background-color: #cfea99;
}
.nawi-columns__physik--jg10 {
  background-color: #c3e57f;
}
.nawi-columns__bio--jg7 {
  background-color: #fedccd;
}
.nawi-columns__bio--jg8 {
  background-color: #fecbb4;
}
.nawi-columns__bio--jg9 {
  background-color: #f4b89c;
}
.nawi-columns__bio--jg10 {
  background-color: #fea983;
}
.nawi-columns__chemie--jg7 {
  background-color: #cceefb;
}
.nawi-columns__chemie--jg8 {
  background-color: #aee2f2;
}
.nawi-columns__chemie--jg9 {
  background-color: #99def8;
}
.nawi-columns__chemie--jg10 {
  background-color: #7fd6f7;
}
.music-game {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  margin: 4rem auto;
  text-align: center;
}
.music-game__circle {
  position: relative;
  width: clamp(250px, 40vw, 400px);
  height: clamp(250px, 40vw, 400px);
  border-radius: 50%;
}
.music-game__new-sequence, .music-game__feedback, .music-game__feedback-options {
  margin-top: 1rem;
  z-index: 5;
}
@media (max-width: 992px) {
  .music-game__new-sequence, .music-game__feedback, .music-game__feedback-options {
    margin-top: clamp(1rem, calc(1rem + ((1vw - 0.28rem) * 0)), 1rem);
  }
}
.music-game__pad-container {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 0;
}
@media (min-width: 480px) {
  .music-game__pad-container {
    top: 20%;
  }
}
@media (min-width: 980px) {
  .music-game__pad-container {
    top: 25%;
  }
}
@media (min-width: 1400px) {
  .music-game__pad-container {
    top: 30%;
  }
}
.music-game__note {
  position: absolute;
  width: clamp(40px, 10vw, 100px);
  height: clamp(40px, 10vw, 100px);
  line-height: clamp(40px, 10vw, 100px);
  border-radius: 50%;
  box-shadow: 2px 1px 1px #ebcfed;
  border: 1px solid #ccc;
  cursor: pointer;
  text-align: center;
  font-weight: bold;
  transition: transform 0.1s ease, box-shadow 0.2s;
}
.music-game__note:active {
  background: yellow;
  transform: scale(0.9);
  opacity: 0.8;
}
.music-game__note.start-note {
  border: 3px solid gold;
  box-shadow: 0 0 10px gold;
}
.music-game__note.flash {
  transform: scale(1.1);
  box-shadow: 0 0 20px #fff, 0 0 30px currentColor;
}
.music-game .music-game__pad-container > .music-game__note:nth-of-type(1) {
  background: #daf8a5;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-180deg) translate(clamp(9rem, calc(9rem + ((1vw - 0.28rem) * 15.5172)), 27rem)) rotate(180deg);
}
.music-game .music-game__pad-container > .music-game__note:nth-of-type(2) {
  background: #a29bfe;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-150deg) translate(clamp(9rem, calc(9rem + ((1vw - 0.28rem) * 15.5172)), 27rem)) rotate(150deg);
}
.music-game .music-game__pad-container > .music-game__note:nth-of-type(3) {
  background: #74b9ff;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-120deg) translate(clamp(9rem, calc(9rem + ((1vw - 0.28rem) * 15.5172)), 27rem)) rotate(120deg);
}
.music-game .music-game__pad-container > .music-game__note:nth-of-type(4) {
  background: #55efc4;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-90deg) translate(clamp(9rem, calc(9rem + ((1vw - 0.28rem) * 15.5172)), 27rem)) rotate(90deg);
}
.music-game .music-game__pad-container > .music-game__note:nth-of-type(5) {
  background: #00b894;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-60deg) translate(clamp(9rem, calc(9rem + ((1vw - 0.28rem) * 15.5172)), 27rem)) rotate(60deg);
}
.music-game .music-game__pad-container > .music-game__note:nth-of-type(6) {
  background: #ffeaa7;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-30deg) translate(clamp(9rem, calc(9rem + ((1vw - 0.28rem) * 15.5172)), 27rem)) rotate(30deg);
}
.music-game .music-game__pad-container > .music-game__note:nth-of-type(7) {
  background: #fab1a0;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(0deg) translate(clamp(9rem, calc(9rem + ((1vw - 0.28rem) * 15.5172)), 27rem)) rotate(0deg);
}
.music-game .music-game__level {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  padding: clamp(1rem, 2vw, 1.5rem) clamp(1.5rem, 3vw, 2rem);
  border: none;
  border-radius: 50%;
  background: #7203a6;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 4px 6px 8px rgba(235, 207, 237, 0.6);
}
.music-game__new-sequence {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  background: #ffff02;
  color: #090909;
  cursor: pointer;
}
.music-game__feedback {
  margin-top: 10px;
  font-weight: bold;
  color: #fff;
}
.music-game__feedback-options {
  margin-top: 10px;
}
.music-game__feedback-options .music-game__try-again, .music-game__feedback-options .music-game__new-one {
  margin-top: 1rem;
  margin-right: 5px;
  padding: 0.4rem 0.8rem;
  border: none;
  border-radius: 4px;
  background: #555;
  color: #fff;
  cursor: pointer;
}
/* Grundstil der Karte */
.wp__link-wrapper {
  display: block;
  border-radius: 10px;
  transition: transform 0.5s ease-in-out;
}
.wp__link-wrapper:hover {
  transform: scale(1.02);
}
.wp__link-wrapper--overlay {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.wp__link-wrapper--overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
  pointer-events: none;
}
.wp__link-wrapper--overlay > img {
  display: block;
  width: 100%;
  height: auto;
}
.wp__link-wrapper--overlay > .wp__text {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: clamp(2rem, 2.5vw, 3rem);
  font-weight: 400;
  line-height: 1.4;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #fff;
  /* Textfarbe sichtbar über Overlay */
  text-align: center;
}
.search-results__wrapper {
  background-color: #6f00ff;
  padding: 1rem 2rem;
  border-radius: 5px;
}
.search-results {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
.search-results__list {
  list-style: none;
  background-color: #ffffff;
  border-radius: 5px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  padding: 1rem;
}
.search-results__list h2 {
  margin: 0 0 0.5rem;
  font-size: 4rem;
  font-weight: 500;
}
.search-results__list h2 a {
  color: #111;
  text-decoration: none;
  transition: color 0.2s ease;
}
.search-results__list h2 a:hover, .search-results__list h2 a:focus {
  color: #0073aa;
}
.search-results__list .ct-text-block {
  font-size: 1.6rem;
  color: #333;
}
.search-results__empty {
  width: 100%;
  padding: 1rem;
  text-align: center;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
