/**
 * Atom: Button
 */

.saha-button {
    display: inline-block;
    font-family: var(--saha-font-primary);
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    text-decoration: none;
    color: var(--saha-color-text-primary);
    cursor: pointer;
    transition: all 0.25s ease;
}

/* --- Outline variant --- */

.saha-button--outline {
    width: 210px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 0;
    background-color: #fff;
    border: 1px solid rgba(36, 36, 36, 0.20);
    text-transform: uppercase;
}

.saha-button--outline::after {
    content: '→';
}

.saha-button--outline:hover {
    border-color: var(--saha-color-text-primary);
}
