.section-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    min-width: 240px;
    min-height: 56px;
    padding: 14px 24px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 10px;
    background: var(--color-primary);
    color: #ffffff;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 10px 24px rgba(0, 167, 160, 0.18);
}

.section-cta span {
    display: inline-block;
}

.section-cta__icon {
    display: none;
}

.section-cta:hover {
    background: var(--color-primary-hover);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 10px 24px rgba(0, 167, 160, 0.18);
}

.section-cta--danger {
    background: var(--color-secondary);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 10px 24px rgba(198, 31, 61, 0.18);
}

.section-cta--danger:hover {
    background: var(--color-secondary-hover);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 10px 24px rgba(198, 31, 61, 0.18);
}

.section-cta:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.48);
    outline-offset: 3px;
}

@media (max-width: 640px) {
    .section-cta {
        width: 100%;
        min-width: 0;
    }

}
