:root {
  --header-height: 80px;
}
@media (max-width: 1199px) {
  :root {
    --header-height: 60px;
  }
}

.tcl-recent-articles .columns-row {
  gap: 20px 0;
}
.tcl-recent-articles__all-articles-link {
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  position: relative;
  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: center;
  height: 100%;
}
.tcl-recent-articles__all-articles-link:hover {
  opacity: 0.7;
}
.tcl-recent-articles__all-articles-link::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 113, 242, 0.85);
}
.tcl-recent-articles__all-articles-link-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.tcl-recent-articles__all-articles-link-image img {
  width: 100%;
  height: 100%;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
}
.tcl-recent-articles__all-articles-link-title {
  position: relative;
  z-index: 2;
  border: 1px solid white;
  color: white;
  font-size: 16px;
  line-height: 150%;
  padding: 14px 16px;
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  text-align: center;
}
.tcl-recent-articles .tcl-article-preview {
  height: 100%;
}