.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
        url('/assets/cta-bg-mobile.webp') center center / cover no-repeat,
        #333;
    border-top: 1px solid #e4e4e4;
    padding: 4rem 0;
}

.cta-container {
    width: min(1100px, 90%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-text {
    flex: 1;
    min-width: 200px;
}

.cta-title {
    font-size: clamp(1.3rem, 2.4vw, 1.75rem);
    font-weight: 300;
    color: var(--secondary-color);
    margin: 0 0 0.35rem;
    line-height: 1.25;
    text-shadow: 0 1px 6px #0007;
}

.cta-sub {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--accent-color-white);
    margin: 0;
    text-shadow: 0 1px 6px #0007;
}

@media (min-width: 600px) {
    .cta-section {
        background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
            url('/assets/cta-bg.webp') center center / cover no-repeat,
            #333;
    }
}

@media (max-width: 600px) {
    .cta-container {
        flex-direction: column;
        align-items: flex-start;
    }
}
