/* line 1, ../sass/screen.scss */
.actus-filters {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
/* line 5, ../sass/screen.scss */
.actus-filters div:nth-child(1) {
  border: solid 1px  #73D3BF;
  color: #15433B;
}
/* line 9, ../sass/screen.scss */
.actus-filters div {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 50px;
  margin-bottom: 8px;
  margin-right: 12px;
  color: #15433B;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s;
  line-height: 1em;
}
/* line 20, ../sass/screen.scss */
.actus-filters div.active, .actus-filters div:hover {
  background-color: #73D3BF;
  color: #2C2C2C;
}

@media screen and (max-width: 768px) {
  /* line 31, ../sass/screen.scss */
  .actus-filters {
    justify-content: center;
  }
  /* line 33, ../sass/screen.scss */
  .actus-filters div {
    padding: 12px 24px;
    margin-bottom: 8px;
    margin-right: 8px;
    font-size: 16px;
  }
}
/* line 45, ../sass/screen.scss */
.grid-actus {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  border-bottom: 1px solid rgba(44, 44, 44, 0.5);
}
/* line 50, ../sass/screen.scss */
.grid-actus .card-actu {
  padding: 40px 0 0 0;
  border-top: 1px solid rgba(44, 44, 44, 0.5);
  overflow: hidden;
  position: relative;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
}
/* line 60, ../sass/screen.scss */
.grid-actus .card-actu:hover .img div {
  transform: scale(1.05);
}
/* line 64, ../sass/screen.scss */
.grid-actus .card-actu:hover .next {
  background-color: #73D3BF;
  transform: rotate(-45deg);
}
/* line 69, ../sass/screen.scss */
.grid-actus .card-actu .img {
  width: 100%;
  background-size: cover;
  background-position: center;
  margin-bottom: 24px;
  border-radius: 8px;
  overflow: hidden;
}
/* line 76, ../sass/screen.scss */
.grid-actus .card-actu .img div {
  transition: transform 0.3s;
  height: 0;
  padding-bottom: 56.25%;
  width: 100%;
  background-size: cover;
  background-position: center;
}
/* line 85, ../sass/screen.scss */
.grid-actus .card-actu .date {
  margin-bottom: 26px;
  color: #959595;
  font-size: 14px;
}
/* line 90, ../sass/screen.scss */
.grid-actus .card-actu h2 {
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: bold;
  color: #2C2C2C;
}
/* line 96, ../sass/screen.scss */
.grid-actus .card-actu .excerpt {
  color: #2C2C2C;
}
/* line 99, ../sass/screen.scss */
.grid-actus .card-actu ul {
  list-style: none;
  padding-left: 0;
  margin: 0px;
}
/* line 103, ../sass/screen.scss */
.grid-actus .card-actu ul li {
  display: inline-block;
  padding: 8px 16px;
  background-color: #73D3BF;
  border-radius: 50px;
  margin-bottom: 8px;
  margin-right: 8px;
  color: #15433B;
  font-size: 14px;
}
/* line 114, ../sass/screen.scss */
.grid-actus .card-actu .more {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
}
/* line 121, ../sass/screen.scss */
.grid-actus .card-actu .cats {
  max-width: calc(100% - 40px);
}
/* line 124, ../sass/screen.scss */
.grid-actus .card-actu .next {
  height: 40px;
  width: 40px;
  background-image: url(../img/clic.svg);
  background-repeat: no-repeat;
  background-position: center center;
  transition: all 0.3s;
  border-radius: 40px;
  border: 1px solid #73D3BF;
}

/* line 137, ../sass/screen.scss */
.load-more-posts {
  text-align: center;
  margin-top: 64px;
}
/* line 140, ../sass/screen.scss */
.load-more-posts a {
  color: #2c2c2c;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* line 146, ../sass/screen.scss */
.load-more-posts a:hover span {
  transform: rotate(-45deg);
  background-color: #73D3BF;
}
/* line 152, ../sass/screen.scss */
.load-more-posts span {
  transition: transform 0.3s;
  display: inline-block;
  height: 40px;
  width: 40px;
  background-image: url(../img/clic.svg);
  background-repeat: no-repeat;
  background-position: center center;
  transition: all 0.3s;
  border-radius: 40px;
  margin-left: 16px;
  border: 1px solid #73D3BF;
}

@media screen and (max-width: 1024px) {
  /* line 172, ../sass/screen.scss */
  .grid-actus {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 650px) {
  /* line 177, ../sass/screen.scss */
  .grid-actus {
    grid-template-columns: repeat(1, 1fr);
  }
  /* line 179, ../sass/screen.scss */
  .grid-actus .card-actu {
    margin-bottom: 40px;
  }
}
