.hero__container {
    background-color: var(--color-back, --color-grey-dark);
    padding: 4rem;
    border-radius: var(--radius-L);
    gap: 4rem;
}
h1 {
    text-transform: uppercase;
    font-size: var(--fs-1000);
}
.hero__text {
    align-content: end;
}
.hero__text p {
    font-size: var(--fs-300);
    line-height: 1.2em;
}
.hero__icon {
    justify-content: center;
}
.hero__icon svg {
    height: 20rem;
    width: auto;
}
.hero__icon svg path {
    fill: var(--color-front)
}

h2,
.h2 {
    font-size: var(--fs-h2);
    font-family: var(--font-t);
    text-transform: uppercase;
    color: var(--color-text);
    line-height: 1em;
}
.h2__secondLine {
    font-size: var(--fs-1000);
}
.acte {
    padding-block: 4rem;
}
.acte__container {
    padding: 2rem;
    background-color: var(--color-mesureBack);
    border-radius: var(--radius-root);
    margin-bottom: 1rem;
}
.acte__titre {
    color: var(--color-mesureText);
    font-size: clamp(2rem, 4vw, 5rem);
    line-height: 95%;
    position: relative;
    z-index: 1;
}
.mesures__mesure,
.acte__venir {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1rem;
}
.venir__text__text {
    background-color: var(--color-g3);
    padding: 2rem;
    color: var(--color-white);
}
.venir__text__button {
    background-color: var(--color-g1);
    padding: 2rem;
    color: var(--color-p3);
    text-align: center;
    font-size: var(--fs-500);

}
.mesure__texte {
    padding: 2rem;
    --color-back: var(--color-mesureBack);
    color: var(--color-mesureText);
}
.mesure__texte p .highlight {
    background-color: var(--color-mesureFront);
}
.mesure__texte p {
    font-size: clamp(2rem, 4vw, 2rem);
    line-height: 150%;
}
.mesure__texte strong {
    color: var(--color-mesureBold);
}
.mesure__texte--alone {
    grid-column: span 2;
}
.mesure__decli {
    --color-back: var(--color-g1);
    color: var(--color-p3);
    padding: 2rem;
}
.mesure__decli summary {
    list-style: none;
}
.mesure__decli details {
    background-color: var(--color-p2);
    border-radius: var(--radius-root);
    padding: 1rem;
    color: var(--color-white);
}
.mesure__decli details[open] summary::after {
    content: attr(data-close);
}
.mesure__decli details summary::after {
    content: attr(data-open);
}
.mesure__decli details summary::after,
.mesure__decli details[open] summary::after {
    display: inline-flex;
    font-family: var(--font-p);
    text-decoration: underline;
    font-size: 1rem;
    opacity: 1;
    width: 100%;
    justify-content: center;
}
.mesure__decli details p:nth-child(2) {
    margin-top: 0.5rem;
}
/* ======= NAV =======*/
.actes__nav {
    display: flex;
    gap: var(--fs-300);
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}
p:last-of-type,
li:last-of-type {
  margin-bottom: auto;
}
.nav__acte {
    background-color: var(--color-back);
    color: var(--color-text);
    border-radius: 6px;
}
.nav__acte a {
    display: block;
    padding: 0.5rem 0.8rem;
    text-transform: uppercase;
    text-decoration: none;
    font-size: var(--fs-400);
    text-align: center;
}
.nav__acte a:hover {
    opacity: 0.85;
}


@media (max-width:1440px) {

}
@media (max-width: 1280px) {

}
@media (max-width: 960px) {

}
@media (max-width: 768px) {

}

@media (max-width: 550px) {

}