/* Shared CTA styles */

.cta-placeholder {
    display: block;
    width: 100%;
}

.cta-placeholder.loading-placeholder {
    min-height: clamp(260px, 38vh, 360px);
}

.cta-section {
    position: relative;
    background: var(--primary);
    color: var(--white);
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.05));
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-content {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
}

.cta-title {
    color: var(--white);
}

.cta-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.cta-section .btn-outline {
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.cta-section .btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

@media (max-width: 768px) {
    .cta-content {
        gap: 1.25rem;
    }

    .cta-placeholder.loading-placeholder {
        min-height: 240px;
    }
}
