.banner {
  font-family: var(--font-playfair);
  width: 100vw;
}

.banner-wrapper {
  width: 100%;
}

.product-banner-grid-wrapper {
  display: flex;
  justify-content: center;
}

.product-banner-grid {
  position: absolute;
  z-index: 1;
  padding-top: var(--space-2);
  display: grid;
  justify-items: center;
  grid-template-areas: 'bannerTitle bannerTitle bannerTitle';
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

.product-banner-grid p {
  cursor: pointer;
}

.product-banner-grid p:hover {
  color: white;
}

.banner-title {
  grid-area: bannerTitle;
  font-size: 38px;
}

.product {
  display: block;
  width: 100%;
}

.product-section {
  width: 100%;
}

.product-banner {
  position: relative;
  z-index: 0;
  height: 25vh;
  width: 100%;
  display: flex;
  justify-content: center;
  background-image: url(/assets/model/model-negative-space.png);
  background-repeat: no-repeat;
  background-position: -100px;
  background-size: 110%;
}

@media (max-width: 1000px) {
  .product-banner-grid {
    padding: var(--space-1);
    position: relative;
    z-index: 1;
    overflow: hidden;
    grid-template-rows: 1.75rem;
  }

  .banner-title {
    font-size: 24px;
  }

  .banner-nav {
    font-size: 12px;
  }

  .product-banner {
    position: relative;
    z-index: 0;
    background-position: -60px -20px;
    background-size: 125%;
  }
}
