.ahead {
  position: relative;
  min-height: clamp(18rem, 32vw, 26rem);
  display: grid;
  align-items: stretch;
  color: #fff;
  overflow: hidden;
  margin: 0 var(--pad-x) 2vw;
  border-radius: var(--radius-slide);
}

.ahead__media {
  position: absolute;
  inset: 0;
}

.ahead__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ahead__shade {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.22);
}

.ahead__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: clamp(1.5rem, 3vw, 2.75rem) clamp(1.25rem, 2.8vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: inherit;
}

.ahead__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.25vw, 2.95rem);
  font-weight: 300;
  letter-spacing: -0.015em;
  line-height: 1.1;
  max-width: 18ch;
  margin: 0 0 1.5rem;
}

@media (max-width: 720px) {
  .ahead {
    margin-inline: 0;
    border-radius: 0;
  }
}
