.sleek-carousel-af8277f6-container {
    position: relative;
    width: 100%;
}

.sleek-carousel-af8277f6 {
    --per-view: 3;
    --card-gap: 20px;
    --peek-width: 40px;
    width: 100%;
    overflow: hidden;
}

.sleek-carousel-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: var(--card-gap);
    padding-bottom: 20px; /* space for shadow */
    scrollbar-width: none; /* Firefox */
}

.sleek-carousel-track::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.sleek-card {
    flex: 0 0 calc((100% - var(--peek-width) - ((var(--per-view) - 1) * var(--card-gap))) / var(--per-view));
    scroll-snap-align: start;
    position: relative;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 24px;
    padding: 30px;
    min-height: 480px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.sleek-card-content {
    z-index: 2;
    margin-bottom: 20px;
}

.sleek-card-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 10px;
    line-height: 1.2;
}

.sleek-card-desc {
    font-size: 16px;
    margin: 0;
    line-height: 1.5;
    opacity: 0.8;
}

.sleek-card-image {
    margin-top: auto;
    text-align: center;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sleek-card-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 250px;
}

.sleek-card-link-arrow {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: #1d1d1f;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    text-decoration: none;
    font-size: 16px; /* Added to match nav btn */
    transition: transform 0.3s ease, background 0.3s ease;
}

.sleek-card-link-arrow svg {
    width: 16px;
    height: 16px;
}

.sleek-card-link-arrow:hover {
    transform: scale(1.05);
}

.sleek-carousel-nav {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 20px;
    padding-right: 20px;
}

.sleek-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e8e8ed;
    color: #1d1d1f;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 16px;
}

.sleek-nav-btn svg {
    width: 16px;
    height: 16px;
}

.sleek-nav-btn:hover {
    background: #d2d2d7;
}

@media (max-width: 1024px) {
    .sleek-carousel-af8277f6 {
        --per-view: 2;
        --peek-width: 40px;
    }
}

@media (max-width: 767px) {
    .sleek-carousel-af8277f6 {
        --per-view: 1;
        --peek-width: 30px;
    }
}