.cs-7592bb2c-wrapper {
    position: relative;
    width: 100%;
    padding: 20px 30px;
    box-sizing: border-box;
}

.cs-7592bb2c-slider {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 5px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.cs-7592bb2c-slider::-webkit-scrollbar {
    display: none;
}

.cs-7592bb2c-card {
    min-width: 250px;
    background: #ffffff;
    padding: 22px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1.5px solid transparent;
    flex-shrink: 0;
    box-sizing: border-box;
}

.cs-7592bb2c-card:hover {
    border-color: rgba(255, 127, 0, 0.3);
}

.cs-7592bb2c-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cs-7592bb2c-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #444;
    transition: color 0.3s ease;
}

.cs-7592bb2c-icon svg {
    transition: fill 0.3s ease;
}

.cs-7592bb2c-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #2d3436;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.cs-7592bb2c-arrow {
    display: inline-flex;
    align-items: center;
    color: #b2bec3;
    font-size: 20px;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.cs-7592bb2c-arrow svg {
    transition: fill 0.3s ease;
}

/* Navigation Buttons */
.cs-7592bb2c-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #ffffff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #333;
    font-size: 16px;
}

.cs-7592bb2c-nav-btn:hover {
    color: #ff7f00;
    transform: translateY(-50%) scale(1.1);
}

.cs-7592bb2c-prev {
    left: -5px;
}

.cs-7592bb2c-next {
    right: -5px;
}

/* Responsive */
@media (max-width: 767px) {
    .cs-7592bb2c-wrapper {
        padding: 15px 20px;
    }

    .cs-7592bb2c-card {
        min-width: 200px;
        padding: 16px 18px;
    }

    .cs-7592bb2c-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .cs-7592bb2c-prev {
        left: -2px;
    }

    .cs-7592bb2c-next {
        right: -2px;
    }
}
