.swiper-block {
    margin: 2.5rem 0;
    position: relative;
}

.swiper-block--aspect-1-1 .swiper-slide {
    aspect-ratio: 1 / 1;
}

.swiper-block--aspect-2-3 .swiper-slide {
    aspect-ratio: 2 / 3;
}

.swiper-block--aspect-3-2 .swiper-slide {
    aspect-ratio: 3 / 2;
}

.swiper-block--aspect-3-4 .swiper-slide {
    aspect-ratio: 3 / 4;
}

.swiper-block--aspect-4-3 .swiper-slide {
    aspect-ratio: 4 / 3;
}

.swiper-block--aspect-16-9 .swiper-slide {
    aspect-ratio: 16 / 9;
}

.swiper-block--aspect-9-16 .swiper-slide {
    aspect-ratio: 9 / 16;
}

.swiper-block .swiper-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 1rem;
}

.swiper-block__link {
    display: block;
    width: 100%;
    height: 100%;
}

.swiper-block__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    pointer-events: none;
    z-index: 10;
}

.swiper-block__button {
    position: absolute;
    width: 3rem;
    height: 3rem;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    border: none;
    background-color: #A63A50;
    cursor: pointer;
    pointer-events: auto;
    padding: 0 !important;
    transition: background-color 0.3s ease;
}

.swiper-block__button--prev {
    left: -1.5rem;
}

.swiper-block__button--next {
    right: -1.5rem;
}

.swiper-block__button:hover {
    background-color: #fff;
}

.swiper-block__button:hover svg {
    fill: #A63A50;
}

.swiper-block__button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.swiper-block__button svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 11px;
    height: 20px;
    fill: #fff;
    stroke: currentColor;
    stroke-width: 0.5px;
    transition: fill 0.3s ease;
}

.swiper-pagination {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #d0d0d0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.swiper-pagination-bullet-active {
    background-color: #A63A50;
}
