/*
 Theme Name:   Hello Elementor Child
 Theme URI:    https://elementor.com/hello-theme/
 Description:  Thème enfant pour Hello Elementor - EFHT
 Author:       UWH
 Author URI:   https://dev.efht.fr/
 Template:     hello-elementor
 Version:      1.0
*/


.underline {
    position: relative;
    display: inline-block;
}

.underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.35em;
    width: 100%;
    height: clamp(4px, 0.25em, 10px);
    background-color: #5ecfe9;
}

/* Ajustement mobile */
@media (max-width: 767px) {
    .underline::after {
        bottom: -0.25em;
        height: 4px;
    }
}

