.is-ddf4e285-container {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    padding: 20px 0;
}

.is-ddf4e285-row {
    overflow: hidden;
    width: 100%;
    display: flex;
    position: relative;
    user-select: none;
}

.is-ddf4e285-track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: max-content;
    will-change: transform;
}

/* Row directions */
.is-ddf4e285-track-left {
    animation: scroll-left-ddf4e285 var(--speed, 30s) linear infinite;
}

.is-ddf4e285-track-right {
    animation: scroll-right-ddf4e285 var(--speed, 30s) linear infinite;
}

.is-ddf4e285-container:hover .is-ddf4e285-track {
    animation-play-state: paused;
}

@keyframes scroll-left-ddf4e285 {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-33.333333%, 0, 0); }
}

@keyframes scroll-right-ddf4e285 {
    0% { transform: translate3d(-33.333333%, 0, 0); }
    100% { transform: translate3d(0, 0, 0); }
}

/* Card Styling */
.is-ddf4e285-card {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    box-sizing: border-box;
    flex-shrink: 0 !important;
    transition: transform 0.3s ease;
}

/* Overlay overlay */
.is-ddf4e285-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
    transition: background 0.3s ease;
}

.is-ddf4e285-card:hover::before {
    background: rgba(0, 0, 0, 0.6);
}

.is-ddf4e285-card-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.is-ddf4e285-card-title {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
}

.is-ddf4e285-card-hover {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
}

.is-ddf4e285-card:hover .is-ddf4e285-card-hover {
    max-height: 200px;
    opacity: 1;
    margin-top: 12px;
}

.is-ddf4e285-card-desc {
    margin: 0 0 12px 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.is-ddf4e285-card-btn {
    display: inline-block;
    padding: 8px 16px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: background 0.3s, color 0.3s, transform 0.2s;
}

.is-ddf4e285-card-btn:hover {
    transform: scale(1.05);
}
