.root {
    display: flex;
    width: 100%;
    padding: 60px 0 48px;
}

.container {
    width: 100%;
}

.header {
    display: flex;
    flex-direction: column;
    width: 100%;
    white-space: pre-line;
}

.topRow {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    padding: 0 60px;
    max-width: var(--content-max-width);
    margin: 0 auto 32px;
}

.headerWrapper {
    display: flex;
    flex: 1 1 auto;
    width: 100%;
}

.carouselArea {
    display: flex;
    width: 100%;
    border-top: var(--border-width-sm) solid var(--border-color-light);
    border-bottom: var(--border-width-sm) solid var(--border-color-light);
    padding: 0 28px;
    overflow: hidden;
}

.swiper {
    width: 100%;
    overflow: visible;
}

.swiperControlsHidden {
    visibility: hidden;
}

.swiperControlsDesktop {
    display: flex;
    flex: 0 0 auto;
    position: relative;
}

.swiperControlsMobile {
    display: none;
    flex: 0 0 auto;
    position: relative;
    margin-top: 24px;
}

.swiperSlide {
    width: auto;
    flex-shrink: 0;
    position: relative;
}

.swiperSlide:not(:first-child)::after {
    content: '';
    width: 1px;
    position: absolute;
    top: 29px;
    bottom: 29px;
    left: 0;
    background-color: var(--border-color-light);
    z-index: 10;
}

@media (width <= 768px) {
    .root {
        padding: 24px 0;
    }

    .topRow {
        padding: 0 20px;
        margin-bottom: 16px;
    }

    .carouselArea {
        padding: 0 20px 0;
        border-top: none;
        border-bottom: none;
    }

    .swiper {
        border-top: var(--border-width-sm) solid var(--border-color-light);
    }

    .swiperControlsDesktop {
        display: none;
    }

    .swiperControlsMobile {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .headerTitle {
        padding-bottom: 10px;
    }
}
