/* Homepage */
.em-home-hero {
  position: relative;
  min-height: 498px;
  overflow: hidden;
  background-color: #fafafa;
  background-image: var(--em-home-hero-bg);
  background-position: center;
  background-size: cover;
}

.em-home-hero-car {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 52%;
  width: min(43vw, 620px);
  height: auto;
  transform: translate(-50%, -50%);
}

.em-home-hero-copy {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: max(24px, calc((100vw - var(--em-container)) / 2));
  width: min(32vw, 450px);
  transform: translateY(-50%);
  text-align: right;
}

.em-home-hero-copy > p {
  margin: 0 0 8px;
  font-size: clamp(13px, 1.15vw, 17px);
  font-weight: 700;
  text-transform: uppercase;
}

.em-home-hero-copy h1 {
  margin: 0 0 24px;
  color: var(--em-ink);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.em-home-hero-copy h1 span {
  display: block;
}

.em-home-hero-copy h1 strong {
  color: var(--em-primary);
  font-weight: 700;
}

.em-home-hero-button {
  min-width: 168px;
  border-color: var(--em-ink);
}

.em-home-promos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  padding-block: 30px 24px;
}

.em-home-promo {
  position: relative;
  min-height: 200px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--em-border);
  background-color: #f7f5f6;
  background-image: var(--em-promo-bg);
  background-position: center;
  background-size: cover;
}

.em-home-promo > div {
  width: 45%;
  padding: 24px 30px;
}

.em-home-promo h2 {
  margin: 0 0 8px;
  font-size: clamp(18px, 1.7vw, 25px);
  line-height: 1.15;
}

.em-home-promo p {
  margin: 0;
  color: #111;
  font-size: clamp(13px, 1.15vw, 17px);
  font-weight: 600;
}

.em-home-promo p::after {
  width: 30px;
  height: 4px;
  display: block;
  margin-top: 14px;
  background: #1f1f1f;
  content: "";
}

.em-home-products {
  padding-block: 34px 54px;
}

.em-home-products .products {
  margin-bottom: 26px;
}

.em-home-products-more {
  margin: 26px 0 0;
  text-align: center;
}

