.featured-resource {
  display: flex;
  align-items: stretch;
  background: #fff;
}
.featured-resource__media {
  flex: 1 1 50%;
  overflow: hidden;
}
.featured-resource__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured-resource__content {
  flex: 1 1 50%;
  background: #fff;
  padding: 40px 65px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  justify-content: center;
}
.featured-resource__eyebrow {
  font-family: "halyard-text", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.125em;
  text-transform: uppercase;
  color: #000;
  margin: 0;
}
.featured-resource__title {
  font-family: "halyard-display", sans-serif;
  font-weight: 300;
  font-size: 4rem;
  line-height: 1.2;
  color: #000;
  margin: 0;
}
.featured-resource__description {
  font-family: "halyard-text", sans-serif;
  font-size: 1.8rem;
  line-height: 1.33;
  color: #000;
  margin: 0;
}
.featured-resource__cta {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: "halyard-text", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
}
.featured-resource__cta span {
  text-decoration: none;
}
.featured-resource__cta:visited {
  color: #000;
}
.featured-resource__cta:hover span, .featured-resource__cta:focus span {
  color: #000;
  text-decoration: underline;
}
.featured-resource__cta:hover img, .featured-resource__cta:focus img {
  transform: translateX(20px);
}
.featured-resource__cta-arrow {
  display: inline-block;
  width: 74px;
  height: 22px;
  vertical-align: middle;
  flex-shrink: 0;
  transition: transform 0.6s ease;
}
.featured-resource__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.featured-resource__tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.featured-resource__tag {
  display: inline-block;
  color: #fff;
  background-color: #000;
  text-decoration: none;
  text-transform: uppercase;
  padding: 6px 8px;
  font-size: 14px;
  margin-right: 12px;
  margin-bottom: 13px;
}
.featured-resource__tag:hover, .featured-resource__tag:focus {
  background-color: #ffc92c;
  color: #000;
}
@media screen and (max-width: 767px) {
  .featured-resource {
    flex-direction: column;
  }
  .featured-resource__media {
    flex: 0 0 auto;
    height: 280px;
  }
  .featured-resource__content {
    flex: 1 1 auto;
    padding: 30px;
    gap: 20px;
  }
  .featured-resource__title {
    font-size: 3.2rem;
  }
}

/*# sourceMappingURL=style.css.map */