.nashi-raboty-slider-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nashi-raboty-title {
    text-align: center;
    margin-bottom: 30px;
}

.nashi-raboty-slider {
    position: relative;
	margin-bottom: 60px;
}

.nashi-raboty-slider .swiper-slide {
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nashi-raboty-slider .swiper-button-next:after,
.nashi-raboty-slider .swiper-button-prev:after {
    font-size: 12px;
}


.nashi-raboty-slider .swiper-slide a {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.nashi-slide-inner {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

/* Активный слайд */
.swiper-slide-active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.swiper-slide:not(.swiper-slide-active) {
    opacity: 0.5;
    transform: scale(0.92);
    z-index: 1;
}

/* Стрелки */
.nashi-raboty-slider .swiper-button-prev,
.nashi-raboty-slider .swiper-button-next {
    color: #bb2649;
    --swiper-navigation-size: 28px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Мобильная версия */
@media (max-width: 768px) {
    .nashi-raboty-slider .swiper-slide {
        height: 300px;
    }
    .swiper-slide:not(.swiper-slide-active) {
        opacity: 1;
        transform: none;
    }
}