.listings-panel {
  display: grid;
  gap: 16px;
}

.listing-list {
  display: grid;
  gap: 12px;
}

.global-listing {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.global-listing header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.global-listing strong,
.global-listing small {
  display: block;
}

.global-listing small,
.global-listing time {
  color: var(--muted);
  font-size: 12px;
}

.global-listing p {
  margin: 0;
  color: #d4deef;
  line-height: 1.5;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

@media (max-width: 640px) {
  .global-listing header {
    align-items: flex-start;
    flex-direction: column;
  }
}
