/* ACTUS */

/* MOBILE */
@media screen and (max-width: 768px) {

  .actus-section {
    padding: 0.5rem 1rem;
    background-color: #ffffff;
    text-align: center;
  }

  .actus-title {
    font-size: 2rem;
    text-transform: uppercase;
    color: #ff0000;
    margin-left: 1.8rem;
    margin-right: 1.8rem;
    margin-bottom: 2rem;
    letter-spacing: 2px;
  }

  .actus-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-left: 0.8rem;
    margin-right: 0.8rem;
  }

  .card-actu {
    background-color: #ffffff;
    color: #000000;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    width: 100%;
    flex: 1;
    transition: transform 0.3s ease;
    border: 2px solid #000000;
  }

  .card-actu:hover {
    transform: scale(1.03);
  }

  .card-actu img {
    width: 100%;
    height: auto;
    display: block;
  }

  .card-actu-text {
    padding: 1rem;
    text-align: center;
  }

  .card-actu-text h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #ff0000;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
    margin-top: 0.1px;
  }

  .card-actu-text p {
    font-size:1.2rem;
    font-weight: bold;
    margin-bottom: 1.5px;
  }

  #last-actu {
    margin-bottom: 1.5rem;
  }

}

/* DESKTOP */
@media screen and (min-width: 769px) {

  .actus-section {
    padding: 3rem 1rem;
    padding-top: 2rem;
    background-color: #ffffff;
    text-align: center;
  }

  .actus-title {
    font-size: 2.5rem;
    text-transform: uppercase;
    color: #ff0000;
    margin-top: 0rem;
    margin-bottom: 2rem;
    letter-spacing: 2px;
  }

  /* Curseur par défaut */
  .actus-title:hover {
    cursor: default;
  }

  .actus-cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6rem;
    margin-left: 6rem;
    margin-right: 6rem;
  }

  .card-actu {
    background-color: #ffffff;
    color: #000000;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    width: 100%;
    flex: 1;
    transition: transform 0.3s ease;
    border: 2px solid #000000;
  }

  .card-actu:hover {
    transform: scale(1.03);
  }

  .card-actu img {
    width: 100%;
    height: auto;
    display: block;
  }

  .card-actu-text {
    padding: 1rem;
    text-align: center;
  }

  .card-actu-text h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #ff0000;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
    margin-top: 0.1px;
  }

  .card-actu-text p {
    font-size:1.2rem;
    font-weight: bold;
    margin-bottom: 1.5px;
  }

}