/* 音楽配信リンクページ専用の追補スタイル。
   ベースのレイアウトは /news/styles.css（.container.article-wrap / .page-head / .article）を流用し、
   ここでは配信サービス一覧に必要な差分だけを定義する。 */

.music-back {
  display: inline-flex;
  margin: 0 0 16px;
}

.music-hero {
  position: relative;
  display: grid;
  grid-template-columns: 168px 1fr;
  gap: 28px;
  align-items: center;
  padding: 32px;
  border-radius: 24px;
  background: linear-gradient(165deg, var(--sky-100), var(--blush) 130%);
  overflow: hidden;
}

.music-hero-art {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.music-hero-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.music-hero-eyebrow {
  margin: 0 0 6px;
  color: var(--sky-700);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.music-hero-tagline {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.music-hero-title {
  margin: 0;
  font-family: "Nunito", "LINE Seed JP", sans-serif;
  font-weight: 900;
  font-size: clamp(2.1rem, 6vw, 3.2rem);
  letter-spacing: 0.03em;
  color: rgba(10, 42, 68, 0.92);
}

.music-hero-artist {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
}

.music-links-note {
  margin: 22px 0 0;
  padding: 12px 16px;
  border: 1px dashed var(--line-strong);
  border-radius: 14px;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.music-actions {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.lyrics-open,
.lyrics-close {
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition:
    background-color 0.18s ease,
    transform 0.18s ease;
}

.lyrics-open {
  min-width: 148px;
  padding: 12px 22px;
  background: var(--sky-700);
  color: #fff;
}

.lyrics-open:hover,
.lyrics-open:focus-visible {
  background: rgba(10, 42, 68, 0.92);
}

.lyrics-open:active,
.lyrics-close:active {
  transform: translateY(1px);
}

.streaming-list {
  margin: 18px 0 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  list-style: none;
  overflow: hidden;
}

.streaming-list li + li {
  border-top: 1px solid var(--line);
}

.streaming-link {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 64px;
  padding: 0 18px;
  color: rgba(10, 42, 68, 0.92);
  text-decoration: none;
  transition: background-color 0.18s ease;
}

.streaming-link:hover,
.streaming-link:focus-visible {
  background-color: var(--sky-50);
}

.streaming-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  overflow: hidden;
}

.streaming-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.streaming-name {
  flex: 1;
  font-weight: 700;
  font-size: 1.02rem;
  color: rgba(10, 42, 68, 0.92);
}

.streaming-action {
  flex-shrink: 0;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--sky-100);
  color: var(--sky-700);
  font-size: 0.86rem;
  font-weight: 700;
}

.lyrics-dialog {
  width: min(820px, calc(100% - 32px));
  max-width: none;
  max-height: calc(100dvh - 32px);
  margin: auto;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background: #fff;
  color: inherit;
  box-shadow: 0 24px 80px rgba(10, 42, 68, 0.24);
  overflow: hidden;
}

.lyrics-dialog::backdrop {
  background: rgba(10, 42, 68, 0.56);
  backdrop-filter: blur(4px);
}

.lyrics-dialog-panel {
  position: relative;
  max-height: calc(100dvh - 34px);
  padding: 18px 48px 48px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.lyrics-close {
  position: sticky;
  top: 0;
  z-index: 1;
  display: block;
  margin: 0 0 4px auto;
  padding: 8px 16px;
  background: var(--sky-100);
  color: var(--sky-700);
  font-size: 0.82rem;
}

.lyrics-close:hover,
.lyrics-close:focus-visible {
  background: var(--sky-50);
}

.lyrics-section {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1.3fr);
  gap: 48px;
}

.lyrics-header {
  align-self: start;
}

.lyrics-eyebrow {
  margin: 0 0 8px;
  color: var(--sky-700);
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lyrics-title {
  margin: 0;
  color: rgba(10, 42, 68, 0.92);
  font-family: "Nunito", "LINE Seed JP", sans-serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.1;
}

.lyrics-title span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-family: "LINE Seed JP", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.lyrics-credits {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

.lyrics-credits p {
  display: grid;
  grid-template-columns: 4.5em 1fr;
  gap: 8px;
  margin: 0;
  color: rgba(10, 42, 68, 0.86);
  font-size: 0.86rem;
  line-height: 1.6;
}

.lyrics-credits span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.lyrics-body {
  min-width: 0;
  color: rgba(10, 42, 68, 0.92);
  font-size: clamp(0.92rem, 2vw, 1.02rem);
  font-weight: 400;
  line-height: 2.15;
}

.lyrics-body[data-copy-protected] {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

.lyrics-body p {
  margin: 0;
}

.lyrics-body p + p {
  margin-top: 2em;
}

@media (max-width: 560px) {
  .music-hero {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 28px 18px;
    text-align: center;
  }

  .music-hero-art {
    width: 132px;
  }

  .lyrics-section {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .lyrics-dialog {
    width: calc(100% - 20px);
    max-height: calc(100dvh - 20px);
    border-radius: 18px;
  }

  .lyrics-dialog-panel {
    max-height: calc(100dvh - 22px);
    padding: 12px 22px 36px;
  }

  .lyrics-title span {
    display: inline;
    margin: 0 0 0 8px;
  }

  .lyrics-credits {
    margin-top: 20px;
  }

  .lyrics-body {
    line-height: 2;
  }
}
