.highlights-module {
    padding: 80px 60px;
}

.highlights-main-title {
    margin: 0 0 32px 0;
}

.highlights-swiper-wrapper {
    width: calc(100% + 60px);
    overflow: hidden;
}

.highlights-swiper {
    overflow: visible; 
}

.highlights-slide {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.highlights-slide-image {
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlights-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.highlights-slide-text {
    padding: 0 16px 30px;
    margin: 0;
}

.highlights-controls {
    border-top: 1px solid var(--color-primary);
    padding-top: 16px;
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.highlights-pagination {
    display: flex;
    align-items: center;
    gap: 12px;
    counter-reset: hl-page;
}

.highlights-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0;
}

.highlights-pagination .swiper-pagination-bullet {
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    opacity: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.highlights-pagination .swiper-pagination-bullet::before {
    counter-increment: hl-page;
    content: counter(hl-page, decimal-leading-zero) '.';
    font-family: var(--typo-title-2-regular-font);
    font-size: var(--typo-title-2-size-regular);
    font-weight: var(--typo-title-2-regular-fw);
    line-height: var(--typo-title-2-regular-lh);
    letter-spacing: var(--typo-title-2-regular-ls);
    color: var(--color-neutral-beige-dark);
    transition: all 0.3s ease;
}

.highlights-pagination .swiper-pagination-bullet-active::before {
    color: var(--color-primary);
    font-weight: 700;
}
.highlights-navigation {
    display: flex;
    align-items: center;
    gap: 8px;
}

.highlights-nav-prev,
.highlights-nav-next {
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.highlights-nav-prev svg,
.highlights-nav-next svg {
    display: block;
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.highlights-nav-prev svg path,
.highlights-nav-next svg path {
    stroke: var(--color-primary);
}

.highlights-nav-prev svg {
    transform: rotate(180deg);
}

.highlights-nav-prev:hover svg {
    transform: rotate(180deg) scale(1.2);
}

.highlights-nav-next:hover svg {
    transform: scale(1.2);
}

.highlights-nav-prev.swiper-button-disabled svg,
.highlights-nav-next.swiper-button-disabled svg {
    opacity: 0.5;
}

.highlights-nav-prev.swiper-button-disabled,
.highlights-nav-next.swiper-button-disabled {
    cursor: default;
}  

@media (max-width: 992px) {
    .highlights-module {
        padding: 40px 20px;
    }

    .highlights-swiper-wrapper {
        width: calc(100% + 20px);
    }
}
