.sort-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.city-tag {
  border: 0;
  cursor: pointer;
}

.city-tag:hover {
  background: #d5e2d6;
}

.dish-list.is-state,
.dish-state {
  min-height: 430px;
}

.dish-state {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 390px;
  margin: auto;
  padding: 48px 20px;
}

.dish-state b {
  font: 400 28px/1.05 var(--display);
  letter-spacing: -0.6px;
}

.dish-state p {
  color: #596779;
  font-size: 13px;
  line-height: 1.55;
  margin: 12px 0 20px;
}

.dish-skeleton {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  padding: 21px 0;
  border-bottom: 1px solid #dddcd5;
}

.skeleton-stamp,
.skeleton-line {
  display: block;
  background: #d8ded6;
  animation: atlas-pulse 1.2s ease-in-out infinite alternate;
}

.skeleton-stamp {
  width: 62px;
  height: 62px;
  border-radius: 50%;
}

.skeleton-line {
  width: 82%;
  height: 10px;
  margin: 10px 0;
}

.skeleton-title {
  width: 55%;
  height: 17px;
  margin-top: 3px;
}

.skeleton-short {
  width: 40%;
}

@keyframes atlas-pulse {
  from { opacity: 0.45; }
  to { opacity: 0.9; }
}

@media (prefers-reduced-motion: reduce) {
  .skeleton-stamp,
  .skeleton-line {
    animation: none;
  }
}

@media (max-width: 560px) {
  .dish-list.is-state,
  .dish-state {
    min-height: 320px;
  }

  .dish-skeleton {
    grid-template-columns: 48px 1fr;
    gap: 11px;
  }

  .skeleton-stamp {
    width: 47px;
    height: 47px;
  }
}
