/**
Theme Name: web Hugo
Author: Hugo Pérez Valero
Author URI: https://hugoperez.es
Description: Mi primera web profesional
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: web-hugo
Template: astra
*/
/* Subrayado al pasar el puntero por el menú */
.main-header-menu a,
.ast-builder-menu-1 .menu-link {
    position: relative;
    text-decoration: none;
}

.main-header-menu a::after,
.ast-builder-menu-1 .menu-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: currentColor;
    transition: width 0.3s ease;
}

.main-header-menu a:hover::after,
.ast-builder-menu-1 .menu-link:hover::after {
    width: 100%;
}