/* INFOS TYPOGRAPHIQUES */

html, body {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            max-width: 100%;
            overflow-x: hidden;
        }
        *, *::before, *::after {
            box-sizing: inherit;
        }


.geist-font {
  font-family: "Geist", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

:root {
    --font-base: "Geist", sans-serif;
}

body {
    font-family: var(--font-base);
    font-optical-sizing: auto;
    font-style: normal;
}

h1, h2, h3, h4, h5, h6, p, .item-title, .item-meta, a{
  font-family: var(--font-base);
}

h1{
    font-size: 46px;
}

h2{

}

h3{
color: #000;
leading-trim: both;
font-family: Geist;
font-size: 30px;
font-style: normal;
font-weight: 400;
line-height: 140%; /* 37.2px */
letter-spacing: -0.62px;
margin-top: 0;
}

h4{
    font-size: 17px;
font-weight: 600;
letter-spacing: 0.04em;
margin: 0 0 1px;
text-transform: uppercase;
}

p{

}

a{
    color: var(--couleur-txt);;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
}

.line > :last-child {
    flex: 1;
    min-width: 0;
}

a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    width: fit-content;
}

a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 1.5px;
    background-color: var(--couleur-txt);
    transition: width 0.4s ease;
}

a:hover::after {
    width: 100%;
}


nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 1.5px;
    background-color: black;
    transition: width 0.4s ease;
}

a:hover::after {
    width: 100%;
}

/* S'applique à tout le texte sélectionné sur la page */
::selection {
    background-color: #f200ff4e; /* Un joli vert émeraude */
    color: black;            /* Couleur du texte pendant la sélection */
}

/* Optionnel : pour une compatibilité parfaite avec les anciennes versions de Firefox */
::-moz-selection {
    background-color: #f200ff4e; /* Un joli vert émeraude */
    color: black;   
}