@import url("https://use.typekit.net/tvg4pki.css");
:root {
  --heading-font-family: Times New Roman, Times, serif;
  --body-font-family: neue-haas-grotesk-display, Garamond, Verdana, Arial, sans-serif;
}

@keyframes arrowLinkHover {
  0% {
    margin-left: 10px;
  }
  50% {
    margin-left: 15px;
  }
  100% {
    margin-left: 10px;
  }
}
.article-feed__card {
  position: relative;
  display: block;
  width: 100%;
  height: 500px;
  transition: all 0.25s ease-in-out;
  background-color: #0091C8;
}
.article-feed__card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(153deg, #007FAD 0%, #007FAD 50%, #221B74 100%);
  opacity: 1;
  transition: all 0.25s ease-in-out;
}
@media (min-width: 1440px) {
  .article-feed__card {
    height: 600px;
    min-width: 397px;
  }
}
.article-feed__card figure {
  overflow: hidden;
  height: 100%;
  position: absolute;
  width: 100%;
}
.article-feed__card figure iframe,
.article-feed__card figure video,
.article-feed__card figure img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  width: 100%;
}
.article-feed__card figure img {
  scale: 1;
  transition: all 0.25s ease-in-out;
}
.is-tabbing .article-feed__card:focus:before {
  opacity: 0;
}
.is-tabbing .article-feed__card:focus figure img {
  scale: 1.1;
}
@media (hover: hover) {
  .article-feed__card:hover:before {
    opacity: 0;
  }
  .article-feed__card:hover figure img {
    scale: 1.1;
  }
}
.article-feed__card__details {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 38px 47px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
}
.article-feed__card--no-image .article-feed__card__details {
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
}
.article-feed__card__date {
  color: #fff;
  font-family: "neue-haas-grotesk-display", Garamond, Verdana, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0.8px;
  margin-bottom: 15px;
}
.article-feed__card__title {
  color: #fff;
  font-family: "neue-haas-grotesk-display", Garamond, Verdana, Arial, sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 1px;
}
.article-feed__card .category-tag {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 2;
}