/* Wrapper for the whole testimonial block */
.testimonial-group {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Each testimonial item (flex layout for video + text) */
.testimonial-item {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1.5rem;
}

/* Responsive video container with enforced 16:9 ratio */
.testimonial-video {
    flex: 1 1 300px;
    max-width: 100%;

    /* Modern browsers */
    aspect-ratio: 16 / 9;

    /* Fallback for older browsers */
    position: relative;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.05);
}

.testimonial-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Testimonial content area */
.testimonial-item-content {
    flex: 1 1 300px;
    max-width: 100%;
}

.testimonial-item-content h4 {
    margin: 0 0 0.5rem;
    font-weight: bold;
    font-size: 1.25rem;
}

.testimonial-text {
    font-style: italic;
    line-height: 1.6;
}

/* Optional: style for small screens */
@media (max-width: 768px) {
    .testimonial-item {
        flex-direction: column;
    }
}