.module-testimonial-single {
    /* any general styling for the module */
    background-image:var(--background-light-tan-dots);
    background-position:top right;
    background-repeat: no-repeat;
}

.module-testimonial-single .testimonials-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.module-testimonial-single .testimonial {
    padding: 5rem;
}

.module-testimonial-single .testimonial blockquote {
    margin: 0;
    font-size:2.5rem;
    line-height:3.2rem;
    position: relative;
}

.module-testimonial-single .testimonial blockquote:before {
    content: '\f10d';
    font: var(--fa-font-sharp-solid);
    font-weight:900;
    font-size:5rem;
    color:var(--dark-orange);
    left:-6rem;
    top:-20px;
    position: absolute;
}

.module-testimonial-single .testimonial blockquote p {
    margin:0;
    font-size:2.5rem;
    line-height: 3.5rem;
}

.module-testimonial-single .testimonial blockquote strong,
.module-testimonial-single .testimonial blockquote bold {
    color:var(--dark-orange);
}

.module-testimonial-single .testimonial-name {
    font-size: 1.6rem;
    line-height: 2.4rem;
    text-transform: uppercase;
    margin-top: 2rem;
}

.module-testimonial-single .testimonial-town {
    font-size: 1.6rem;
    line-height:2.4rem;
    color: var(--dark-gray);
}

.module-testimonial-single.mcs-gray {
    background-color:var(--light-gray);
    background-image:var(--background-medium-tan-dots);
}

@media (min-width:1200px) {
    .module-testimonial-single .testimonial {
        padding: 0 12rem;
    }
    
    .module-testimonial-single .testimonial blockquote {
        font-size:5rem;
        line-height:7rem;
    }
    
    .module-testimonial-single .testimonial blockquote p {
        font-size:5rem;
        line-height:7rem;
    }
    
    .module-testimonial-single .testimonial-name {
        font-size: 1.9rem;
        line-height: 2.5rem;
    }
    
    .module-testimonial-single .testimonial-town {
        font-size: 1.7rem;
        line-height: 2.5rem;
    }
}