.operations-slider-container {
    overflow-x: auto;
    padding: 20px;
    -webkit-overflow-scrolling: touch;
}

.operations-slider {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-behavior: smooth;
}

.operations-slider::-webkit-scrollbar {
    display: none;
}

.slider-card {
    flex: 0 0 auto;
    width: 250px;
    scroll-snap-align: start;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 10px;
    font-family: Arial, sans-serif;
}

.operations-slider-container,
.operations-slider {
    cursor: grab;
}

.operations-slider:active {
    cursor: grabbing;
}

.slider-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 6px;
}

.slider-card h3 {
    font-size: 1rem;
    font-weight: bold;
    color: #1e3d2f;
    margin: 10px 0 5px;
}

.slider-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    margin-bottom: 10px;
    min-height: 60px;
}

.slider-card a {
    font-size: 0.9rem;
    color: #f06523;
    text-decoration: none;
    font-weight: 500;
}
