.RelatedPosts {
  width: 100%;
}
.RelatedPosts__Title {
  position: relative;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 24px;
  margin-left: 0;
  padding-left: 25px;
  color: #131313;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.57;
  letter-spacing: 0.08em;
}
.RelatedPosts__Title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 9px;
  height: 45px;
  background-color: var(--color-primary, #0d366d);
  transform: translateY(-50%);
}
@media screen and (max-width: 980px) {
  .RelatedPosts__Title {
    margin-bottom: 16px;
    padding-left: 20px;
    font-size: 20px;
  }
  .RelatedPosts__Title::before {
    width: 7px;
    height: 36px;
  }
}
.RelatedPosts__Grid {
  margin-top: 32px;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px 24px;
  list-style: none;
}
@media screen and (max-width: 980px) {
  .RelatedPosts__Grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.RelatedPosts__Grid-Item {
  display: flex;
}
