.public-list {
  width: 100%;
  margin: 0 auto;
  padding: 0.85rem clamp(1.15rem, 3.5vw, 2.5rem) clamp(2.5rem, 6vw, 4rem);
}

.public-list__loading-search {
  margin-bottom: 1.5rem;
}

.public-list__results-bar {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 1.15rem;
}

.public-list__count {
  margin: 0;
  font-family: var(--ds-font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #10231a;
}

.public-list__empty {
  margin: 0;
  padding: 2rem 1.25rem;
  border: 1px dashed rgb(7 123 58 / 0.28);
  border-radius: 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #5b6b63;
  background:
    linear-gradient(160deg, rgb(7 123 58 / 0.05), rgb(249 189 103 / 0.08)),
    #fff;
  text-align: center;
}
.public-list__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0 0;
}

.public-list__pagination span {
  color: #40534a;
  font-size: 0.85rem;
  font-weight: 700;
}

@media (max-width: 560px) {
  .public-list__pagination {
    flex-wrap: wrap;
  }
}
