.ss-4c66fc0c-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    --card-bg-color: #e5d8cc;
    --ss-speed: 800ms;
    --ss-ease: cubic-bezier(0.65, 0, 0.35, 1);
    
    /* Default gradient vars if not set */
    --grad-color-rgb: 229, 216, 198;
    --grad-start-pos: 45%;
    --grad-full-pos: 85%;
    --grad-mid-pos: calc(var(--grad-start-pos) + ((var(--grad-full-pos) - var(--grad-start-pos)) * 0.625));
}
.ss-4c66fc0c-track {
    display: flex;
    gap: 20px;
    align-items: stretch;
    position: relative;
}
.ss-4c66fc0c-col-1 { width: 40%; padding: 20px 20px 20px 0; }
.ss-4c66fc0c-col-2 { width: 30%; position: relative; }
.ss-4c66fc0c-col-3 { width: 30%; position: relative; display: flex; flex-direction: column; justify-content: space-between; padding: 30px; }
.ss-4c66fc0c-card {
    border-radius: 20px;
    overflow: hidden;
    min-height: 400px;
}
.ss-4c66fc0c-main-card {
    background-size: cover;
    background-position: center;
    transition: background-image 0s; 
}
.ss-4c66fc0c-main-card::before {
    content: ''; 
    position: absolute; 
    inset: 0;
    /* Construct the exact linear gradient requested using CSS variables */
    background: linear-gradient(
        to bottom, 
        rgba(var(--grad-color-rgb), 0) var(--grad-start-pos), 
        rgba(var(--grad-color-rgb), 0.85) var(--grad-mid-pos), 
        rgba(var(--grad-color-rgb), 1) var(--grad-full-pos), 
        rgba(var(--grad-color-rgb), 1) 100%
    );
}
.ss-4c66fc0c-card-content {
    position: absolute; bottom: 30px; left: 30px; right: 30px; z-index: 2;
}

/* Bullet styling */
.ss-4c66fc0c-bullets {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
}
.ss-4c66fc0c-bullets li {
    padding: 0;
    margin-bottom: 5px;
}

/* Animations */
.ss-4c66fc0c-anim {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: opacity var(--ss-speed) var(--ss-ease), transform var(--ss-speed) var(--ss-ease);
    will-change: transform, opacity;
}
.ss-4c66fc0c-wrapper.is-transitioning .ss-4c66fc0c-anim {
    opacity: 0;
    transform: translate3d(0, 12px, 0);
    transition: none; 
}
.ss-4c66fc0c-anim.delay-1 { transition-delay: 60ms; }
.ss-4c66fc0c-anim.delay-2 { transition-delay: 120ms; }


.ss-4c66fc0c-arrow {
    position: absolute; top: 50%; right: 28%; transform: translateY(-50%);
    width: 50px; height: 50px; background-color: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    border: none; cursor: pointer; box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 10;
    transition: all 0.3s ease;
}
.ss-4c66fc0c-arrow svg {
    transition: stroke 0.3s ease;
}

@media (prefers-reduced-motion: reduce) {
    .ss-4c66fc0c-anim {
        transition: none !important;
        transform: none !important;
    }
    .ss-4c66fc0c-wrapper.is-transitioning .ss-4c66fc0c-anim {
         opacity: 1;
         transform: none;
    }
}

@media (max-width: 767px) {
    .ss-4c66fc0c-track { flex-direction: column; }
    .ss-4c66fc0c-col-1, .ss-4c66fc0c-col-2 { width: 100%; }
    .ss-4c66fc0c-col-3, .ss-4c66fc0c-arrow { display: none; }
    
    .ss-4c66fc0c-track {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        flex-direction: row; 
        gap: 0;
        scrollbar-width: none;
    }
    .ss-4c66fc0c-track::-webkit-scrollbar { display: none; }
    .ss-4c66fc0c-col-1 { display: none; }
    .ss-4c66fc0c-col-2 { flex: 0 0 100%; scroll-snap-align: center; }
}