.LookListPage {
  --page-bottom-pad: 72px;
  min-height: 100svh;
  padding: 160px 64px var(--page-bottom-pad);
  background: #ecece9;
  color: #191919;
}

.PageHeader {
  width: min(1280px, 100%);
  margin: 0 auto;
  text-align: center;
}

.PageHeader__title {
  margin: 0;
  padding: 0 12px 16px;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.4;
  letter-spacing: 0.08em;
  font-weight: 400;
}

.LookSeasonList {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 34px;
  width: 100%;
  margin: 46px auto 0;
}

.LookSeasonCard {
  display: flex;
}

.LookSeasonCard__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0;
  color: #191919;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.07em;
  opacity: 0.72;
}

.LookSeasonCard__label {
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
}

@media (max-width: 1100px) {
  .LookListPage {
    --page-bottom-pad: 56px;
    padding: 108px 24px var(--page-bottom-pad);
  }

  .PageHeader__title {
    padding: 0 10px 12px;
    font-size: 13px;
  }

  .LookSeasonList {
    margin-top: 30px;
    gap: 16px 24px;
  }
}

@media (max-width: 767px) {
  .LookListPage {
    --page-bottom-pad: 46px;
    padding: 94px 20px var(--page-bottom-pad);
  }

  .LookSeasonList {
    width: 100%;
    margin-top: 24px;
    gap: 10px 18px;
  }
}
