.hob-faq-cta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    overflow: hidden;
    background: var(--hob-surface-color);
    color: var(--hob-primary-color);
}

.hob-faq-cta__media {
    min-width: 0;
    min-height: 0;
    aspect-ratio: 1.45 / 1;
    overflow: hidden;
    background: var(--hob-primary-color);
}

.hob-faq-cta__image {
    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: cover;
}

.hob-faq-cta__content {
    display: flex;
    min-width: 0;
    padding: clamp(44px, 4vw, 72px) clamp(48px, 6vw, 96px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background: #f8f3f0;
}

.hob-faq-cta--image-left .hob-faq-cta__media,
.hob-faq-cta--image-right .hob-faq-cta__content {
    order: 1;
}

.hob-faq-cta--image-left .hob-faq-cta__content,
.hob-faq-cta--image-right .hob-faq-cta__media {
    order: 2;
}

.hob-faq-cta__kicker {
    margin: 0 0 clamp(16px, 1.4vw, 22px);
    color: color-mix(in srgb, var(--hob-primary-color) 72%, transparent);
    font-family: var(--hob-body-font);
    font-size: .8125rem;
    font-weight: 500;
    letter-spacing: .14em;
    line-height: 1.4;
    text-transform: uppercase;
}

.hob-faq-cta__title {
    max-width: 12ch;
    margin: 0;
    color: var(--hob-primary-color);
    font-family: var(--hob-heading-font);
    font-size: clamp(2rem, 2.6vw, 2.75rem);
    font-weight: 400;
    letter-spacing: .015em;
    line-height: 1.08;
    text-wrap: balance;
}

.hob-faq-cta__text {
    max-width: 36rem;
    margin: clamp(24px, 2vw, 32px) 0 0;
    color: var(--hob-primary-color);
    font-family: var(--hob-body-font);
    font-size: clamp(1rem, 1.1vw, 1.125rem);
    line-height: 1.75;
}

.hob-faq-cta__link {
    margin-top: clamp(28px, 2.5vw, 40px);
    color: var(--hob-primary-color);
    font-family: var(--hob-body-font);
    font-size: .9375rem;
    font-weight: 500;
    letter-spacing: .025em;
    line-height: 1.25;
}

@media (max-width: 899px) {
    .hob-faq-cta {
        grid-template-columns: minmax(0, 1fr);
        min-height: 0;
    }

    .hob-faq-cta__media,
    .hob-faq-cta--image-left .hob-faq-cta__media,
    .hob-faq-cta--image-right .hob-faq-cta__media {
        order: 1;
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .hob-faq-cta__content,
    .hob-faq-cta--image-left .hob-faq-cta__content,
    .hob-faq-cta--image-right .hob-faq-cta__content {
        order: 2;
        padding: clamp(40px, 10vw, 48px) clamp(20px, 5.5vw, 24px);
    }

    .hob-faq-cta__title {
        font-size: clamp(1.75rem, 7.5vw, 2.125rem);
    }

    .hob-faq-cta__text {
        font-size: 1rem;
        line-height: 1.7;
    }
}
