.tabs-navigation {
    gap: 40px;
    margin-bottom: 5rem;
    .tabs__link {
        cursor: pointer;
        a {
            text-decoration: none;
            color: currentColor;
        }
        &.active {
            text-decoration: underline;
        }
    }
}

.tabs__container {
    display: none;
    &.visible {
        display: block;
    }
}