/* 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;
}
#breadcrumb-container {
  margin-top: var(--header-height);
  padding: 0.5rem 0;
  padding-left: 96px;
  position: relative;
  z-index: 550;
  width: fit-content;
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  color: #000;
}
.breadcrumb-list li {
  display: flex;
  align-items: center;
  padding: 0;
}
.breadcrumb-list li + li::before {
  content: "/";
  margin: 0 0.75rem;
  color: #454b54;
}
.breadcrumb-list a {
  display: inline;
  /* ÄNDERUNG: Link nur auf Textbreite begrenzen */
  color: #000;
  transition: color 0.25s ease-out;
}
.breadcrumb-list a:hover {
  color: #d9d9d9;
}
.breadcrumb-list .active span {
  color: #000 !important;
  font-weight: 500;
  cursor: default;
}
@media only screen and (max-width: 768px) {
  .breadcrumb-list {
    font-size: 0.6rem;
  }
  .breadcrumb-list li + li::before {
    margin: 0 0.4rem;
  }
}
@media only screen and (max-width: 768px) {
  #breadcrumb-container {
    margin-top: var(--header-height);
    padding: 0.4rem 0;
    padding-left: 15px;
  }
}
