.st-ec8188fe-container {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.st-ec8188fe-wrapper {
    display: flex;
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.st-ec8188fe-track {
    display: flex;
    width: max-content;
    animation: marquee-ec8188fe linear infinite;
}

.st-ec8188fe-list {
    display: flex;
    flex-shrink: 0;
    gap: 30px;
    padding-right: 30px;
}

.st-ec8188fe-card {
    width: 320px;
    flex-shrink: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.st-ec8188fe-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
}

.st-ec8188fe-quote-mark {
    color: #615B9C;
    font-size: 48px;
    line-height: 1;
    margin-bottom: -10px;
    font-family: Georgia, serif;
}

.st-ec8188fe-text {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 16px 0;
    font-style: italic;
}

.st-ec8188fe-meta {
    margin-top: auto;
}

.st-ec8188fe-author {
    font-weight: 600;
    font-size: 14px;
}

.st-ec8188fe-role {
    font-size: 12px;
}

/* Pause scroll on hover */
.st-ec8188fe-pause-yes .st-ec8188fe-track:hover {
    animation-play-state: paused;
}

@keyframes marquee-ec8188fe {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}
