.article-hero {
  background-color: var(--blue);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(90%, rgb(1, 64, 84)), color-stop(20%, rgb(255, 255, 255)));
  background: linear-gradient(180deg, rgb(1, 64, 84) 90%, rgb(255, 255, 255) 20%);
  margin-bottom: 5rem;
}

.breadcrumbs {
  color: var(--white);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.875rem;
}
.breadcrumbs a:nth-child(3), .breadcrumbs span:nth-child(2) {
  display: none;
}
.breadcrumbs a {
  color: var(--white);
}
.breadcrumbs a:hover {
  color: var(--red);
}
@media all and (min-width: 992px) and (max-width: 1200px) {
  .breadcrumbs {
    margin-top: 2.5rem;
  }
}
@media (max-width: 61.9375rem) {
  .breadcrumbs {
    margin-bottom: 0;
  }
}

.article-hero-inner {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}
@media (max-width: 47.9375rem) {
  .article-hero-inner {
    gap: 0rem;
  }
}

.article-hero-inner {
  padding: 60px 6rem 0 6rem;
}
@media all and (max-width: 1200px) {
  .article-hero-inner {
    padding: 30px 2rem 0 2rem;
  }
}
@media (max-width: 61.9375rem) {
  .article-hero-inner {
    padding: 30px 0rem 0 0rem;
  }
}

.article-hero-heading {
  margin: 3rem 0 1rem 0;
  color: var(--white);
  font: var(--h1-font);
  margin-bottom: 1.875rem;
}

.article-hero-excerpt {
  margin: 0;
  color: var(--white);
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 42rem;
}

.article-hero-media img,
.article-hero-image-img {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.article-hero-video-wrapper {
  width: 100%;
  aspect-ratio: 16/9;
}
.article-hero-video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.article-hero-meta {
  color: var(--white);
  line-height: 1.6;
}
.article-hero-meta span {
  font-size: 0.875rem;
}

@media all and (max-width: 768px) {
  .article-hero-inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .article-hero-media {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .article-hero-media img {
    max-width: 100%;
  }
}
@media (max-width: 47.9375rem) {
  .category-article-hero .article-hero-content {
    grid-column: 1/-1;
    margin-bottom: 1.25rem;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .category-article-hero .article-hero-content .article-hero-heading {
    margin: 0;
  }
  .category-article-hero .article-hero-media {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-column-align: start;
        justify-self: start;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}