/*!****************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./node_modules/glob-import-loader/index.js!./assets/scss/app.scss ***!
  \****************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  overflow-x: hidden;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
  margin-block-start: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
}

/* Balance text wrapping on headings */
h1, h2,
h3, h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

body {
  font-family: "Inter", sans-serif;
  hyphens: auto;
  font-size: 16px;
}

.white {
  color: #FFFFFF;
}
.white a:hover {
  color: #242424;
}

a.white:hover {
  color: #242424;
}

li {
  padding: 0 0 10px;
}

h1 {
  /* Minimal 2.5rem, fließend mit 6vw, maximal 4.5rem */
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: #E4002B;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
}

h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
}

h4 {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
}

h5, .header__nav-link {
  font-size: clamp(1rem, 2vw, 1.75rem);
}

h6 {
  font-size: clamp(1rem, 1.2vw, 1.5rem);
}

p, li {
  /* Normaler Text: Minimal 1rem, fließend mit 0.8vw, maximal 1.25rem */
  font-size: clamp(1rem, 1.25vw, 1.25rem);
}

ul {
  margin: 0;
}

hr {
  border: 1px solid rgba(228, 0, 43, 0.5);
}

.pw-images__container {
  max-width: 100%;
  padding: 20px 0;
}
.pw-images__container picture:not(:last-of-type) {
  margin: 0 0 20px;
}
.pw-images__container.rund img {
  object-fit: cover; /* Stellt sicher, dass das Bild den Kreis ausfüllt */
  border-radius: 50%; /* Macht das Bild kreisförmig */
}

@media (min-width: 768px) {
  .pw-images__container {
    max-width: 50%;
  }
  .pw-images__container.center {
    margin: 0 auto;
  }
}
.pw-richtext__container p {
  padding: 0 0 10px;
}
.pw-richtext__container a:hover {
  color: #E4002B;
}

.pw-two-columns__container h2 {
  padding: 0 0 20px;
}
.pw-two-columns__grid {
  display: grid;
  gap: 20px;
}
.pw-two-columns__grid .pw-images__container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

@media (min-width: 768px) {
  .pw-two-columns__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.pw-footer {
  height: 140px;
  background-color: #E4002B;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.pw-footer .header__nav-link {
  margin: 0;
}

.header {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #E4002B;
  height: 140px;
  position: sticky;
  top: 0;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 92%;
  height: 75px;
}
.header__logo {
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__logo .logo {
  height: 100%;
  width: auto;
  margin: 0 20px 0 0;
}
.header__nav-link {
  margin: 0 0 0 10px;
  text-decoration: none;
}
.header__nav-link.active {
  color: #242424;
}

@media (min-width: 768px) {
  .header {
    height: 200px;
  }
  .header__inner {
    height: 100px;
    width: 80%;
  }
  .header__logo {
    height: 100px;
  }
  .header__logo .logo {
    margin: 0 20px 0 0;
  }
}
.main-content {
  padding: 20px 0;
  max-width: 92%;
  margin: 0 auto;
  min-height: calc(100vh - 280px);
}

.section {
  padding: 0 0 15px;
}

@media (min-width: 576px) {
  .main-content {
    padding: 50px 0;
    max-width: 68%;
  }
  .section {
    padding: 0 0 20px;
  }
}
@media (min-width: 1440px) {
  .main-content {
    max-width: 960px;
  }
  .section {
    padding: 0 0 25px;
  }
}
