.related-resources-wrapper {
  background: #FAFAFA;
  padding: 100px 20px;
}

.related-resources-wrapper__container {
  max-width: 1170px;
  margin: 0 auto;
}

.related-resources-wrapper__title {
  margin: 0 0 60px;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 700;
  font-size: 52px;
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
  color: #1E3C62;
}

.related-resources-wrapper__title span {
  color: #FE4500;
}

.related-resources__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.related-card {
  background: #ffffff;
}

.related-card__image {
  display: block;
  width: 100%;
  height: 226px;
  overflow: hidden;
}

.related-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.related-card:hover .related-card__image img {
  transform: scale(1.06);
}

.related-card__content {
  background: #ffffff;
  padding: 24px 24px 30px;
}

.related-card__meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 16px;
}

.related-card__category {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 140%;
  text-transform: uppercase;
  color: #2EA3F2;
}

.related-card__dot {
  width: 4px;
  height: 4px;
  background: #56536399;
  border-radius: 50%;
  flex-shrink: 0;
}

.related-card__date {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #565363;
}

.related-card__title {
  margin: 0 0 14px;
  min-height: 88px;
}

.related-card__title a {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 100%;
  color: #08314D;
  text-decoration: none;
}

.related-card__excerpt {
  margin-bottom: 24px;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: #565363;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-card__read-more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #FE4500;
  text-decoration: none;
  transition: color 0.25s ease;
}

.related-card__read-more span {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  text-transform: uppercase;
}

.related-card__read-more i {
  position: relative;
  width: 22px;
  height: 2px;
  background: #FE4500;
  display: inline-block;
  transition: background 0.25s ease;
}

.related-card__read-more i::before {
  content: "";
  position: absolute;
  right: 0;
  top: -5px;
  width: 9px;
  height: 9px;
  border-top: 2px solid #FE4500;
  border-right: 2px solid #FE4500;
  transform: rotate(45deg);
  transition: border-color 0.25s ease;
}

.related-card__read-more:hover,
.related-card__read-more:hover span {
  color: #1E3C62;
}

.related-card__read-more:hover i {
  background: #1E3C62;
}

.related-card__read-more:hover i::before {
  border-color: #1E3C62;
}

@media (max-width: 900px) {
  .related-resources__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .related-resources-wrapper__title {
    font-size: 42px;
  }
}

@media (max-width: 600px) {
  .related-resources__grid {
    grid-template-columns: 1fr;
  }

  .related-resources-wrapper {
    padding: 70px 20px;
  }

  .related-resources-wrapper__title {
    font-size: 34px;
  }
}