.street-list-page {
  min-height: calc(844px - 76px);
  padding: 0 16px 36px;
  background: var(--surface-page);
}

.street-list-intro {
  position: relative;
  padding: 24px 0 20px;
  border-bottom: 1px solid var(--line-default);
}

.street-list-intro::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 56px;
  height: 2px;
  background: var(--brand-primary);
  content: "";
}

.street-list-intro > span {
  display: block;
  color: var(--brand-primary);
  font-size: 11px;
  font-weight: 600;
}

.street-list-intro > button {
  position: absolute;
  top: 18px;
  right: 0;
  display: inline-flex;
  min-width: 104px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 12px;
  border: 1px solid var(--line-default);
  border-radius: 20px;
  background: var(--surface-page);
  color: var(--ink-primary);
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
}

.street-list-intro > button svg {
  width: 15px;
  height: 15px;
}

.street-list-intro h2 {
  max-width: 235px;
  margin: 10px 0 5px;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.35;
}

.street-list-intro p {
  max-width: 290px;
  margin: 0;
  color: var(--ink-secondary);
  font-size: 12px;
  line-height: 1.65;
}

.street-list-intro small {
  display: inline-block;
  margin-top: 12px;
  padding: 5px 9px;
  border-radius: 4px;
  background: var(--brand-soft);
  color: var(--brand-primary);
  font-size: 10px;
}

.street-column-list {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.street-column-list .recommendation {
  min-height: 92px;
  grid-template-columns: 116px minmax(0, 1fr) 34px;
  gap: 10px;
  padding: 10px 0;
}

.street-column-list .recommendation-media {
  height: 72px;
  border-radius: 6px;
}

.street-column-list .recommendation-copy h3 {
  display: -webkit-box;
  overflow: hidden;
  font-size: 15px;
  line-height: 1.4;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.street-column-list .recommendation-copy p {
  display: -webkit-box;
  overflow: hidden;
  line-height: 1.45;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.street-column-list .round-arrow {
  width: 32px;
  height: 32px;
}

.street-list-state {
  display: grid;
  min-height: 410px;
  place-content: center;
  justify-items: center;
  padding: 32px 18px;
  color: var(--ink-secondary);
  text-align: center;
}

.street-list-state > svg {
  width: 34px;
  height: 34px;
  color: var(--brand-primary);
}

.street-list-state h2 {
  margin: 14px 0 6px;
  color: var(--ink-primary);
  font-family: var(--serif);
  font-size: 18px;
}

.street-list-state p {
  max-width: 250px;
  margin: 0;
  font-size: 12px;
  line-height: 1.7;
}

.street-list-state button {
  min-height: 44px;
  margin-top: 18px;
  padding: 0 20px;
  border: 1px solid var(--brand-primary);
  border-radius: 6px;
  background: var(--brand-primary);
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
}

.street-list-loading {
  align-content: start;
  gap: 12px;
  padding: 20px 0;
}

.street-list-loading span {
  display: block;
  width: 100%;
  height: 92px;
  background: linear-gradient(90deg, var(--surface-muted) 25%, #f8faf9 40%, var(--surface-muted) 58%);
  background-size: 300% 100%;
  animation: street-list-shimmer 1.2s ease-in-out infinite;
}

@keyframes street-list-shimmer {
  to { background-position: -100% 0; }
}

@media (max-width: 359px) {
  .street-list-intro h2 {
    max-width: 190px;
  }

  .street-column-list .recommendation {
    grid-template-columns: 100px minmax(0, 1fr) 30px;
    gap: 8px;
  }

  .street-column-list .round-arrow {
    width: 30px;
    height: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .street-list-loading span {
    animation: none;
  }
}
