.creation-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(360px, 1.1fr);
  gap: 40px;
}

.creation-main-image {
  display: grid;
  width: 100%;
  aspect-ratio: 4 / 3;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
}

.creation-main-image img {
  width: 100%;
  height: 100%;
  padding: 16px;
  object-fit: contain;
}

.creation-thumbs {
  display: grid;
  grid-template-columns: repeat(6, 54px);
  gap: 8px;
  margin-top: 10px;
  overflow-x: auto;
  padding: 2px;
}

.creation-thumbs button {
  display: grid;
  width: 54px;
  height: 54px;
  padding: 3px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--surface);
  cursor: pointer;
}

.creation-thumbs button[aria-current="true"] {
  border-color: var(--accent);
}

.creation-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.listing-preview {
  display: grid;
  gap: 26px;
}

.listing-preview > div {
  display: grid;
  gap: 7px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}

.listing-preview strong {
  font-size: 19px;
  font-weight: 620;
  line-height: 1.35;
}

.listing-preview p {
  max-height: 12em;
  margin: 0;
  overflow: auto;
  color: var(--text-secondary);
  line-height: 1.65;
  white-space: pre-wrap;
}

.creation-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.creation-keywords li {
  padding: 5px 8px;
  border-radius: 6px;
  background: var(--surface-raised);
  color: var(--text-secondary);
  font-size: 12px;
}
