.os-testimonial-banner {
    background-color: var(--wp--preset--color--background-charcoal);
    overflow: hidden;
}
.os-testimonial-banner__inner {
    max-width: 1024px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: var(--wp--preset--spacing--large);
    padding: var(--wp--preset--spacing--xx-large) 0;
    overflow-y: visible;
}
.os-testimonial-banner__media {
    position: relative;
    order: -1;
}
.os-testimonial-banner__media::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border-radius: 24px;
    background-color: var(--wp--preset--color--brand-slate-light);
    opacity: 1;
    filter: blur(200px);

}
.testimonial-banner__image,
.testimonial-banner__video-thumb {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 1.6rem;
}
.testimonial-banner__video-thumb {
    aspect-ratio: 16/9;
    object-fit: cover;
}
.os-testimonial-banner button.trigger-modal {
    width: 100%;
}
.os-testimonial-banner__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
p.os-testimonial-banner__quote {
    color: white;
    font-size: var(--wp--preset--font-size--headline-3);
    font-weight: 700;
    line-height: 1.25;
    margin-top: 0;
}
.os-testimonial-banner__meta {
    font-size: var(--wp--preset--font-size--body-2);
    font-weight: 400;
    letter-spacing: 0.06em;
}
.os-testimonial-banner__name {
    font-weight: 500;
    color: white;
}
.os-testimonial-banner__role,
.os-testimonial-banner__company {
    color: white;
    font-size: var(--wp--preset--font-size--body-2);
    margin-left: var(--wp--preset--spacing--xx-small);
    padding-left: calc(var(--wp--preset--spacing--xx-small) + 5px);
    border-left: 1px solid var(--wp--preset--color--text-light);
}

@media screen and (max-width: 960px) {
    .os-testimonial-banner__inner {
        grid-template-columns: 1fr;
    }
}