/* Section: CTA */
.ocf-cta {
    background: var(--ocf-bg);
    padding: 5rem 0;
}

.ocf-cta__panel {
    position: relative;
    overflow: hidden;
    border-radius: var(--card-radius);
    min-height: 420px;
    background: var(--ocf-bg-dark);
    color: var(--ocf-heading-alt);
}

.ocf-cta--simple_band .ocf-cta__panel {
    min-height: 0;
    background: var(--ocf-bg-alt);
    color: var(--ocf-heading);
    border: var(--card-border-width) solid var(--card-border-color);
    box-shadow: var(--card-shadow);
}

.ocf-cta__image,
.ocf-cta__shade {
    position: absolute;
    inset: 0;
}

.ocf-cta__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ocf-cta__shade {
    background: linear-gradient(90deg, rgba(8, 14, 24, 0.84) 0%, rgba(8, 14, 24, 0.62) 52%, rgba(8, 14, 24, 0.28) 100%);
}

.ocf-cta__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    padding: 3.25rem 2.25rem;
}

@media (min-width: 820px) {
    .ocf-cta__inner {
        grid-template-columns: minmax(0, 1fr);
        padding: 5rem 4rem;
    }
}

.ocf-cta__content {
    max-width: 680px;
}

.ocf-cta__eyebrow,
.ocf-cta__title {
    color: inherit;
}

.ocf-cta__title {
    margin-bottom: 1rem;
}

.ocf-cta__text {
    color: var(--ocf-body-alt);
    font-size: var(--text-lg);
    line-height: 1.7;
    margin: 0;
}

.ocf-cta--simple_band .ocf-cta__text {
    color: var(--ocf-body);
}

.ocf-cta__actions {
    display: flex;
    justify-content: flex-start;
}

@media (min-width: 820px) {
    .ocf-cta__actions {
        justify-content: flex-start;
    }
}
