.sr-hero {
  position: relative;
  min-height: min(88vh, 52rem);
  display: grid;
  align-items: end;
  color: #fff;
  background: #1a1714;
}

.sr-hero__media {
  position: absolute;
  inset: 0;
}

.sr-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sr-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 23, 20, 0.15) 0%, rgba(26, 23, 20, 0.72) 100%);
}

.sr-hero__content {
  position: relative;
  z-index: 1;
  padding-block: var(--sr-space-8) var(--sr-space-7);
  max-width: 40rem;
  margin-inline: auto 0;
  width: min(100% - 2rem, var(--sr-container));
}

.sr-hero__heading {
  font-size: var(--sr-fs-2xl);
  margin-bottom: var(--sr-space-4);
  color: #fff;
}

.sr-hero__text {
  font-size: var(--sr-fs-md);
  color: rgba(255, 255, 255, 0.88);
  max-width: 32rem;
}

.sr-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sr-space-3);
  margin-top: var(--sr-space-5);
}

.sr-hero .sr-btn--ghost {
  border-color: #fff;
  color: #fff;
}

.sr-hero .sr-btn--ghost:hover {
  background: #fff;
  color: var(--sr-color-ink);
}

.sr-hero .sr-btn--primary {
  background: #fff;
  color: var(--sr-color-ink);
}

.sr-hero .sr-btn--primary:hover {
  background: var(--sr-color-paper);
}
