.ressources {
  display: flex;
  margin: 50px 0;
}
.ressources > div {
  width: 100%;
}
.ressources .wrapper {
  max-width: var(--container-max-width);
  margin: 0 auto;
}
.ressources .wrapper .tagline {
  align-self: flex-start;
  font-weight: 600;
  color: var(--color-gray);
}
@media screen and (max-width: 550px) {
  .ressources .wrapper .title, .ressources .wrapper .tagline {
    margin: 0;
  }
  .ressources .wrapper .title {
    margin-bottom: 50px;
  }
}
.ressources .wrapper .articles-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media screen and (max-width: 550px) {
  .ressources .wrapper .articles-wrapper {
    grid-template-columns: 1fr;
  }
}
.ressources .wrapper .articles-wrapper .other-ressources {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ressources .wrapper .articles-wrapper .other-ressources .ressource-article {
  margin-bottom: 1px solid gray;
}
.ressources .wrapper .read-more {
  border: 1px solid black;
  color: black;
  display: flex;
  gap: 10px;
  align-items: center;
  float: inline-start;
}
.ressources .wrapper .read-more::after {
  content: "";
  height: 20px;
  width: 21px;
  display: block;
  background-image: url(../images/pictos/arrow-right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  justify-content: center;
}

/*# sourceMappingURL=ressources.css.map */
