.sff-carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    background: #000;
    color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.sff-carousel {
    position: relative;
    overflow: hidden;
}

.sff-carousel-track {
    display: flex;
    transition: transform 0.3s ease-in-out;
}

.sff-carousel-slide {
    min-width: 100%;
    display: none;
    padding: 40px;
    box-sizing: border-box;
}

.sff-carousel-slide.active {
    display: block;
}

.sff-carousel-slide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    align-content: start;
}

.sff-event-card {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    min-height: 250px;
    padding: 20px;
}

.sff-event-date {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 20px 15px;
    min-width: 120px;
    text-align: left;
}

.sff-day-week {
    font-size: 32px;
    font-weight: 600;
    color: #ccc;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.sff-date-num {
    font-size: 24px;
    font-weight: 400;
    color: #FCFCFC;
}

.sff-event-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 0;
}

.sff-event-title {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    margin: 0 0 15px 0;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sff-event-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    color: #ccc;
    margin-bottom: 5px;
}

.sff-event-address {
    font-size: 14px;
    margin-bottom: 10px;
    padding-left: 33px;
}

.sff-event-address a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sff-event-address a:hover {
    color: #ccc;
    text-decoration: underline;
}

.sff-event-time {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    color: #ccc;
    margin-bottom: 10px;
}

.sff-location-icon,
.sff-time-icon {
    font-size: 20px;
    color: #ff6b35;
}

.sff-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
}

.sff-carousel-btn:hover {
    color: #ccc;
}

.sff-carousel-prev {
    left: 20px;
}

.sff-carousel-next {
    right: 20px;
}

.sff-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    background: #111;
}

.sff-carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #666;
    cursor: pointer;
    transition: background 0.3s ease;
}

.sff-carousel-dot.active,
.sff-carousel-dot:hover {
    background: #ff6b35;
}

/* Responsive design */
@media (max-width: 1024px) {
    .sff-carousel-slide-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .sff-event-card {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        min-height: 200px;
    }
    
    .sff-event-date {
        min-width: auto;
        padding: 15px;
        flex-direction: row;
        gap: 10px;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .sff-day-week {
        font-size: 16px;
        margin-bottom: 0;
    }
    
    .sff-date-num {
        font-size: 14px;
    }
    
    .sff-event-title {
        font-size: 18px;
    }
    
    .sff-event-location,
    .sff-event-time {
        justify-content: center;
        font-size: 12px;
    }
    
    .sff-carousel-slide {
        padding: 20px;
    }
    
    .sff-carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .sff-carousel-prev {
        left: 10px;
    }
    
    .sff-carousel-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .sff-event-title {
        font-size: 16px;
    }
    
    .sff-event-location,
    .sff-event-time {
        font-size: 11px;
    }
    
    .sff-day-week {
        font-size: 14px;
    }
    
    .sff-date-num {
        font-size: 12px;
    }
    
    .sff-carousel-slide {
        padding: 15px;
    }
}

/* Animation for slide transitions */
.sff-carousel-slide {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.sff-carousel-slide.active {
    opacity: 1;
}

/* Loading state */
.sff-carousel-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    background: #000;
    color: #ccc;
    font-size: 18px;
}

/* Error state */
.sff-carousel-error {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    background: #222;
    color: #ff6b35;
    font-size: 16px;
    text-align: center;
    padding: 20px;
    border-radius: 8px;
}