.health-marquee {
    overflow: hidden;
    padding: 24px 0;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scroll-left 35s linear infinite;
}

.marquee-track.scroll-left {
    animation: scroll-left 35s linear infinite;
}

.marquee-track.scroll-right {
    animation: scroll-right 35s linear infinite;
}

@keyframes scroll-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}

.marquee-group {
    display: flex;
}

.pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid black;
    border-radius: 999px;
    color: black;
    font-size: 20px;
    white-space: nowrap;
}

.image-pill {
    padding: 0;
    overflow: hidden;
    border-radius: 8px;
    border: 1.5px solid black;
    display: inline-block;
    flex-shrink: 0;
}

.image-pill img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 999px;
}