.magazin-carousel .swiper-slide {
    display: flex;
    align-items: stretch;
    height: auto;
}

.magazin-slide-inner {
    background: #fff;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    position: relative;
    padding: 20px 20px 20px 20px;
    border: 2px solid #fff;
}



.magazin-carousel-image-wrapper {
    width: 100%;
    aspect-ratio: 1000 / 711;
    overflow: hidden;
    background: #eee;
    position: relative;
}

.magazin-carousel-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: filter 0.3s, opacity 0.3s;
}

.magazin-slide-inner:hover .magazin-carousel-image-wrapper img {
    filter: brightness(0.6);
    opacity: 0.9;
}

.magazin-carousel-meta {
    padding: 0.5em 1em 0 1em;
    font-size: 0.9em;
    align-self: end;

}

.magazin-carousel-title {
    padding: 0.5em 0em 0em 0em;
    margin: 0;
    flex: 1 1 auto;
    display: flex;
    align-items: flex-start;

}


h2.magazin-carousel-title {
    font-size: 20px;
line-height: 24px;
font-weight: 600;
text-align: center;

}

.magazin-carousel-wrapper {
    position: relative;
    width: 100%;
}

.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color:#ff0000;
    cursor: pointer;
    font-size: 30px;
    opacity: 0.85;
    transition: opacity 0.2s, box-shadow 0.2s;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    opacity: 1;
    color: #000;
}

.swiper-button-prev {
    left: -60px; /* Passe ggf. den Wert an, damit die Pfeile außerhalb stehen */
}

.swiper-button-next {
    right: -60px; /* Passe ggf. den Wert an, damit die Pfeile außerhalb stehen */
}

h3.magazin-carousel-title {
    font-family: var(--primary-font);
    font-size: 20px;
  font-style: normal;
  line-height: 120%; 
  font-weight: 700;
  padding-top: 0px;
  margin-bottom: .7em;
  text-align: center;
   }

@media (max-width: 900px) {

    .swiper-button-prev { left: -30px !important; }
    .swiper-button-next { right: -30px !important; }
}

