/**
 *  actu page simple
 */


.actu-page-simple-wrapper {
  position: relative;
  overflow: hidden;
  background-color: var(--secondary);
  padding: 1rem 0 6rem 0;
}

.actu-page-simple-content {
  margin-left: auto;
}

.actu-page-simple-wrapper .view-header h2 {
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 2rem;
  padding: 0 1rem;
  margin-bottom: 2rem;
}

.actu-page-simple-wrapper .view-content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.actu-page-simple-wrapper .actu__content {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: white;
  box-shadow: 0px 6px 40px rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  max-width: 277px;
  transition: transform 0.3s ease;
  margin: 0 auto;
}


.actu-page-simple-wrapper .actu__content__top {
 width: unset;
}

.actu-page-simple-wrapper .actu__content__top__title {
  color: #35312D;
  font-size: 1.111rem;
  font-weight: 800;
  line-height: 150%;
  margin-bottom: 0.5em;
}

.actu-page-simple-wrapper .categorie-name {
  background-color: var(--primary)!important;
  top: unset;
  bottom: 0px;
  width: calc(100% - 1.5em);
  padding: 0.5rem 1rem;
  border-top-right-radius: 32px;
  transition: width 0.3s ease;
}

.actu-page-simple-wrapper .actu__content > a:hover .categorie-name {
  width: calc(100% - 1em);
}

.actu-page-simple-wrapper .actu__content__top__body {
  color: #35312D;
}

.actu-page-simple-wrapper .actu__content__link a {
  color: var(--primary);
}

.actu-page-simple-wrapper .actu__content__link {
  margin-top: 0.5rem;
  display: inline-block;
  background-color: var(--white);
  color: var(--primary);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  line-height: 1.2;
  border: 1px solid var(--primary);
}

.actu-page-simple-wrapper .actu__content__link:hover {
  transform: translateY(-2px);
  text-decoration: none;
}



.actu-page-simple-wrapper .actu__content__bottom {
  background: white;
  width: unset;
  margin-left: unset;
  color: #303030;
  font-size: 0.9em;
  margin-top: unset;
  position: relative;
  padding: 0.7em;
}

.actu-page-simple-wrapper .more-link {
  text-align: left;
  margin-top: 3rem;
}

.actu-page-simple-wrapper .more-link a {
  display: inline-block;
  background-color: var(--white);
  color: var(--primary);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  line-height: 1.2;
  border: 1px solid var(--primary);
  text-transform: uppercase;
}

.actu-page-simple-wrapper .more-link a:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.actu-page-simple-wrapper .more-link a:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}


@media (min-width: 550px) {

  .actu-page-simple-wrapper .view-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .actu-page-simple-wrapper .view-header h2 {
    font-size: 2.5rem;
    padding: 0;
  }

  .actu-page-simple-wrapper .more-link a {
    font-size: 15px;
  }

  .actu-page-simple-wrapper .actu__content__link {
    font-size: 15px;
  }
}


@media (min-width: 1000px) {
  .actu-page-simple-wrapper .view-content {
    grid-template-columns: repeat(4, 1fr);
  }

  .actu-page-simple-wrapper .more-link a {
    font-size: 16px;
  }

  .actu-page-simple-wrapper .actu__content__link {
    font-size: 16px;
  }

  .actu-page-simple-wrapper .more-link {
    margin-top: 5rem;
  }
}
