/* Open Account Form — Testimonial */
.oaf-testimonial {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
}

.oaf-testimonial__inner {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* Left column */
.oaf-testimonial__left {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.oaf-testimonial__tag {
    display: block;
    font-family: 'Source Code Pro', monospace;
    font-size: 13px;
    color: #4C6769;
    line-height: 1.3;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 400;
}

.oaf-testimonial__heading {
    font-size: 32px;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1.25rem;
}

.oaf-testimonial__subtext {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.oaf-testimonial__subtext p {
    margin: 0;
}

.oaf-testimonial__quote-card {
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.75rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
}

.oaf-testimonial__quote-text {
    font-size: 18px;
    line-height: 1.5;
    color: #fff;
    margin: 0 0 1.25rem;
}

.oaf-testimonial__quote-attribution {
    font-family: 'Source Code Pro', monospace;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* md: 830px — side by side */
@media (min-width: 830px) {
    .oaf-testimonial__heading {
        font-size: 48px;
    }
}

/* lg: 1050px */
@media (min-width: 1050px) {
    .oaf-testimonial {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }

    .oaf-testimonial__inner {
        flex-direction: row;
        align-items: flex-start;
        gap: 2.5rem;
    }

    .oaf-testimonial__left {
        flex: 1 1 0%;
        max-width: 560px;
    }

    .oaf-testimonial__heading {
        font-size: 56px;
    }

    /* Ensure the form wrapper sits right */
    .oaf-testimonial .open-account-form-block__form-wrapper {
        flex-shrink: 0;
        width: 100%;
        max-width: 560px;
    }
}

/* xl: 1280px */
@media (min-width: 1280px) {
    .oaf-testimonial__inner {
        gap: 5rem;
    }
}
