.module__related-section {
  display: flex;
  flex-wrap: wrap;
}
.module__related-section .related-blog-item {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--related-border);
  border-radius: var(--related-corners);
  transition: all 0.3s;
  position: relative;
  top: 0;
  background-color: white;
}
.module__related-section .related-blog-item a {
  text-decoration: none;
  height: 100%;
}
.module__related-section .related-blog-item p {
  font-size: var(--base-font-size-mobile);
  font-family: var(--base-font-family);
  font-weight: var(--base-font-weight);
  line-height: var(--base-line-height);
  letter-spacing: var(--base-letter-spacing);
  box-sizing: border-box;
  overflow-x: hidden;
  color: var(--base-text-color);
}
.module__related-section .related-blog-item .featured-image {
  display: block;
  height: 200px;
  overflow: hidden;
  font-size: 0;
  color: transparent;
  position: relative;
  border-top-left-radius: var(--related-corners);
  border-top-right-radius: var(--related-corners);
}
.module__related-section .related-blog-item .featured-image img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}
.module__related-section .related-blog-item__info {
  padding: 15px;
  margin: 0;
}
.module__related-section .related-blog-item h4 em {
  margin-bottom: 1em;
}
.module__related-section .related-blog-item:hover,
.module__related-section .related-blog-item:focus {
  box-shadow: var(--global-box-shadow);
  top: -1em;
}
.thumbnail-links-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: space-between;
  outline: 0;
  margin: 2em 0;
  border-bottom: 1px solid #cdcfd2;
  padding-bottom: 12px;
}
.thumbnail-links-title__style {
  font-family: 'SF Display Bold';
  color: #2dc6d6;
  cursor: default;
}
.thumbnail-links-title .thumbnail-links-a{
  margin: 0;
  text-decoration: none;
  color: #7b7777;
  font-family: 'SF Display Bold';
}
.thumbnail-links-title .thumbnail-links-a:hover{
  color: var(--links-color);
}
.thumbnail-links-title .thumbnail-links-a::after{
  border-top-width: 2px;
  border-top-style: solid;
  border-right-width: 2px;
  border-right-style: solid;
  content: "";
  display: inline-block;
  margin-left: 0.3em;
  position: relative;
  pointer-events: none;
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  transition: all 0.15s ease 0s;
  vertical-align: middle;
}
@media (min-width: 800px) {
  .module__related-section .related-blog-item {
    width: calc(33.33% - 2em);
    margin-top: 1.5em;
  }
  .module__related-section .related-blog-item:not(:first-child):not(:nth-child(3n+1)) {
    margin-left: 3em;
  }
}
@media (max-width: 800px) {
  .module__related-section {
    display: block;
  }
  .module__related-section .related-blog-item {
    margin-top: 1.5em;
  }
}