/*
Theme Name: Quicklaunch Child
Theme URI:
Template: quicklaunch-parent-theme
Author: Quicklaunch
Author URI: https://www.quicklaunch.co.uk/
Description: Child theme.
Version: 1.0
*/

.greybg {background-color: #f2f2f2;}

.single-testimonial {
	padding: 30px;
	border-radius: 20px;
	background-color: #f2f2f2;
}

.responsive-video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* For 16:9 aspect ratio. Adjust as needed. */
    padding-top: 25px;
    height: 0;
    overflow: hidden;
}

.responsive-video-wrapper iframe,
.responsive-video-wrapper object,
.responsive-video-wrapper embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

article #article-image {
    min-height: 600px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 20px;
}


.testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial-row {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: center;
    padding: 35px;
    border-radius: 20px;
    background: #f7f7f7;
}

.testimonial-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-content blockquote {
    margin: 0 0 25px 0;
    padding: 0;
    border: 0;
    font-size: 22px;
    line-height: 1.5;
    font-style: normal;
}

.testimonial-author h3 {
    margin: 0 0 5px 0;
    font-size: 20px;
}

.testimonial-author p {
    margin: 0;
    font-size: 15px;
    opacity: 0.75;
}

@media (max-width: 767px) {
    .testimonial-row {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 25px;
    }

    .testimonial-image {
        max-width: 220px;
    }

    .testimonial-content blockquote {
        font-size: 18px;
    }
}