.tm-1420508a-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 20px 0;
    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);
}

.tm-1420508a-track {
    display: flex;
    width: max-content;
    --marquee-duration: 25s;
    animation: tmMarqueeScrollLeft var(--marquee-duration) linear infinite;
}

.tm-1420508a-reverse .tm-1420508a-track {
    animation: tmMarqueeScrollRight var(--marquee-duration) linear infinite;
}

.tm-1420508a-pause-on-hover:hover .tm-1420508a-track {
    animation-play-state: paused;
}

/* Base Card Styling */
.tm-1420508a-card {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Stars */
.tm-1420508a-stars {
    font-size: 18px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

/* Text */
.tm-1420508a-text {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

/* Meta Footer */
.tm-1420508a-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.tm-1420508a-avatar-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.tm-1420508a-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tm-1420508a-author-details {
    display: flex;
    flex-direction: column;
}

.tm-1420508a-name {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 2px 0;
}

.tm-1420508a-role {
    font-size: 14px;
}

/* Keyframes */
@keyframes tmMarqueeScrollLeft {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        /* Since we duplicate exactly 3 times, we offset precisely 1/3 of the element width */
        transform: translate3d(-33.3333%, 0, 0);
    }
}

@keyframes tmMarqueeScrollRight {
    0% {
        transform: translate3d(-33.3333%, 0, 0);
    }
    100% {
        transform: translate3d(0, 0, 0);
    }
}
