.cs-b706bb02-container {
    position: relative;
    width: 100%;
    overflow: visible;
}

.cs-b706bb02-swiper {
    width: 100%;
    overflow: hidden;
}

/* Flex layout fallback so slides are visible before Swiper initializes or if Swiper fails */
.cs-b706bb02-swiper .swiper-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    gap: 20px;
}

.cs-b706bb02-swiper .swiper-slide {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 250px;
    box-sizing: border-box;
}

/* Responsive columns when in flex fallback */
@media (max-width: 1024px) {
    .cs-b706bb02-swiper .swiper-slide {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 767px) {
    .cs-b706bb02-swiper .swiper-slide {
        flex: 0 0 100%;
    }
}

/* Standard styles when Swiper is initialized */
.cs-b706bb02-swiper.swiper-initialized .swiper-wrapper {
    gap: 0;
}

.cs-b706bb02-swiper.swiper-initialized .swiper-slide {
    flex: none;
    min-width: 0;
}

.cs-b706bb02-card {
    position: relative;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-sizing: border-box;
    overflow: hidden;
    height: 450px;
    z-index: 1;
}

/* Overlays */
.cs-b706bb02-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    transition: opacity 0.4s ease;
}

.cs-b706bb02-overlay-normal {
    opacity: 1;
    background-color: rgba(14, 34, 61, 0.65); /* default backup overlay */
}

.cs-b706bb02-overlay-hover {
    opacity: 0;
    background-color: rgba(14, 34, 61, 0.9); /* default backup hover overlay */
}

.cs-b706bb02-card:hover .cs-b706bb02-overlay-normal {
    opacity: 0;
}

.cs-b706bb02-card:hover .cs-b706bb02-overlay-hover {
    opacity: 1;
}

/* Content Container */
.cs-b706bb02-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
}

.cs-b706bb02-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 15px;
    width: 100%;
}

.cs-b706bb02-text-col {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Typography styles */
.cs-b706bb02-title {
    margin: 0;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
}

.cs-b706bb02-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Transition wrapper for extra description on hover */
.cs-b706bb02-desc-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease, margin-top 0.35s ease;
    margin-top: 0;
}

.cs-b706bb02-desc {
    overflow: hidden;
    font-size: 14px;
    line-height: 1.4;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cs-b706bb02-card:hover .cs-b706bb02-desc-wrapper {
    grid-template-rows: 1fr;
    margin-top: 10px;
}

.cs-b706bb02-card:hover .cs-b706bb02-desc {
    opacity: 1;
}

/* Inline inline image/icon */
.cs-b706bb02-image-col {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.cs-b706bb02-image-col img {
    max-width: 45px;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.cs-b706bb02-card:hover .cs-b706bb02-image-col img {
    transform: translateX(3px);
}

/* Bottom Nav Controls (Middle Centered) */
.cs-b706bb02-nav-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.cs-b706bb02-arrow {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.cs-b706bb02-arrow img {
    display: block;
}

.cs-b706bb02-arrow:hover {
    opacity: 0.8;
}

.cs-b706bb02-arrow:active {
    transform: scale(0.95);
}

.swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}
