/* 
Theme Name: Atelier Communication
Theme URI: https://freelancingbyceline.be
Description: Atelier Communication est un thème qui reprend les bases d'Hello Elementor et qui est adapté au branding de "Freelancing By Céline"
Author: Freelancing By Celine
Author URI: https://freelancingbyceline.be
Template: hello-elementor
Version: 1.0.0
Text Domain: atelier-communication
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
*/

/* End of theme information */

/* Global box-sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Styles des liens
----------------------------------------*/

/* Sélecteur spécifique */
selector a {
    color: inherit;
}

selector a {
    position: relative;
    text-decoration: none;
}

selector a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background-color: #4E7D91;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

selector a:hover::after {
    transform: scaleX(1);
}

selector a:hover {
    padding-bottom: 4px;
}

/* Titres */
.entry-title {
    display: none;
    }

