/* Empty state */

.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.empty-state__image {
  width: 346px;
  max-width: 100%;
  height: auto;
  display: block;
}

.empty-state__text {
  margin: 0;
  width: 100%;
  text-align: center;
  color: var(--text-primary);
  font-size: 18px;
  font-family: PingFang SC, sans-serif;
  font-weight: 400;
  line-height: 24px;
}

.layout-section__empty {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 24px 0;
}

.empty-state-demo {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}

@media (max-width: 768px) {
  .empty-state {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .empty-state__image {
    width: 100%;
    height: 120px;
    object-fit: contain;
  }

  .empty-state__text {
    font-size: 12px;
    line-height: 18px;
  }
}
