/* Label Sub-site Styling */
.label-body {
  background-color: var(--void);
  color: var(--paper);
  margin: 0;
  font-family: var(--ff-body);
}

/* Header styling moved to system.css for site-wide consistency */

.label-main {
  padding: 64px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-title {
  margin-bottom: 64px;
}

.page-title h1 {
  font-family: var(--ff-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--white);
  margin: 0 0 12px 0;
}

.page-title p {
  font-family: var(--ff-mono);
  font-size: 13px;
  color: var(--ghost);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Releases Grid */
.releases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 40px;
}

.release-card {
  display: block;
  text-decoration: none;
  color: var(--paper);
  transition: transform var(--transition-fast);
}

.release-card:hover {
  transform: translateY(-4px);
}

.artwork-container {
  aspect-ratio: 1 / 1;
  background-color: var(--ink);
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.artwork-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity var(--transition-fast), transform var(--transition-slow);
}

.release-card:hover .artwork-img {
  opacity: 0.4;
  transform: scale(1.02);
}

.play-overlay {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  color: var(--lotus);
  font-family: var(--ff-mono);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
  z-index: 2;
}

.release-card:hover .play-overlay {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.release-meta {
  margin-top: 16px;
}

.release-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  margin: 0 0 4px 0;
}

.release-artist {
  font-size: 14px;
  color: var(--ghost);
  margin: 0;
}

.skeleton-card .sk-art {
  aspect-ratio: 1/1;
  background: var(--ink);
  border-radius: 4px;
  margin-bottom: 16px;
}
.skeleton-card .sk-line {
  height: 14px;
  background: var(--ink);
  margin-bottom: 8px;
  border-radius: 2px;
}
.skeleton-card .sk-line.short { width: 60%; }

/* Premiers — collaboration badge circles */
.premiers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.premier-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  gap: 10px;
}

.premier-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.premier-name {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ghost);
  text-align: center;
  max-width: 150px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.premier-circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.premier-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.premier-initials {
  font-family: var(--ff-display);
  font-size: 28px;
  color: var(--muted);
}

.premier-link .premier-circle {
  transition: opacity var(--transition-base), border-color var(--transition-base);
}

.premier-link:hover .premier-circle {
  opacity: 0.75;
  border-color: var(--lotus-dim);
}

/* Press Grid */
.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}

.press-card {
  display: block;
  text-decoration: none;
  color: var(--paper);
  background: var(--ink);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.press-card:hover {
  transform: translateY(-4px);
  border-color: var(--lotus-dim);
}

.press-thumb {
  aspect-ratio: 16 / 9;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.press-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity var(--transition-fast);
}

.press-thumb .press-logo-fallback {
  width: 60%;
  height: 60%;
  object-fit: contain;
  opacity: 0.6;
}

.press-card:hover .press-thumb img {
  opacity: 0.85;
}

.press-body {
  padding: 20px;
}

.press-pub-logo {
  height: 20px;
  width: auto;
  object-fit: contain;
  opacity: 0.7;
  margin-bottom: 10px;
  display: block;
}

.press-publication {
  font-family: var(--ff-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lotus);
  margin: 0 0 8px 0;
}

.press-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  margin: 0 0 10px 0;
  line-height: 1.4;
}

.press-excerpt {
  font-size: 13px;
  color: var(--ghost);
  margin: 0 0 12px 0;
  line-height: 1.6;
  font-style: italic;
}

.press-date {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--muted);
  margin: 0;
}

.press-card.skeleton {
  aspect-ratio: unset;
  min-height: 280px;
  background: var(--ink);
  border-color: var(--border);
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.coming-soon {
  color: var(--muted);
  font-family: var(--ff-mono);
  font-size: 13px;
  border: 1px dashed var(--border);
  padding: 64px;
  text-align: center;
  border-radius: 8px;
}

.release-description {
  font-family: var(--ff-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--paper);
  margin-top: 32px; /* spacing below soundcloud player/buttons */
  margin-bottom: 32px;
}
.release-description * {
  color: var(--paper) !important;
  background-color: transparent !important;
  font-family: inherit !important;
}
.release-description p, .support-received-content p {
  margin: 0 0 16px 0;
}
.release-description p:last-child, .support-received-content p:last-child {
  margin-bottom: 0;
}
.release-description a, .release-description a *,
.support-received-content a, .support-received-content a * {
  color: var(--lotus) !important;
  text-decoration: underline !important;
  transition: color var(--transition-fast);
}
.release-description a:hover, .release-description a *:hover,
.support-received-content a:hover, .support-received-content a *:hover {
  color: var(--lotus-dim) !important;
}
.release-description ul, .release-description ol,
.support-received-content ul, .support-received-content ol {
  margin: 0 0 16px 20px;
  padding: 0;
}
.release-description li, .support-received-content li {
  margin-bottom: 8px;
}

.release-support-received {
  margin-top: 48px;
  font-family: var(--ff-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--ghost);
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.release-support-received h3 {
  font-family: var(--ff-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lotus);
  margin: 0 0 16px 0;
}
.support-received-content * {
  color: var(--ghost) !important;
  background-color: transparent !important;
  font-family: inherit !important;
}

@media (max-width: 768px) {
  .label-header {
    flex-direction: column;
    gap: 24px;
    padding: 24px;
  }
  .label-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  .label-main {
    padding: 32px 24px;
  }
}
