.btn-link-default {
    width: 100%;
    background: var(--btn-color);
    color: var(--text-color-white);
    border-radius: 8px;
    padding: 8px 0;
    box-shadow: 0px 1px 0px 0px rgba(29, 100, 216, 0.2) inset;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 48px;
}

.btn-link-default:hover {
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.btn-link-default button {
    color: var(--text-color-white);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px; /* 142.857% */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-link-default button span {
    display: flex;
    align-items: center;
    font-family: var(--font-family-inter-bold);
}

.btn-link-default svg {
    transition: transform 0.3s ease;
}

.btn-link-default:hover svg {
    transform: translateX(3px);
}

.btn-link-cta {
    height: 40px;
    background: var(--linear-gradient-button);
}
