/* === CSS GLOBAL POUR LES PAGE ACUTS === */

/* ------------------------ */
/*          MOBILE          */
/* ------------------------ */

/*--------------------------*/

/* ------------------------ */
/*         BANNIERE         */
/* ------------------------ */
@media screen and (max-width: 768px) {

  /* BANNIÈRE */
  .hero {
    background-color: white;
    height: 15dvh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
  }

}


/* ------------------------ */
/*         DESKTOP          */
/* ------------------------ */

/*--------------------------*/

/* ------------------------ */
/*         BANNIERE         */
/* ------------------------ */
@media screen and (min-width: 769px) {

    /* BANNIÈRE */
    .hero {
        background-image: url("../images/fond-noir.png");
        height: 18vh;
        position: relative;
    }

}

/*-----------------------------*/

/* ACTUS */
.actu-container {
    max-width: 900px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.actu-container h2 {
    font-size: 4rem;
    text-transform: uppercase;
    color: #ff0000;
    margin-bottom: 0rem;
}

.actu-container p {
    font-size: 2rem;
    font-weight: 650;
    line-height: 1.6;
    color: #000000;
}

.back-btn {
    display: inline-block;
    padding: 12px 20px;
    background: #ff0000;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    transition: 0.3s ease;
}

.back-btn:hover {
    background: #000000;
}

@media screen and (max-width: 768px) {

    .actu-container h2 {
        font-size: 2rem;
    }

    .actu-container p {
        font-size: 1.5rem;
    }
}