.aurora-gallery {
    margin-top: 96px;
    padding: 60px 0;
    background: #f8f9fa;
}
.container{
    margin-top: 0 !important;
}
.aurora-gallery__title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.aurora-gallery__description {
    font-size: 16px;
    color: #666;
    margin-bottom: 50px;
    line-height: 1.6;
}

.aurora-gallery__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.aurora-gallery__section {
    border-radius: 12px;

}

.aurora-gallery__section-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.aurora-gallery__slider {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.aurora-gallery__slider-container {
    position: relative;
    height: 300px;
}

.aurora-gallery__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.aurora-gallery__slide.active {
    opacity: 1;
}

.aurora-gallery__slide a {
    display: block;
    width: 100%;
    height: 100%;
}

.aurora-gallery__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.aurora-gallery__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: 1px solid #FFFFFFB2;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 2;
}

.aurora-gallery__nav-desktop:hover {
     background: #FFFFFF42;
 }
.aurora-gallery__nav-mobile:hover path{
    fill-opacity: 1;
}
/* Показываем только десктопные стрелки по умолчанию */
.aurora-gallery__nav-desktop {
    display: block;
}

.aurora-gallery__nav-mobile {
    display: none;
}

.aurora-gallery__nav--prev {
    left: 10px;
}

.aurora-gallery__nav--next {
    right: 10px;
}

.aurora-gallery__counter {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    border-radius: 15px;
    font-weight: 700;
    font-size: 16px;
    z-index: 2;
}

.aurora-gallery__dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    gap: 10px;
    z-index: 2;
}

.aurora-gallery__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.aurora-gallery__dot.active {
    background: white;
}

.aurora-gallery .container{
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .aurora-gallery {
        margin-top: 40px;
        padding: 32px 0;
    }

    .section_heading-block{
        margin-top: 40px;
    }
    
    .aurora-gallery__title {
        font-size: 24px;
    }
    
    .aurora-gallery__description {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .aurora-gallery__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .aurora-gallery__section {
        padding: 0;
    }
    
    .aurora-gallery__slider-container {
        height: 182px;
    }
    
    .aurora-gallery__nav {
        width: 20px;
        height: 20px;
        border:none;
    }
    /* Показываем точки на мобильных */
    .aurora-gallery__dots {
        display: flex;
    }
    
    /* Скрываем счетчик на мобильных */
    .aurora-gallery__counter {
        display: none;
    }
    
    /* Переключаем стрелки на мобильные */
    .aurora-gallery__nav-desktop {
        display: none;
    }
    
    .aurora-gallery__nav-mobile {
        display: block;
    }
}