/* Creator page: latest-work hero + "more works" heading. */

/* Centre the links + share button under the centred header (game.css leaves
   .meta-row flex-start, which is right for the game page's left-aligned column),
   and give them breathing room below the "N works · Active since" line. */
header .meta-row {
  justify-content: center;
  margin-top: 0.75rem;
}

.creator-hero {
  display: flex;
  gap: 1.5rem;
  margin: 1.5rem 0 0.5rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.creator-hero:hover {
  border-color: rgba(167, 139, 250, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

.creator-hero-img {
  position: relative;
  flex: 0 0 46%;
  max-width: 46%;
}

.creator-hero-img img,
.creator-hero-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
}

.creator-hero-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: rgba(255, 255, 255, 0.05);
}

.creator-hero-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.creator-hero-label {
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  opacity: 0.55;
}

.creator-hero-info h2 {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.25;
}

.creator-hero-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.85;
  font-size: 0.9rem;
}

.creator-hero-tagline {
  margin: 0.3rem 0;
  line-height: 1.55;
  opacity: 0.85;
}

.creator-hero-view {
  margin-top: auto;
  color: #a78bfa;
  font-weight: 600;
}

.creator-back {
  margin-top: 2.5rem;
}

.more-works-heading {
  margin: 2.25rem 0 0.75rem;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  opacity: 0.55;
}

@media (max-width: 640px) {
  .creator-hero {
    flex-direction: column;
  }
  .creator-hero-img {
    flex-basis: auto;
    max-width: 100%;
  }
}
