#carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

#carousel-track {
    display: flex;
    animation: slide linear infinite;
}

.card {
    flex: 0 0 300px;
    height: fit-content;
    min-height: 200px;
    margin: 0 10px;
    padding: 10px;
    background-color: #f0f0f0;
    border-radius: 16px;
    box-shadow: 0 20px 30px -20px rgba(5, 5, 5, 0.24);
}

.header {
    display: flex;
    align-items: center;
    grid-gap: 1rem;
    gap: 1rem;
}

.header .image {
    height: 3.5rem;
    width: 3.5rem;
    border-radius: 9999px;
    object-fit: cover;
    overflow: hidden;
}

.header .image img {
    height: 3.5rem;
    width: 3.5rem;
}

.stars {
    display: flex;
    justify-content: center;
    grid-gap: 0.125rem;
    gap: 0.125rem;
    color: rgb(214, 199, 34);
}

.stars svg {
    height: 1rem;
    width: 1rem;
}

.name {
    margin-top: 0.25rem;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 600;
    --tw-text-opacity: 1;
    color: rgba(55, 65, 81, 1);
}

.message {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    margin-top: 1rem;
    color: rgba(107, 114, 128, 1);
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}