.tcl-link-card {
  background-color: #fff;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.tcl-link-card:hover {
  opacity: 0.6;
}
.tcl-link-card__image {
  aspect-ratio: 9/6;
  position: relative;
  overflow: hidden;
}
.tcl-link-card__image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 15px;
  width: 100%;
  background-color: rgba(2, 60, 122, 0.6);
}
.tcl-link-card__image-caption {
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 12px;
  color: #212121;
  color: #9f9f9f;
  position: absolute;
  left: 8px;
  bottom: 20px;
}
.tcl-link-card__heading {
  font-family: "Montserrat";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 1px;
  color: #fff;
  background-color: #023c7a;
  padding: 20px;
}