/* Анимация подчёркивания при наведении */
.underline-hover {
    position: relative;
    display: inline-block;
}

.underline-hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: currentColor;
    transition: width 0.3s ease;
}

.underline-hover:hover::after,
:hover > .underline-hover::after {
    width: 100%;
}
