/* ========================================
   AWARDS CAROUSEL STYLES
   Компактная карусель наград с автопрокруткой
   ======================================== */

.awards-carousel-section {
    margin: 4rem 0;
    padding: 0;
}

.carousel-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    font-family: 'Playfair Display', serif;
    margin-bottom: 3rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Carousel Container */
.awards-carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto 2rem;
    padding: 0 60px;
}

/* Carousel Wrapper */
.awards-carousel-wrapper {
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(0, 184, 217, 0.05) 0%, rgba(144, 238, 144, 0.05) 100%);
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 184, 217, 0.2);
    border: 2px solid rgba(0, 184, 217, 0.3);
}

/* Carousel Track */
.awards-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 2rem;
}

/* Award Slide */
.award-slide {
    flex: 0 0 100%;
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.award-slide img {
    width: 100%;
    max-width: 600px;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
}

.award-slide img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 184, 217, 0.4);
}

.award-caption {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-secondary);
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

/* Carousel Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #00d4ff 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--color-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 184, 217, 0.4);
}

.carousel-btn:hover {
    background: linear-gradient(135deg, #00d4ff 0%, var(--color-secondary) 100%);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 184, 217, 0.6);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn-prev {
    left: 0;
}

.carousel-btn-next {
    right: 0;
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin: 2rem 0 3rem;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 184, 217, 0.3);
    border: 2px solid rgba(0, 184, 217, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator:hover {
    background: rgba(0, 184, 217, 0.5);
    transform: scale(1.2);
}

.carousel-indicator.active {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    width: 32px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 184, 217, 0.6);
}

/* Summary Stats (сохраняем прежние стили) */
.collage-summary {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 184, 217, 0.1) 0%, rgba(144, 238, 144, 0.1) 100%);
    border-radius: 20px;
    border: 2px solid rgba(0, 184, 217, 0.3);
}

.summary-item {
    text-align: center;
}

.summary-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-secondary);
    font-family: 'Playfair Display', serif;
    text-shadow: 0 2px 8px rgba(0, 184, 217, 0.4);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.summary-label {
    font-size: 0.95rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .carousel-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .awards-carousel-container {
        padding: 0 50px;
    }
    
    .awards-carousel-wrapper {
        padding: 1.5rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .award-slide img {
        max-width: 100%;
        padding: 0.5rem;
    }
    
    .award-caption {
        font-size: 0.95rem;
    }
    
    .collage-summary {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .summary-number {
        font-size: 2.5rem;
    }
    
    .summary-label {
        font-size: 0.85rem;
    }
    
    .carousel-indicators {
        gap: 0.5rem;
        margin: 1.5rem 0 2rem;
    }
    
    .carousel-indicator {
        width: 10px;
        height: 10px;
    }
    
    .carousel-indicator.active {
        width: 24px;
    }
}

@media (max-width: 480px) {
    .awards-carousel-container {
        padding: 0 40px;
    }
    
    .carousel-btn {
        width: 36px;
        height: 36px;
    }
    
    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .carousel-title {
        font-size: 1.75rem;
    }
}
