/* Need picker reference layout. Loaded after styles.css to avoid legacy cascade conflicts. */
body:not(.admin-page):not(.sale-admin-page) .intent-strip {
  display: grid;
  grid-template-columns: minmax(250px, 0.95fr) repeat(6, minmax(142px, 1fr));
  gap: 10px;
  align-items: stretch;
  width: min(100% - 76px, 1540px);
  margin: 34px auto 0;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body:not(.admin-page):not(.sale-admin-page) .intent-strip > div {
  display: grid;
  align-content: center;
  min-height: 216px;
  padding: 0;
  background: transparent;
}

body:not(.admin-page):not(.sale-admin-page) .intent-strip > div strong {
  max-width: 250px;
  color: #202b26;
  font-size: clamp(27px, 2vw, 30px);
  font-weight: 850;
  line-height: 1.2;
}

body:not(.admin-page):not(.sale-admin-page) .intent-strip > div span {
  max-width: 250px;
  margin-top: 22px;
  color: #7a8580;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.55;
}

body:not(.admin-page):not(.sale-admin-page) .intent-strip button {
  position: relative;
  display: grid;
  min-height: 216px;
  padding: 31px 14px 48px;
  align-content: start;
  justify-items: center;
  gap: 10px;
  border: 1px solid #e9eeeb;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(22, 32, 27, 0.035);
  color: #202b26;
  text-align: center;
  font-size: 16px;
  font-weight: 850;
  line-height: 1.25;
}

body:not(.admin-page):not(.sale-admin-page) .intent-strip button span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 10px;
  background: #eef7f3;
  color: #0b6f51;
  font-size: 28px;
  line-height: 1;
}

body:not(.admin-page):not(.sale-admin-page) .intent-strip button small {
  color: #737e79;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.35;
}

body:not(.admin-page):not(.sale-admin-page) .intent-strip button::after {
  content: "›";
  position: absolute;
  bottom: 21px;
  left: 50%;
  color: #7f8884;
  font-size: 31px;
  font-weight: 400;
  line-height: 1;
  transform: translateX(-50%);
}

@media (max-width: 1100px) {
  body:not(.admin-page):not(.sale-admin-page) .intent-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(100% - 40px, 1540px);
  }

  body:not(.admin-page):not(.sale-admin-page) .intent-strip > div {
    grid-column: 1 / -1;
    min-height: auto;
    padding: 0 0 8px;
  }
}

@media (max-width: 680px) {
  body:not(.admin-page):not(.sale-admin-page) .intent-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100% - 28px, 1540px);
  }

  body:not(.admin-page):not(.sale-admin-page) .intent-strip button {
    min-height: 174px;
  }
}

@media (max-width: 460px) {
  body:not(.admin-page):not(.sale-admin-page) .intent-strip {
    grid-template-columns: 1fr;
  }
}
