.lifestyle-banner-section {
  --lb-overlay: 40;
  --lb-min-height: 600px;
  --lb-mobile-min-height: 340px;
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
}

.lifestyle-banner-section.page-section::before {
  display: none;
}

.lifestyle-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: var(--lb-min-height);
}

.lifestyle-banner__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.lifestyle-banner__background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: unset;
}

.lifestyle-banner__background :is(img, svg) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.lifestyle-banner__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgb(0 0 0 / calc(var(--lb-overlay) * 1%));
}

.lifestyle-banner__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-block: clamp(48px, 8vh, 96px);
}

.lifestyle-banner__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 80rem;
  text-align: center;
  color: #fff;
}

.lifestyle-banner__heading {
  margin: 0;
  max-width: 61.25rem;
  color: inherit;
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  text-transform: capitalize;
}

.lifestyle-banner__description {
  margin: 0;
  max-width: 80rem;
  padding-inline: 10px;
  color: inherit;
  font-size: clamp(14px, 1.4vw, 20px);
  font-weight: 400;
  line-height: 1.5;
  text-transform: capitalize;
}

@media (max-width: 959px) {
  .lifestyle-banner {
    min-height: var(--lb-mobile-min-height);
  }

  .lifestyle-banner__content {
    gap: 10px;
  }

  .lifestyle-banner__heading {
    font-size: 28px;
  }

  .lifestyle-banner__description {
    font-size: 14px;
  }
}
