/**
 * Hero CTA Component Styles - Minimal and modern.
 */


.hero-cta {
    display: flex;
    justify-content: flex-start;
    width: 100%;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
        gap: 1.5rem;
        align-items: center;
    }
}

.hero-cta-button {
    min-width: 0;
}

.hero-cta-icon {
    font-size: 1.1rem;
    line-height: 1;
    transform: translateY(-1px);
}

.hero-cta-button.btn-secondary .hero-cta-icon {
    font-size: 1rem;
}

.btn.hero-cta-button:hover {
    transform: translateY(-3px);
}

@media (max-width: 639px) {
    .hero-cta-button {
        width: 100%;
        justify-content: center;
    }
}
