/**
 *  actu slider homepage - info
 */

.actu-homepage-slider-wrapper  .slick-track {
  display: flex;
  align-items: stretch;
}

.actu-homepage-slider-wrapper  .slick-slide {
  display: flex !important;
  height: auto;
}

.actu-homepage-slider-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: 290px !important;
}

.actu-homepage-slider-wrapper .view-header h2 {
  color: #063A5B;
  font-weight: 800;
  font-size: 2.667rem;
  padding: 0 2rem;
}


.actu-homepage-slider-wrapper {
  position: relative;
  overflow: hidden;
}

.actu-homepage-slider-content {
  margin-left: auto;
  max-width: 1600px;
}

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

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

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

.actu-homepage-slider-wrapper .actu__content__top__body {
  color: #35312D;
}

.actu-homepage-slider-wrapper .actu__content__link a {
  color: var(--primary);
}

.actu-homepage-slider-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-homepage-slider-wrapper .actu__content__link:hover {
  transform: translateY(-2px);
  text-decoration: none;
}
.actu-homepage-slider-wrapper .actu__content__link:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.actu-homepage-slider-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-homepage-slider-wrapper .more-link {
  text-align: center;
  margin-top: 5rem;
}

.actu-homepage-slider-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;
  width: fit-content;
}

.actu-homepage-slider-wrapper .more-link a:hover {
  transform: translateY(-2px);
  text-decoration: none;
}
.actu-homepage-slider-wrapper .more-link a:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.actu-homepage-slider-wrapper .view-content {
  position: relative;
}

.actu-homepage-slider-wrapper .slick-arrow {
  position: absolute;
  top: unset;
  bottom: -50px;
  z-index: 10;
  width: 55px;
  height: 55px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  text-indent: -9999px;
  border: none;
  background-color: transparent;
  transform: unset;
}

.actu-homepage-slider-wrapper .slick-next.slick-arrow {
  left: unset;
}

.actu-homepage-slider-wrapper button.slick-arrow:hover {
  transform: translateY(-4px);
}

.actu-homepage-slider-wrapper .slick-prev {
  left: 50px;
  background-image: url('../../images/actu-hero-slider/arrow-left.svg');
}

.actu-homepage-slider-wrapper .slick-next {
  right: 50px;
  background-image: url('../../images/actu-hero-slider/arrow-right.svg');
}

.actu-homepage-slider-wrapper .slick-prev:hover {
  background-image: url('../../images/actu-hero-slider/arrow-left.svg');
}

.actu-homepage-slider-wrapper .slick-next:hover {
  background-image: url('../../images/actu-hero-slider/arrow-right.svg');
}

@media (min-width: 500px) {
  .actu-homepage-slider-content {
    margin-right: 0;
    padding-left: 3rem;
  }
  .actu-homepage-slider-wrapper .more-link {
    text-align: left;
  }
}

@media (min-width: 1000px) {
  .actu-homepage-slider-content {
    margin-right: 0;
    padding-left: 3rem;
  }

  .actu-homepage-slider-wrapper .actu__content {
    max-width: unset!important;
  }

  .actu-homepage-slider-wrapper .more-link a {
    font-size: 16px;
  }
  .actu-homepage-slider-wrapper .actu__content__link {
    font-size: 16px;
  }

  .actu-homepage-slider-wrapper .view-header h2 {
    padding: unset;
  }

  .actu-homepage-slider-wrapper .slick-arrow {
    bottom: -70px;
  }

  .actu-homepage-slider-wrapper .slick-prev {
    right: 445px;
  }
  .actu-homepage-slider-wrapper .slick-next {
    right: 380px;
  }
  .actu-homepage-slider-wrapper .slick-prev,
  .actu-homepage-slider-wrapper .slick-next {
    transform: unset;
    left: unset;
  }
}


