.hero-cta {
    align-self: stretch;
    padding: 0 clamp(20px, 8vw, 370px) clamp(32px, 4vw, 48px);
    background: #F0EBE6;
    display: flex;
    justify-content: center;
}

.hero-cta-inner {
    width: 100%;
    max-width: 1180px;
}

.hero-cta-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: clamp(12px, 2vw, 20px);
}

.hero-cta-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: min(100%, 220px);
    flex: 1 1 220px;
    max-width: 360px;
}

.hero-cta-btn {
    width: 100%;
    text-decoration: none;
}

.hero-cta-btn--outline {
    background: transparent;
    color: #60724F;
    border: 2px solid #60724F;
    box-sizing: border-box;
}

.hero-cta-btn--outline:hover {
    background: rgba(96, 114, 79, 0.08);
}

.hero-cta-badge {
    margin: clamp(8px, 1.2vw, 10px) 0 0;
    padding: 0;
    color: #60724F;
    font-size: clamp(12px, 1.6vw, 13px);
    font-weight: 600;
    line-height: 1.35;
    text-align: center;
    letter-spacing: 0.01em;
}

@media (max-width: 640px) {
    .hero-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta-action {
        max-width: none;
        flex: 1 1 auto;
    }
}
