/* Block Styles */
.hero-testimonial-block {
    margin: 5em auto;
    max-width: var(--content-width);
}
.hero-testimonial-content {
    display: flex;
    gap: 2.5em;
    font-size: clamp(12px, 2vw, 16px);
    padding: 10px 0;
}
@media(max-width: 500px) {
    .hero-testimonial-content {
        flex-direction: column;
        align-items: center;
    }
}
.hero-testimonial-image-logo-wrapper {
    position: relative;
    min-width: clamp(200px, 25vw, 400px);
    width: clamp(200px, 25vw, 400px);
    height:clamp(200px, 25vw, 400px);
}
.hero-testimonial-image,
.hero-testimonial-image {
    border-radius: 1000px;
    width: 100%;
    object-fit:cover;
    aspect-ratio: 1;
    background: var(--shaded-background-color);
}
.hero-testimonial-logo {
    border-radius: 1000px;
    width: 30%;
    object-fit:cover;
    aspect-ratio: 1;
    position: absolute;
    right: 0;
    bottom: 0;
    box-shadow: 0 3px 5px rgba(0,0,0,0.05);
}
.hero-testimonial-text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* flex-grow: 3; */
    /* font-size: clamp(12px, 2vw, 16px); */
}
.hero-testimonial-preheader {
    font-size: 1.25em;
    font-weight: 800;
    color: var(--primary-color, #0073aa);
    margin-bottom: 0.5rem;
    display: block;
}
.hero-testimonial-testimonial {
    font-size: 1.8em;
    font-weight: bold;
    line-height: 1.2;
    color: inherit !important;
    text-decoration:  unset;
}
.hero-testimonial-testimonial:hover {
    text-decoration: none;    
}
.hero-testimonial-testimonial-giver {
    font-weight: bold;
    margin: 2em 0 0 0;
}
.hero-testimonial-testimonial-position {
    margin: 0.3em 0 0 0;
    font-size: 0.875em;
    font-weight: bold;
    opacity: 0.5;
}
.hero-testimonial-text-content :is(.swiper-button-next, .swiper-button-prev) {
    position: static;
    transform: unset;
    margin: unset;
}
.hero-testimonial-slide-navigation {
    display: flex; 
    gap: 0.5em;
    margin-top: 1em;
}