.context-hero {
  align-items: center;
  background:
    radial-gradient(circle at 82% 25%, rgba(255, 101, 132, .15), transparent 28rem),
    linear-gradient(135deg, #171217, #251820 60%, #321925);
  color: #fff;
  display: flex;
  height: 400px;
  min-height: 400px;
  overflow: hidden;
  position: relative;
}

.wp-site-blocks > .home-header-part + .context-hero {
  margin-block-start: 0;
}

.context-hero::after {
  background-image: radial-gradient(rgba(255, 255, 255, .13) 1px, transparent 1px);
  background-size: 18px 18px;
  content: "";
  inset: 0 0 0 58%;
  mask-image: linear-gradient(90deg, transparent, #000);
  opacity: .25;
  pointer-events: none;
  position: absolute;
}

.context-hero--has-media {
  height: auto;
  min-height: 420px;
  padding-block: 2.5rem;
}

.context-hero__shell {
  margin-inline: auto;
  max-width: 1200px;
  padding-inline: 1rem;
  position: relative;
  width: min(100%, calc(1200px + 2rem));
  z-index: 1;
}

.context-hero__grid {
  align-items: center;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr 480px;
  width: 100%;
}

.context-hero__media {
  background: #0d0912;
  border: 1px solid rgba(255, 101, 132, 0.35);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 28px rgba(255, 101, 132, 0.2);
  flex: 0 0 480px;
  height: 270px;
  overflow: hidden;
  position: relative;
  width: 480px;
}

.context-hero__featured-image {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  width: 100%;
}

.context-hero__media:hover .context-hero__featured-image {
  transform: scale(1.03);
}

@media (max-width: 980px) {
  .context-hero__grid {
    gap: 1.5rem;
    grid-template-columns: 1fr;
  }

  .context-hero__media {
    flex: 0 0 auto;
    height: 220px;
    width: 100%;
  }
}

.context-breadcrumbs {
  color: #cfc4cc;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.context-breadcrumbs ol {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.context-breadcrumbs li {
  align-items: center;
  display: inline-flex;
  gap: .4rem;
}

.context-breadcrumbs li + li::before {
  color: #8f7b87;
  content: "/";
}

.context-breadcrumbs a {
  color: #e6dce3;
  text-decoration: none;
}

.context-breadcrumbs a:hover {
  color: #ff8fa7;
}

.context-breadcrumbs [aria-current="page"] {
  color: #a898a4;
}

.context-hero__copy {
  max-width: 920px;
}

.context-hero h1 {
  color: #fff;
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2.35rem, 5.5vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.05;
  margin: 0;
  text-wrap: balance;
}

.context-hero__description {
  color: #d9cfd6;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.6;
  margin: 1rem 0 0;
  max-width: 65ch;
}

@media (max-width: 600px) {
  .context-hero {
    height: auto;
    min-height: 300px;
    padding-block: 3rem;
  }

  .context-breadcrumbs {
    margin-bottom: 1rem;
    overflow: hidden;
  }

  .context-breadcrumbs ol {
    flex-wrap: nowrap;
    overflow: hidden;
  }

  .context-breadcrumbs li {
    flex: 0 0 auto;
  }

  .context-breadcrumbs li:last-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .context-hero h1 {
    font-size: clamp(2.1rem, 10vw, 3.2rem);
  }
}

