.polos-page {
  color: var(--eerie-black);
  background: #fff;
}

.polos-page .header {
  position: relative;
  border-bottom: 1px solid var(--cultured);
}

.polos-page .navbar-link.active {
  color: var(--candy-pink);
}

.polo-hero {
  padding: clamp(44px, 7vw, 86px) 0;
  background: var(--cultured);
}

.polo-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.polo-hero-copy h1 {
  max-width: 760px;
  margin: 10px 0 20px;
  color: var(--eerie-black);
  font-size: clamp(2.7rem, 6vw, 5.6rem);
  line-height: .96;
  letter-spacing: 0;
}

.polo-hero-copy p:not(.section-kicker) {
  max-width: 620px;
  color: var(--sonic-silver);
  font-size: 1rem;
  line-height: 1.8;
}

.polo-hero-actions {
  display: flex;
  margin-top: 30px;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.polo-text-link {
  color: var(--eerie-black);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.polo-hero-media {
  display: grid;
  grid-template-columns: .82fr 1fr;
  gap: 16px;
  align-items: end;
}

.polo-hero-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #fff;
}

.polo-hero-media img:first-child {
  margin-bottom: 11%;
}

.polo-fit-strip {
  padding: 24px 0;
  border-block: 1px solid var(--cultured);
  background: #fff;
}

.polo-fit-strip .container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.polo-fit-strip article {
  display: grid;
  grid-template-columns: 68px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 88px;
}

.polo-fit-strip img {
  width: 68px;
  height: 68px;
  object-fit: cover;
  background: var(--cultured);
}

.polo-fit-strip span {
  color: var(--eerie-black);
  font-weight: 700;
}

.polo-products {
  background: #fff;
}

.polo-products .catalog-intro {
  max-width: 720px;
  margin: -14px auto 24px;
  text-align: center;
}

.polo-products .product-list {
  align-items: stretch;
}

.polo-products .product-card {
  height: 100%;
}

.polo-products .card-banner {
  background: var(--cultured);
}

.polo-products .card-banner img {
  aspect-ratio: 4 / 5;
  object-fit: contain;
  padding: 8%;
  background: var(--cultured);
}

@media (max-width: 900px) {
  .polo-hero-grid {
    grid-template-columns: 1fr;
  }

  .polo-fit-strip .container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .polo-hero-media {
    grid-template-columns: 1fr;
  }

  .polo-hero-media img:first-child {
    margin-bottom: 0;
  }

  .polo-fit-strip .container {
    grid-template-columns: 1fr;
  }
}
