﻿.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  align-items: center;
  min-height: 560px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--hero-bg);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0 36% 0 48%;
  z-index: 2;
  background: linear-gradient(90deg, var(--hero-bg) 0%, var(--hero-bg) 10%, rgba(251, 246, 244, .72) 36%, rgba(251, 246, 244, .18) 78%, rgba(251, 246, 244, 0) 100%);
  pointer-events: none;
}

.hero-copy {
  padding: clamp(92px, 10vw, 118px) 0 clamp(14px, 5vw, 38px) var(--container-margin);
}

.hero h1 {
  font-weight: 600;
}

.hero-copy,
.hero-image {
  position: relative;
}

.hero-copy {
  z-index: 3;
}

.hero-copy>p:not(.eyebrow) {
  max-width: 560px;
  font-size: 21px;
  color: var(--muted);
  font-weight: 600;
}

.hero .btn-ghost {
  background: var(--hero-bg);
}

.hero-image {
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% center;
  align-self: stretch;
  transform: scale(1.12);
  transform-origin: 78% center;
}

.eyebrow {
  color: var(--rose);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  padding: 34px 0 0;
  margin: 0;
  list-style: none;
}

.benefits li,
.check-list li {
  position: relative;
  padding-left: 28px;
}

.benefits li {
  font-weight: 600;
}

.benefits li::before,
.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--rose);
  font-weight: 900;
}

