.testimonial-carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 1fr);
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.testimonial-carousel::-webkit-scrollbar {
    display: none;
}

.testimonial {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    scroll-snap-align: start;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow);
    transition: transform .3s ease;
}

.testimonial:hover {
    transform: scale(1.03);
}

.testimonial a {
    width: 100%;
    margin-bottom: .7rem;
    display: block;
    overflow: hidden;
    border-radius: 16px;
}

.testimonial img {
    width: 100%;
    height: 190px;
    display: block;
    object-fit: cover;
    object-position: center;
}

.testimonial strong {
    margin-top: .5rem;
    color: var(--dark);
    font-weight: 800;
    text-align: center;
}

.testimonial p {
    margin-top: .2rem;
    color: var(--muted);
    font-size: .85rem;
    line-height: 1.5;
    text-align: center;
}

@media (max-width: 768px) {
    .testimonial img {
        height: 170px;
    }
}
