.blog-hero {
  position: relative;
  min-height: 60vh;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  /* .hero-overlay and .hero-content are shared with hero-main via same class names */
}
.blog-hero .blog-hero-bg,
.blog-hero .blog-hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.blog-hero .blog-hero-category {
  align-self: flex-start;
  font-family: var(--ff-secondary);
  font-size: 0.688rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 6px 12px;
  color: var(--clr-neutral-100);
  background: var(--clr-accent-teal-700);
}
.blog-hero .blog-hero-title {
  width: 58.667vw;
  max-width: 100%;
  font-size: clamp(1.75rem, 5.8vw, 2.25rem);
  line-height: 1.15;
  font-weight: 800;
}
.blog-hero .blog-hero-date {
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.65);
}
.blog-hero .blog-hero-excerpt {
  width: 70.133vw;
  max-width: 100%;
  color: rgba(0, 0, 0, 0.75);
  line-height: 1.45;
}
.blog-hero .blog-hero-link {
  width: fit-content;
  margin-top: 6px;
  color: var(--clr-primary-900);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}
.blog-hero .blog-hero-image-cell {
  display: none;
}

@media screen and (width >= 1024px) {
  .blog-hero {
    min-height: 70vh;
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    align-items: stretch;
  }
  /* .hero-content sizing comes from hero-main */
  .blog-hero-title {
    width: 100%;
    font-size: clamp(2rem, 3.05vw, 3rem);
  }
  .blog-hero-excerpt {
    width: 100%;
  }
  .blog-hero-image-cell {
    display: block;
    position: relative;
    z-index: 0;
    min-height: clamp(320px, 40vw, 560px);
  }
}

/*# sourceMappingURL=hero-blog.css.map */
