.nummer-slider {
  background-color: #F2EEE6;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  align-self: stretch;
  padding: 24px 16px;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  z-index: 0;
  isolation: isolate;
}
@media screen and (min-width: 992px) {
  .nummer-slider {
    padding: 32px 16px;
  }
}
.nummer-slider__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-width: 0;
}
.nummer-slider__heading {
  margin: 0;
  min-width: 0;
}
.nummer-slider__nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}
.nummer-slider__button {
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  border-radius: 4px;
  background-color: #000;
  color: #FFFEFB;
  font-family: inherit;
  line-height: 1;
  cursor: pointer;
  transition: 0.3s ease all;
}
.nummer-slider__button svg {
  display: block;
  width: 16px;
  height: 16px;
}
.nummer-slider__button:hover:not(.is-disabled) {
  background-color: #F7A600;
  color: #000;
}
.nummer-slider__button.is-disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}
.nummer-slider__swiper.swiper {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  z-index: 0;
}
.nummer-slider .swiper-wrapper {
  height: auto;
}
.nummer-slider .swiper-slide {
  width: min(240px, 72vw);
  max-width: 100%;
  height: auto;
  box-sizing: border-box;
  flex-shrink: 0;
}
@media screen and (min-width: 992px) {
  .nummer-slider .swiper-slide {
    width: calc((100% - 48px) / 4);
    max-width: none;
  }
}
.nummer-slider__card {
  min-width: 0;
}
.nummer-slider__link {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #000;
  text-decoration: none;
}
.nummer-slider__link:hover .nummer-slider__title {
  color: #F7A600;
}
.nummer-slider__title {
  margin: 0;
  font-family: "Century-old-style-std", "Times New Roman", serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
}
.nummer-slider__omslag {
  width: 100%;
  background-color: #F2EEE6;
}
.nummer-slider__omslag img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  -webkit-user-drag: none;
  user-drag: none;
}
.nummer-slider__empty {
  margin: 0;
  color: #707070;
}
