/**
 * CTA Section Block Styles
 *
 * @package NeoFinances
 */

/* Card style */
.neo-cta-style-card {
    padding: 5rem 0;
}

.neo-cta-card {
    background-color: var(--neo-white);
    border-radius: var(--neo-radius-2xl);
    box-shadow: var(--neo-shadow-xl);
    padding: 2rem;
}

@media (min-width: 768px) {
    .neo-cta-card {
        padding: 3rem 4rem;
    }
}

@media (min-width: 1024px) {
    .neo-cta-card {
        padding: 4rem;
    }
}

/* Grid layout */
.neo-cta-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .neo-cta-grid {
        grid-template-columns: 1fr auto;
    }
}

/* Content */
.neo-cta-headline {
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--neo-primary-dark) !important;
}

@media (min-width: 768px) {
    .neo-cta-headline {
        font-size: 2.25rem;
    }
}

.neo-cta-text {
    font-size: 1.125rem;
    color: var(--neo-text) !important;
    line-height: 1.6;
    margin: 0;
}

/* Action */
.neo-cta-action {
    text-align: center;
}

@media (min-width: 1024px) {
    .neo-cta-action {
        text-align: right;
    }
}

.neo-cta-action .neo-btn {
    background-color: #2a5980 !important;
    box-shadow: none;
}

.neo-cta-action .neo-btn:hover {
    background-color: #51b3da !important;
    box-shadow: none;
}

/* Full width style */
.neo-cta-style-full-width {
    background: var(--neo-gradient-hero);
    padding: 5rem 0;
}

.neo-cta-style-full-width .neo-cta-headline,
.neo-cta-style-full-width .neo-cta-text {
    color: var(--neo-white);
}

.neo-cta-style-full-width .neo-cta-text {
    color: rgba(255, 255, 255, 0.9);
}
