.eds-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 20px auto;
    max-width: 1200px;
}

.eds-slide {
    text-align: center;
    flex: 1 1 30%;
    transition: transform 0.3s ease;
    max-width: 300px;
}

.eds-slide img {
    width: 100%;
    border-radius: 8px;
}

.eds-slide:hover {
    transform: scale(1.05);
}

.eds-label {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
}
