/* 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;
}
.text-with-lists-section {
  display: grid;
  justify-content: center;
  padding: 5rem 0;
}
.text-with-lists-section .content-wrapper {
  max-width: 1100px;
  width: 100%;
}
.text-with-lists-section .title {
  color: #AAB4C0;
  margin-bottom: 0rem;
}
.text-with-lists-section .text,
.text-with-lists-section .highlight-subtext {
  margin-bottom: 1.5rem;
}
.text-with-lists-section .text p,
.text-with-lists-section .highlight-subtext p {
  font-size: 18px;
  margin-top: 0rem;
  margin-bottom: 0rem;
}
.text-with-lists-section .highlights {
  display: grid;
  gap: 0rem;
  width: 100%;
}
.text-with-lists-section.layout-horizontal .highlights {
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: auto 1fr auto;
  column-gap: 2rem;
}
.text-with-lists-section.layout-horizontal .highlights .highlight-block {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  row-gap: 0;
}
.text-with-lists-section.layout-horizontal .highlights .highlight-block .highlight-item {
  margin-bottom: 0;
}
.text-with-lists-section.layout-horizontal .highlights .highlight-block .highlight-subtext {
  margin-top: 1.5rem;
}
.text-with-lists-section.layout-horizontal .highlights .highlight-block .highlight-title:not(:has(*)),
.text-with-lists-section.layout-horizontal .highlights .highlight-block .highlight-subtext:not(:has(*)) {
  display: none;
}
.text-with-lists-section.layout-vertical .highlights {
  grid-template-columns: 1fr;
  max-width: 700px;
}
.text-with-lists-section .highlight-title {
  margin-bottom: 1.5rem;
}
.text-with-lists-section .highlight-title h2 {
  margin: 0;
  font-weight: 300;
}
.text-with-lists-section .highlight-item {
  border: 1px solid #454b54;
  border-radius: 12px;
  padding: 0.5rem 1.5rem 1.5rem 1.5rem;
  margin-bottom: 1.5rem;
}
.text-with-lists-section .highlight-list {
  line-height: 1.6;
}
.text-with-lists-section .highlight-list p {
  margin: 0;
  font-size: 1.5rem;
}
.text-with-lists-section .highlight-list ul {
  padding-left: 1.25rem;
}
.text-with-lists-section .highlight-list ul li {
  font-size: 18px;
  line-height: 1.6;
}
.text-with-lists-section.dark {
  background: #000;
}
.text-with-lists-section.dark .title h1 {
  color: #AAB4C0;
}
.text-with-lists-section.dark .text,
.text-with-lists-section.dark .highlight-block {
  color: #fff;
}
.text-with-lists-section.dark .highlight-item {
  border-color: #343636;
  background: #111111;
}
.text-with-lists-section.light {
  background: #e6e6e6;
}
.text-with-lists-section.light .title h1 {
  color: #000;
}
.text-with-lists-section.light .text,
.text-with-lists-section.light .highlight-block {
  color: #000;
}
.text-with-lists-section.light .highlight-item {
  background: #fff;
  border: 1px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
@media only screen and (max-width: 1200px) {
  .text-with-lists-section {
    padding: 4rem 2rem;
  }
  .text-with-lists-section.layout-horizontal .highlights {
    grid-template-columns: 1fr;
  }
  .text-with-lists-section.layout-vertical .highlights {
    gap: 1.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .text-with-lists-section {
    padding: 4rem 2rem;
  }
}
@media only screen and (max-width: 480px) {
  .text-with-lists-section {
    padding: 3rem 1rem;
  }
  .text-with-lists-section ul li {
    font-size: 16px !important;
  }
  .text-with-lists-section .title h1 {
    font-size: 2.5rem;
    word-wrap: break-word;
    hyphens: auto;
  }
  .text-with-lists-section h2 {
    font-size: 1.5rem;
  }
  .text-with-lists-section .text p,
  .text-with-lists-section .highlight-subtext p {
    font-size: 16px;
  }
}
