/* Homepage Financial Stream CTA Group v1 */

.fs-cta-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

.fs-cta-group .btn-primary,
.fs-cta-group .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 24px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.fs-cta-group .btn-primary {
    background: rgba(93, 226, 255, 0.05);
    border: 1.5px solid #5DE2FF;
    color: #ffffff;
}

.fs-cta-group .btn-primary:hover {
    background: #5DE2FF;
    color: #000;
    box-shadow: 0 0 20px rgba(93, 226, 255, 0.4);
}

.fs-cta-group .btn-secondary {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.fs-cta-group .btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.fs-cta-group .link-tertiary {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: rgba(255, 255, 255, 0.54);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    margin-left: 8px;
}

.fs-cta-group .link-tertiary:hover {
    color: #5DE2FF;
}

@media (max-width: 600px) {
    .fs-cta-group {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .fs-cta-group .btn-primary,
    .fs-cta-group .btn-secondary {
        width: 100%;
    }

    .fs-cta-group .link-tertiary {
        margin-left: 0;
        justify-content: center;
        margin-top: 4px;
    }
}
