.sound-page {
  min-height: 100vh;
  background: #0d0f11;
  color: #f6f7f8;
}

.sound-header,
.sound-main,
.sound-footer {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
}

.sound-header {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid #292d31;
}

.sound-header .brand {
  position: static;
}

.back-link,
.text-link {
  color: #9adacb;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.sound-main {
  padding: 56px 0 72px;
}

.sound-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #aeb4ba;
  font-size: 0.86rem;
  margin-bottom: 30px;
}

.sound-hero {
  display: grid;
  grid-template-columns: minmax(240px, 380px) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.sound-cover {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid #34393e;
  border-radius: 6px;
}

.sound-kicker {
  color: #71d3bb;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.sound-copy h1 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.06;
  margin: 10px 0 16px;
  overflow-wrap: anywhere;
}

.sound-summary {
  color: #c7ccd1;
  line-height: 1.8;
  margin: 0 0 12px;
}

.sound-practical-note {
  color: #e8f7f3;
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0 0 24px;
}

.sound-meta,
.sound-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
}

.sound-meta span,
.sound-tags span {
  border: 1px solid #34393e;
  background: #171a1d;
  padding: 7px 10px;
  border-radius: 4px;
  color: #d8dcdf;
  font-size: 0.84rem;
}

.sound-player {
  border-top: 1px solid #34393e;
  border-bottom: 1px solid #34393e;
  padding: 22px 0;
}

.sound-player audio {
  display: block;
  width: 100%;
  margin-bottom: 14px;
}

.sound-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sound-actions .download-link,
.copy-credit-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 5px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.copy-credit-button {
  border: 1px solid #42484e;
  background: #202428;
  color: #f6f7f8;
}

.copy-credit-button.is-copied {
  border-color: #71d3bb;
  color: #9ae6d4;
}

.sound-section {
  padding: 48px 0 0;
}

.sound-section h2 {
  font-size: 1.35rem;
  margin: 0 0 18px;
}

.usage-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #34393e;
  border-left: 1px solid #34393e;
}

.usage-panel div {
  padding: 20px;
  border-right: 1px solid #34393e;
  border-bottom: 1px solid #34393e;
}

.usage-panel strong {
  display: block;
  margin-bottom: 8px;
}

.usage-panel p {
  margin: 0;
  color: #b9bfc4;
  line-height: 1.7;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.related-item {
  display: block;
  border: 1px solid #34393e;
  background: #15181b;
  padding: 16px;
  border-radius: 6px;
}

.related-item span,
.related-item small {
  display: block;
}

.related-item span {
  color: #71d3bb;
  font-size: 0.76rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.related-item strong {
  display: block;
  overflow-wrap: anywhere;
}

.related-item small {
  color: #aeb4ba;
  margin-top: 8px;
}

.sound-footer {
  padding: 28px 0 38px;
  border-top: 1px solid #292d31;
  color: #aeb4ba;
  font-size: 0.86rem;
}

@media (max-width: 760px) {
  .sound-header {
    min-height: 68px;
  }

  .sound-header .brand-copy small {
    display: none;
  }

  .sound-main {
    padding-top: 32px;
  }

  .sound-hero {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .sound-cover {
    order: 2;
    max-width: none;
    aspect-ratio: 16 / 9;
  }

  .sound-copy { order: 1; }

  .sound-copy h1 {
    font-size: 2.15rem;
  }

  .usage-panel,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .sound-actions > * {
    width: 100%;
  }
}
