/* ==================== 20. КАРУСЕЛЬ С СИНЕ-БЕЛЫМИ ЛЕЙБЛАМИ ==================== */
.blue-label-carousel {
    animation: fadeInRight 0.8s ease-out 0.3s both;
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.blue-label-carousel .carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

.blue-label-carousel .carousel-container {
    position: relative;
    width: 100%;
    height: 340px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: var(--white);
}

.blue-label-carousel .carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.blue-label-carousel .carousel-slide {
    min-width: 100%;
    height: 100%;
}

.blue-label-carousel .banner-slide {
    height: 100%;
    width: 100%;
    position: relative;
}

/* Панорамное изображение */
.blue-label-carousel .banner-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.blue-label-carousel .banner-image img {
    width: 100%;
    height: 110%;
    object-fit: cover;
    object-position: center 30%;
    transition: transform 0.7s ease;
}

.blue-label-carousel .banner-slide:hover .banner-image img {
    transform: scale(1.03);
}

/* Контейнер для всего текста */
.blue-label-carousel .banner-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 1.2rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* СИНЕ-БЕЛЫЙ ЛЕЙБЛ */
.blue-label-carousel .blue-white-label {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.6rem 1.4rem;
    background: var(--white);
    border-radius: 8px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.25);
    transition: all 0.3s ease;
    position: absolute;
    top: 1rem;
    right: 1.7rem;
    margin: 0;
}

/* Синий градиентный текст */
.blue-label-carousel .blue-white-label .label-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* Плавное увеличение при наведении */
.blue-label-carousel .banner-slide:hover .blue-white-label {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.35);
}

/* Основной заголовок */
.blue-label-carousel .banner-title {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    color: var(--white);
    align-self: flex-start;
    margin-bottom: 0;
    margin-top: auto;
    padding-bottom: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    bottom: -1.0625rem;
}

/* Легкое увеличение заголовка при наведении */
.blue-label-carousel .banner-slide:hover .banner-title {
    transform: translateY(-2px);
}

/* Темный градиент сверху и снизу */
.blue-label-carousel .banner-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.2) 15%,
        rgba(0, 0, 0, 0.1) 30%,
        transparent 50%,
        rgba(0, 0, 0, 0.15) 65%,
        rgba(0, 0, 0, 0.3) 85%,
        rgba(0, 0, 0, 0.5) 100%
    );
    pointer-events: none;
}

/* Стрелки навигации */
.blue-label-carousel .carousel-arrow {
    position: absolute;
    top: calc(50% + 25px);
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    color: var(--primary-blue);
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.blue-label-carousel .carousel-arrow:hover {
    background: var(--gradient-primary);
    border-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.blue-label-carousel .carousel-arrow svg {
    width: 18px;
    height: 18px;
}

.blue-label-carousel .prev-arrow {
    left: 15px;
}

.blue-label-carousel .next-arrow {
    right: 15px;
}

/* Круглые индикаторы */
.blue-label-carousel .carousel-indicators {
    position: absolute;
    bottom: 1.5625rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.blue-label-carousel .indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.25s ease;
    padding: 0;
}

.blue-label-carousel .indicator:hover {
    background: var(--white);
    transform: scale(1.3);
}

.blue-label-carousel .indicator.active {
    background: var(--white);
    transform: scale(1.5);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.4);
}

.blue-label-carousel .banner-slide {
    animation: blueLabelFadeIn 0.5s ease-out;
}

