.article {
  display: flex;
  gap: 20px;
}
.article .article-image {
  border-radius: 20px;
}
.article .article-title {
  margin: 0;
}

.article-main {
  flex-direction: column;
}
.article-main .article-title {
  font-size: 18px;
}

.article-item {
  align-items: center;
}
.article-item .article-title {
  font-size: 1rem;
}

.ressources {
  margin: 50px 0;
}
.ressources .wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: white;
  max-width: 1200px;
  margin: 0 auto;
}
.ressources .wrapper .title-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.ressources .wrapper .title-wrapper .title {
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
}
.ressources .wrapper .title-wrapper .subtitle {
  font-size: 18px;
}
@media (max-width: 500px) {
  .ressources .wrapper .title-wrapper .subtitle {
    text-align: center;
  }
}
.ressources .wrapper .articles-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 500px) {
  .ressources .wrapper .articles-wrapper {
    grid-template-columns: 1fr;
  }
}
.ressources .wrapper .articles-wrapper .main-ressource {
  grid-column: 1/2;
}
.ressources .wrapper .articles-wrapper .other-ressources {
  grid-column: 2/2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 500px) {
  .ressources .wrapper .articles-wrapper .other-ressources {
    grid-column: 1/2;
    grid-row: 2;
  }
}
.ressources .wrapper .articles-wrapper .other-ressources .read-more {
  background: white;
  color: black;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: bold;
  align-self: flex-start;
  transition: transform 0.2s ease, background 0.2s ease;
}
.ressources .wrapper .articles-wrapper .other-ressources .read-more:hover {
  transform: translateY(-3px);
}

.node-article {
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1725490196);
  padding: 30px 20px;
  display: flex;
  gap: 20px;
  flex-direction: column;
}
.node-article .title {
  color: white;
  margin: 0;
}
.node-article .introduction {
  color: rgb(204, 204, 204);
}
.node-article .body {
  color: white;
}
.node-article .image img {
  border-radius: 20px;
}

.node-article-teaser {
  display: flex;
  gap: 20px;
  width: 100%;
  justify-content: space-between;
}
@media (max-width: 500px) {
  .node-article-teaser {
    flex-direction: column;
  }
}
.node-article-teaser .text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  line-height: 25px;
}
.node-article-teaser .text .title {
  color: white;
  margin: 0;
  font-size: 20px;
}
.node-article-teaser .text .body {
  color: white;
}
.node-article-teaser .image img {
  border-radius: 20px;
}

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