.sd-1-slider-container {
    position: relative;
    padding: 10px;
}

.sd-1-slider {
    height: 320px;
    margin-bottom: 40px;
}

img.sd-1-image {
    height: 320px;
    width: 100%;
}

.sd-1-slide {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.sd-1-slide:hover {
    transform: translateY(-3px);
}
.text-about {
    padding-right: 60px;
}
.sd-1-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.sd-1-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.sd-1-arrow {
    width: 45px;
    height: 45px;
    border: 2px solid #FF6B35;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF6B35;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sd-1-arrow:hover {
    background: #FF6B35;
    color: white;
    transform: scale(1.05);
}

/* Адаптивность */
@media (max-width: 768px) {
    .sd-1-slider {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .sd-1-image {
        height: 150px;
    }

    .sd-1-arrow {
        width: 40px;
        height: 40px;
    }
}