.thumbnail-link__title a:focus {
  color: var(--alpha);
  border: none;
  outline: none;
}
.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-bottom: 2em;
  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;
}
.thumbnail-links-tag {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 100px;
  align-content: center;
  justify-content: center;
  justify-items: center;
  margin-bottom: 4em;
}
.thumbnail-links-tag-a {
  letter-spacing: -0.005em;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  background: #efefef;
  color: #7b7777;
  font-family: 'SF Display Bold';
  font-size: 15px;
  font-weight: 500;
  height: 45px;
  padding: 0 10px;
  text-align: center;
  line-height: 1em;
  -webkit-box-pack: center;
  justify-content: center;
  transition: all 0.3s ease 0s;
  text-decoration: none;
  width: 100%;
  border-radius: 10px;
  border: 1px solid #e5e5e5;
}
.thumbnail-links-tag-a:hover {
  box-shadow: 0px 5px 10px rgb(22 51 127 / 30%);
}
.thumbnail-link .thumbnail-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;
}
.activeMenuTag {
  box-shadow: 0px 5px 10px rgb(22 51 127 / 30%);
  color: var(--links-color) !important;
}
.thumbnail-link .thumbnail-blog-item a {
  text-decoration: none;
  height: 100%;
}
.thumbnail-link .thumbnail-blog-item .featured-image {
  display: block;
  height: 200px;
  overflow: hidden;
  font-size: 0;
  color: transparent;
  position: relative;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}
.thumbnail-link .thumbnail-blog-item .featured-image img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}
.thumbnail-links-wrapper__items .thumbnail-link:first-child .thumbnail-blog-item .featured-image {
  height: 590px;
}
.thumbnail-links-wrapper__items .thumbnail-link:first-child .thumbnail-blog-item .featured-image img {
  height: 590px;
}
.thumbnail-link .thumbnail-blog-item .thumbnail-blog-item__info {
  padding: 15px;
  margin: 0;
}
.thumbnail-link .thumbnail-blog-item .thumbnail-blog-item__info h4 em {
  margin-bottom: 1em;
}
.thumbnail-links-wrapper__items .thumbnail-link:first-child .thumbnail-blog-item .thumbnail-blog-item__info h5 {
  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);
  display: block;
  padding-top: 15px;
}
.thumbnail-link .thumbnail-blog-item .thumbnail-blog-item__info h5 {
  display: none;
}
.hide {
  display: none !important;
}
.thumbnail-container-search {
  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-bottom: 2em;
  padding-bottom: 12px;
}
.thumbnail-container-links {
  margin: 0;
  text-decoration: none;
  color: #7b7777;
  font-family: 'SF Display Bold';
}
.thumbnail-container-links:hover {
  color: var(--links-color);
}
.thumbnail-container-links::before{
  border-top-width: 2px;
  border-top-style: solid;
  border-left-width: 2px;
  border-left-style: solid;
  content: "";
  display: inline-block;
  margin-right: 0.3em;
  position: relative;
  pointer-events: none;
  width: 6px;
  height: 6px;
  transform: rotate(-45deg);
  transition: all 0.15s ease 0s;
  vertical-align: middle;
}
.blog-post__author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}
.blog-post__author-image {
  border: 12px solid #fff;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 0 4px #2dc6d6;
  margin: 0;
  max-width: 180px;
  min-width: 180px;
  min-height: 180px;
  max-height: 180px;
}
.blog-post__author-image img {
  display: block;
  margin: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.blog-post__author-content {
  margin-top: 1rem;
  text-align: center;
}
.blog-post__author-content .blog-author__name {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 2rem;
}
.blog-post__author-content .blog-post__author-bio {
  margin: 0;
}
.blog-post__author-links {
  margin: 0;
}
.blog-post__author-links a {
  color: #2dc6d6;
}
.blog-post__author-links a:hover {
  color: #792ac4;
}
#links-topic-select {
  margin-bottom: 4em;
  display: none;
}
@media (max-width: 1114px){
  .thumbnail-links-tag {
    gap: 40px 60px;
  }
}
@media (max-width: 1024px){
  .thumbnail-links-tag {
    gap: 40px 30px;
  }
  .thumbnail-link .thumbnail-blog-item .featured-image {
    height: 250px;
  }
  .thumbnail-link .thumbnail-blog-item .featured-image img {
    height: 250px;
  }
  .thumbnail-links-wrapper__items .thumbnail-link:first-child .thumbnail-blog-item .featured-image {
    height: 250px;
  }
  .thumbnail-links-wrapper__items .thumbnail-link:first-child .thumbnail-blog-item .featured-image img {
    height: 250px;
  }
}
@media (max-width: 800px){
  .thumbnail-links-tag {
    display: grid;
    grid-template-columns: repeat( auto-fit, minmax(150px, 1fr) );
  }
}
@media (max-width: 600px){
  .show .thumbnail-links-a{
    display: none;
  }
  .hide {
    display: block !important;
    text-align: center;
    border-bottom: 0 !important;
    margin-bottom: 0 !important;
  }
  #links-topic-tag {
    display: none;
  }
}