/* 1. Die normale (aufrechte) Version */
@font-face {
  font-family: 'Inter';
  src: url('/static/fonts/Inter/InterVariable.ttf') format('truetype-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
/* 2. Die kursive Version */
@font-face {
  font-family: 'Inter';
  src: url('/static/fonts/Inter/InterVariable-Italic.ttf') format('truetype-variations');
  font-weight: 100 900;
  font-style: italic;
  /* Wichtig: Hier auf italic setzen */
  font-display: swap;
}
h1 {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
}
h2 {
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.25;
}
h3 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.3;
}
h4 {
  font-size: 1.25rem;
}
p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}
body ul {
  padding: 0 18px;
}
body ul li {
  font-weight: 400;
  line-height: 1.6;
}
.slider-horizontal-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #000;
  box-sizing: border-box;
}
.slider-horizontal-section .title {
  width: 100%;
  max-width: 1100px;
  padding-top: 5rem;
  margin-bottom: 0rem;
}
.slider-horizontal-section .title h1 {
  font-size: 3rem;
}
.slider-horizontal-section .subtitle {
  width: 100%;
  max-width: 1100px;
  margin: 0rem 0rem;
  color: #fff;
}
.slider-horizontal-section .closing-text {
  width: 100%;
  max-width: 1100px;
  margin: 2rem 0rem 8rem 0rem;
  color: #fff;
}
.slider-horizontal-section h1 {
  color: #AAB4C0;
}
.slider-horizontal-section .section-spacer {
  width: 100%;
  max-width: 1100px;
  height: 10rem;
}
.slider-horizontal-section .slider-container {
  width: 100%;
  max-width: 1100px;
  margin-top: 3rem;
}
.slider-horizontal-section .card {
  display: flex;
  flex-direction: column;
  background: #111111;
  border: 1px solid #343636;
  border-radius: 12px;
  padding: 0.5rem 1.5rem 1.5rem 1.5rem;
  min-height: 300px;
  height: 100%;
  width: 100%;
  min-width: unset;
  overflow: hidden;
  box-sizing: border-box;
  margin-right: 0;
}
.slider-horizontal-section .card .card-title {
  margin-top: 2.5rem;
  margin-bottom: 2rem;
  hyphens: auto;
  overflow-wrap: break-word;
}
.slider-horizontal-section .card .card-title h2 {
  margin: 0 0 1rem 0;
  letter-spacing: 0.05em;
  color: #fff;
  font-weight: 300;
}
.slider-horizontal-section .card .card-title h1,
.slider-horizontal-section .card .card-title h2,
.slider-horizontal-section .card .card-title p {
  margin: 0;
}
.slider-horizontal-section .card .card-text p {
  font-size: 18px;
}
.slider-horizontal-section .card .card-text {
  flex: 1 1 auto;
  margin-bottom: 0.5rem;
}
.slider-horizontal-section .card .card-text p {
  margin: 0;
  color: #fff;
}
.slider-horizontal-section .card .button-read-more {
  align-self: flex-end;
  margin-top: auto;
  padding: 12px;
  cursor: pointer;
  border-style: solid;
  border-radius: 12px;
  border-color: #343636;
  background: #111111;
  outline: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  color: #7d8282;
  opacity: 1;
  transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
  z-index: 50;
  transform: scale(0.7) rotate(90deg);
}
.slider-horizontal-section .card .button-read-more.visible {
  opacity: 1;
  visibility: visible;
}
.slider-horizontal-section .card .button-read-more svg {
  display: block;
  transition: transform 0.3s ease;
}
.slider-horizontal-section .card .button-read-more:hover svg {
  transform: scale(1.1);
  color: #fff;
}
.slider-horizontal-section .slider-container .swiper {
  padding-bottom: 70px;
}
.slider-horizontal-section .slider-container .swiper-wrapper {
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch;
  height: auto !important;
}
.slider-horizontal-section .slider-container .swiper-controls {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 15px;
  z-index: 10;
  color: #fff;
}
.slider-horizontal-section .slider-container .swiper-counter {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  line-height: 40px;
}
.slider-horizontal-section .slider-container .swiper-button-container {
  display: flex;
  align-items: center;
  gap: 8px;
}
.slider-horizontal-section .slider-container .swiper-button-prev,
.slider-horizontal-section .slider-container .swiper-button-next {
  position: static !important;
  margin: 0 !important;
  width: 40px !important;
  height: 40px !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  border-radius: 50% !important;
  border: 1px solid #fff !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
  color: #fff !important;
}
.slider-horizontal-section .slider-container .swiper-button-prev::after,
.slider-horizontal-section .slider-container .swiper-button-next::after {
  font-size: 18px;
  color: #fff !important;
  font-weight: bold;
}
.slider-horizontal-section .slider-container .swiper-button-prev:hover,
.slider-horizontal-section .slider-container .swiper-button-next:hover {
  transform: scale(1.05) !important;
}
.slider-horizontal-section .slider-container .swiper-button-prev.swiper-button-disabled,
.slider-horizontal-section .slider-container .swiper-button-next.swiper-button-disabled {
  opacity: 0.35 !important;
  cursor: not-allowed;
}
.slider-horizontal-section .slider-container .swiper-button-hidden {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}
.slider-horizontal-section .slider-container .swiper-slide {
  flex-shrink: 0 !important;
  width: 490px;
  height: auto;
  display: flex;
}
.slider-horizontal-section.light {
  background: #fff;
}
.slider-horizontal-section.light h1 {
  color: #000;
}
.slider-horizontal-section.light .subtitle {
  color: #000;
}
.slider-horizontal-section.light .closing-text {
  color: #000;
}
.slider-horizontal-section.light .card {
  background: #f9f9f9;
  border-color: #d0d0d0;
}
.slider-horizontal-section.light .card .card-title h2 {
  color: #000;
}
.slider-horizontal-section.light .card .card-text p {
  color: #000;
}
.slider-horizontal-section.light .card .button-read-more {
  border-color: #d0d0d0;
  background: #f9f9f9;
  color: #555;
}
.slider-horizontal-section.light .card .button-read-more:hover svg {
  color: #000;
}
.slider-horizontal-section.light .slider-container .swiper-controls {
  color: #000;
}
.slider-horizontal-section.light .slider-container .swiper-counter {
  color: #000;
}
.slider-horizontal-section.light .slider-container .swiper-button-prev,
.slider-horizontal-section.light .slider-container .swiper-button-next {
  border-color: #000 !important;
  color: #000 !important;
}
.slider-horizontal-section.light .slider-container .swiper-button-prev::after,
.slider-horizontal-section.light .slider-container .swiper-button-next::after {
  color: #000 !important;
}
@media only screen and (min-width: 993px) and (max-width: 1200px) {
  .slider-horizontal-section {
    padding: 0 2rem;
  }
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .slider-horizontal-section {
    padding: 0 2rem;
  }
  .slider-horizontal-section .subtitle p,
  .slider-horizontal-section .closing-text p {
    font-size: 1.25rem;
  }
  .slider-horizontal-section .closing-text {
    margin-top: 2.5rem;
  }
  .slider-horizontal-section .section-spacer {
    width: 100%;
    max-width: 100%;
    height: 4rem;
  }
}
@media only screen and (min-width: 481px) and (max-width: 576px) {
  .slider-horizontal-section {
    padding: 0 2rem;
  }
  .slider-horizontal-section .title {
    padding-top: 3rem;
  }
  .slider-horizontal-section .title h1 {
    font-size: 2.5rem;
  }
  .slider-horizontal-section .subtitle p,
  .slider-horizontal-section .closing-text p {
    font-size: 1.25rem;
  }
  .slider-horizontal-section .slider-container {
    margin-top: 0rem;
    padding-right: 4rem;
  }
  .slider-horizontal-section .slider-container .swiper {
    padding-bottom: 40px;
  }
  .slider-horizontal-section .closing-text {
    margin: 3rem 0 6rem 0;
  }
  .slider-horizontal-section .section-spacer {
    height: 3rem;
  }
  .slider-horizontal-section .card {
    min-height: 190px;
    padding: 0.5rem 1rem 1rem;
  }
  .slider-horizontal-section .card .card-title {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
  }
  .slider-horizontal-section .card .card-title h2 {
    font-size: 2rem;
  }
  .slider-horizontal-section .card .card-text {
    margin-bottom: 1rem;
  }
  .slider-horizontal-section .card .card-text p {
    font-size: 16px;
  }
  .slider-horizontal-section .swiper-slide {
    width: min(464px, calc(100vw - 6rem)) !important;
  }
}
@media only screen and (min-width: 577px) and (max-width: 768px) {
  .slider-horizontal-section {
    padding: 0 2rem;
  }
  .slider-horizontal-section .title {
    padding-top: 3rem;
  }
  .slider-horizontal-section .title h1 {
    font-size: 3rem;
  }
  .slider-horizontal-section .slider-container {
    margin-top: 0rem;
  }
  .slider-horizontal-section .subtitle p,
  .slider-horizontal-section .closing-text p {
    font-size: 1.25rem;
  }
  .slider-horizontal-section .section-spacer {
    height: 3rem;
  }
  .slider-horizontal-section .card {
    min-height: 220px;
    padding: 0.5rem 1rem 1rem;
    min-width: fit-content;
  }
  .slider-horizontal-section .card .card-title {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
  }
  .slider-horizontal-section .card .card-title h2 {
    font-size: 2.25rem;
  }
  .slider-horizontal-section .card .card-text {
    margin-bottom: 1rem;
  }
  .slider-horizontal-section .card .card-text p {
    font-size: 18px;
  }
  .slider-horizontal-section .swiper-slide {
    width: 320px;
  }
}
@media only screen and (max-width: 480px) {
  .slider-horizontal-section {
    padding: 0 2rem;
  }
  .slider-horizontal-section .title {
    padding-top: 3rem;
  }
  .slider-horizontal-section .title h1 {
    font-size: 2.5rem;
    word-wrap: break-word;
    hyphens: auto;
  }
  .slider-horizontal-section .slider-container {
    margin-top: 0rem;
  }
  .slider-horizontal-section .slider-container .swiper {
    padding-bottom: 40px;
  }
  .slider-horizontal-section .subtitle p,
  .slider-horizontal-section .closing-text p {
    font-size: 1.25rem;
  }
  .slider-horizontal-section .section-spacer {
    height: 3rem;
  }
  .slider-horizontal-section .card {
    min-height: 120px;
    padding: 0.5rem 1rem 1rem;
  }
  .slider-horizontal-section .card .card-title {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
  }
  .slider-horizontal-section .card .card-title h2 {
    font-size: 1.5rem;
  }
  .slider-horizontal-section .card .card-text {
    margin-bottom: 1rem;
  }
  .slider-horizontal-section .card .card-text p {
    font-size: 16px;
  }
  .slider-horizontal-section .swiper-slide {
    width: 280px !important;
  }
}
