.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 12px;
    font-weight: 800;
    font-size: .9rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .15s ease, background .15s ease, border-color .15s ease
}

.btn:hover { transform: translateY(-1px) }

.btn--primary { background: var(--vigar-red); color: #fff }

.btn--primary:hover { background: color-mix(in srgb, var(--vigar-red) 88%, #000) }

.btn svg { width: 18px; height: 18px }

.red-line {
    width: 100%;
    height: 3px;
    background: var(--vigar-red);
    margin: 24px 0
}
