:root {
  --bg: #f7eed5;
  --bg-soft: #f2e8cb;
  --paper: rgba(255, 251, 241, 0.92);
  --paper-2: rgba(252, 247, 234, 0.88);
  --text: #21364b;
  --muted: #62746e;
  --line: rgba(33, 54, 75, 0.12);
  --line-soft: rgba(33, 54, 75, 0.07);
  --accent: #5aa7a0;
  --accent-2: #cfbf79;
  --accent-3: #9bb8ae;
  --shadow: 0 10px 26px rgba(76, 95, 95, 0.05);
  --shadow-soft: 0 4px 14px rgba(76, 95, 95, 0.035);
  --radius: 26px;
  --radius-sm: 18px;
  --container: 960px;
  --title-font: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  min-height: 100vh;
  line-height: 1.65;
  background:
    radial-gradient(68rem 34rem at 100% 12%, rgba(83, 162, 162, 0.12), transparent 58%),
    radial-gradient(36rem 24rem at 78% 16%, rgba(33, 54, 75, 0.08), transparent 58%),
    radial-gradient(34rem 20rem at 6% 100%, rgba(207, 191, 121, 0.18), transparent 60%),
    linear-gradient(160deg, transparent 0 82%, rgba(83, 162, 162, 0.04) 82% 82.3%, transparent 82.3% 100%),
    linear-gradient(180deg, #f8f0da 0%, #f5ecd6 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: -1;
}

body::before {
  right: -10rem;
  top: 8rem;
  width: 44rem;
  height: 44rem;
  border-radius: 50%;
  border: 1px solid rgba(83, 162, 162, 0.10);
  transform: rotate(-14deg);
}

body::after {
  left: -8rem;
  bottom: -8rem;
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  border: 1px solid rgba(207, 191, 121, 0.13);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.shell {
  width: min(100% - 34px, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247, 238, 213, 0.74);
  backdrop-filter: blur(8px);
}

.site-header::after {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(33, 54, 75, 0.10), transparent);
}

.site-header__inner {
  width: min(100% - 34px, var(--container));
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 0 13px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand__title,
h1,
h2,
h3 {
  font-family: var(--title-font);
  font-weight: 500;
}

.brand__title {
  font-size: 1.15rem;
  letter-spacing: 0.01em;
  color: #17334d;
}

.lang-toggle {
  display: inline-flex;
  gap: 7px;
  flex-wrap: wrap;
}

.lang-toggle button {
  min-height: 34px;
  padding: 6px 11px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(255, 251, 241, 0.76);
  color: var(--muted);
  cursor: pointer;
  transition: 0.2s ease;
}

.lang-toggle button[aria-pressed="true"],
.lang-toggle button:hover,
.lang-toggle button:focus-visible {
  color: var(--text);
  border-color: rgba(83, 162, 162, 0.24);
  background: rgba(83, 162, 162, 0.09);
}

.page-nav-wrap {
  position: sticky;
  top: 64px;
  z-index: 35;
  background: rgba(247, 238, 213, 0.62);
  backdrop-filter: blur(6px);
}

.page-nav-wrap::after {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(33, 54, 75, 0.08), transparent);
}

.page-nav {
  width: min(100% - 34px, var(--container));
  margin: 0 auto;
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 11px 0 12px;
  scrollbar-width: none;
}

.page-nav::-webkit-scrollbar { display: none; }

.page-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 5px 0 7px;
  color: var(--muted);
  font-size: 0.96rem;
  transition: color 0.2s ease;
}

.page-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), rgba(83, 162, 162, 0.2));
  transition: width 0.24s ease;
}

.page-link:hover,
.page-link:focus-visible,
.page-link.is-active,
.page-link[aria-current="page"] {
  color: var(--text);
}

.page-link:hover::after,
.page-link:focus-visible::after,
.page-link.is-active::after,
.page-link[aria-current="page"]::after {
  width: 100%;
}

main {
  position: relative;
  padding: 30px 0 44px;
}

main::before {
  content: "";
  position: absolute;
  right: -5rem;
  top: 1rem;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  border: 1px solid rgba(83, 162, 162, 0.10);
  pointer-events: none;
}

.hero-card,
.panel,
.detail-card,
.artist-card,
.gallery-card,
.milestone-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-soft);
}

.hero-card::before,
.panel::before,
.detail-card::before,
.artist-card::before,
.milestone-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.28), transparent 26%);
}

.hero-card {
  overflow: hidden;
  padding: 26px;
  border-radius: 30px;
  background:
    radial-gradient(28rem 16rem at 110% 8%, rgba(83, 162, 162, 0.09), transparent 55%),
    radial-gradient(18rem 12rem at -4% 108%, rgba(207, 191, 121, 0.12), transparent 56%),
    linear-gradient(180deg, rgba(255, 252, 244, 0.96), rgba(251, 246, 233, 0.94));
  box-shadow: var(--shadow);
}

.hero-card--single {
  display: grid;
  gap: 16px;
  justify-items: center;
  text-align: center;
}

.hero-card--single > .panel {
  width: min(100%, 720px);
  margin-inline: auto;
}

.hero-card--single .video-embed {
  width: min(100%, 720px);
  margin-inline: auto;
}

.hero-card--single .hero-subline,
.hero-card--single .section-copy,
.hero-card--single h1,
.hero-card--single h2 {
  margin-inline: auto;
}

.hero-card--single .store-grid {
  width: min(100%, 420px);
  margin-inline: auto;
}

.hero-card--single .newsletter form {
  width: min(100%, 460px);
  margin-inline: auto;
}

.hero-card--single .newsletter-fields {
  justify-content: center;
}

.detail-grid,
.artists-grid,
.gallery-grid,
.milestone-grid {
  display: grid;
  gap: 16px;
}

.store-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 0;
  border: 0;
  background: none;
  color: var(--muted);
  font-size: 0.92rem;
}

.eyebrow::before {
  content: "";
  width: 2.25rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(83, 162, 162, 0.56), rgba(83, 162, 162, 0.1));
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  color: #17334d;
}

h1 {
  font-size: clamp(2.35rem, 9vw, 4rem);
  letter-spacing: -0.035em;
  max-width: 10ch;
}

h2 {
  font-size: clamp(1.45rem, 4vw, 2rem);
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.25rem;
}

.lead,
.hero-subline,
.section-copy,
.section-intro,
.artist-card p,
.detail-card p,
.milestone-card p,
.panel p,
.footer-copy,
.embed-note {
  color: var(--muted);
}

.lead {
  margin: 0;
  max-width: 40ch;
  font-size: 1rem;
}

.section-head {
  margin-bottom: 18px;
  display: grid;
  gap: 8px;
}

.section-head p {
  margin: 0;
  max-width: 48ch;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.meta-pill,
.artist-role {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.meta-pill {
  padding: 6px 12px;
  border: 1px solid rgba(33, 54, 75, 0.08);
  background: rgba(255, 251, 241, 0.72);
  color: var(--text);
}

.panel,
.detail-card,
.artist-card,
.milestone-card {
  border-radius: 22px;
  padding: 20px;
}

.compact-panel {
  display: grid;
  gap: 12px;
}

.button,
.store-link,
.mini-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid rgba(33, 54, 75, 0.09);
  background: rgba(255, 252, 245, 0.84);
  font-weight: 500;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
  box-shadow: none;
}

.store-link {
  width: 100%;
  justify-content: space-between;
  gap: 14px;
  text-align: left;
  padding-inline: 14px 12px;
}

.store-link__label {
  display: inline-block;
  flex: 1 1 auto;
  min-width: 0;
  font-size: 0.96rem;
  color: var(--text);
}

.store-link__icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 30px;
  color: #2d5f67;
  background: rgba(83, 162, 162, 0.10);
  border: 1px solid rgba(83, 162, 162, 0.12);
}

.store-link__icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.store-link__icon i {
  font-size: 0.95rem;
  line-height: 1;
}

.button:hover,
.page-link:hover,
.store-link:hover,
.mini-link:hover,
.button:focus-visible,
.page-link:focus-visible,
.store-link:focus-visible,
.mini-link:focus-visible {
  transform: translateY(-1px);
}

.button:hover,
.store-link:hover,
.mini-link:hover,
.button:focus-visible,
.store-link:focus-visible,
.mini-link:focus-visible {
  border-color: rgba(83, 162, 162, 0.24);
  background: rgba(83, 162, 162, 0.08);
  color: var(--text);
}

.button--primary {
  border-color: rgba(83, 162, 162, 0.20);
  background: linear-gradient(135deg, rgba(83, 162, 162, 0.16), rgba(207, 191, 121, 0.12));
}

.newsletter form,
.newsletter-fields {
  display: grid;
  gap: 10px;
}

.newsletter input {
  width: 100%;
  min-height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(33, 54, 75, 0.12);
  background: rgba(255, 252, 245, 0.95);
  color: var(--text);
  padding: 0 15px;
  outline: none;
}

.newsletter input::placeholder {
  color: #82918b;
}

.icon-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(33, 54, 75, 0.09);
  background: rgba(255, 251, 241, 0.76);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: 0.2s ease;
}

.social-icon:hover,
.social-icon:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(83, 162, 162, 0.24);
  background: rgba(83, 162, 162, 0.08);
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-icon i {
  font-size: 1rem;
  line-height: 1;
}

.video-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(18rem 10rem at 80% 20%, rgba(83, 162, 162, 0.13), transparent 58%),
    linear-gradient(145deg, rgba(255, 250, 239, 0.96), rgba(244, 236, 212, 0.84));
  border: 1px solid rgba(33, 54, 75, 0.09);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.24);
}

.video-embed::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.28);
  pointer-events: none;
}

.video-embed iframe,
.video-embed .video-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-placeholder {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 26px;
  color: var(--muted);
}

.artist-head {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 15px;
  align-items: center;
  margin-bottom: 14px;
}

.artist-avatar {
  width: 74px;
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  border: 1px solid rgba(33, 54, 75, 0.08);
  background:
    linear-gradient(155deg, rgba(83, 162, 162, 0.14), rgba(207, 191, 121, 0.12)),
    rgba(255, 251, 241, 0.78);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.24);
}

.artist-avatar__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: rgba(255, 255, 255, 0.4);
}

.artist-avatar__label {
  font-family: var(--title-font);
  font-size: 1.05rem;
  color: var(--text);
}

.artist-copy {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.artist-copy h3 {
  font-size: 1.35rem;
}

.artist-role {
  color: #527f7d;
}

.artist-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.mini-link {
  min-width: 124px;
  justify-content: flex-start;
  gap: 10px;
  padding-inline: 12px 14px;
}

.mini-link__icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 28px;
  color: #2d5f67;
  background: rgba(83, 162, 162, 0.10);
  border: 1px solid rgba(83, 162, 162, 0.12);
}

.mini-link__icon svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.mini-link__icon i {
  font-size: 0.85rem;
  line-height: 1;
}

.mini-link__label {
  display: inline-block;
}

.mini-link.is-disabled {
  color: #8a9890;
  border-style: dashed;
  background: rgba(255, 251, 241, 0.58);
  cursor: default;
}

.mini-link.is-disabled .mini-link__icon {
  color: #7d8d86;
  background: rgba(155, 184, 174, 0.12);
  border-color: rgba(155, 184, 174, 0.16);
}

.gallery-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
}

.gallery-card {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  min-height: 0;
  box-shadow: none;
  background: transparent;
  overflow: hidden;
}

.gallery-card__button {
  all: unset;
  display: block;
  width: 100%;
  cursor: pointer;
}

.gallery-card__image-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #efe5c6;
}

.gallery-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}

.gallery-card__button:hover .gallery-card__image,
.gallery-card__button:focus-visible .gallery-card__image {
  transform: scale(1.02);
}

.gallery-card__placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 16px;
  background: linear-gradient(180deg, rgba(255, 251, 243, 0.95), rgba(243, 235, 217, 0.9));
  color: #5f726f;
  font-size: 0.95rem;
}

.footer-copy {
  padding: 10px 0 34px;
  font-size: 0.95rem;
  color: var(--muted);
}

.lyrics-placeholder {
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--muted);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.22), rgba(255,255,255,0.08)),
    repeating-linear-gradient(180deg, transparent 0 34px, rgba(33, 54, 75, 0.06) 34px 35px);
  padding: 32px 24px;
  font-style: italic;
}

@media (min-width: 760px) {
  .shell,
  .site-header__inner,
  .page-nav {
    width: min(100% - 52px, var(--container));
  }

  .hero-card {
    padding: 32px;
  }

  .detail-grid,
  .artists-grid,
  .milestone-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .newsletter-fields {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

@media (min-width: 1024px) {
  h1 {
    max-width: 12ch;
  }

  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.site-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  background: rgba(20, 26, 35, 0.82);
  backdrop-filter: blur(14px);
  padding: 20px;
}

.site-lightbox.is-open {
  display: grid;
  place-items: center;
}

.site-lightbox__dialog {
  width: min(100%, 1040px);
  max-height: min(92vh, 900px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 14px;
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 251, 243, 0.98), rgba(246, 239, 223, 0.97));
  border: 1px solid rgba(36, 58, 82, 0.14);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.site-lightbox__topbar {
  display: flex;
  justify-content: flex-end;
}

.site-lightbox__close {
  all: unset;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: #243a52;
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(36, 58, 82, 0.12);
  font-size: 1.35rem;
  line-height: 1;
}

.site-lightbox__media {
  display: grid;
  place-items: center;
  min-height: 0;
}

.site-lightbox__media img {
  max-width: 100%;
  max-height: 68vh;
  display: block;
  border-radius: 20px;
  object-fit: contain;
  box-shadow: 0 16px 40px rgba(36, 58, 82, 0.12);
}

.site-lightbox__caption {
  text-align: center;
  display: grid;
  gap: 4px;
}

.site-lightbox__title {
  color: #243a52;
  font-size: 1.02rem;
  font-weight: 600;
}

.site-lightbox__author {
  color: #5f726f;
  font-size: 0.92rem;
}

.site-lightbox__author a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(36, 58, 82, 0.16);
}

.site-lightbox__author a:hover,
.site-lightbox__author a:focus-visible {
  border-bottom-color: rgba(84, 162, 162, 0.34);
  outline: none;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 6px;
}

.footer-texts {
  display: grid;
  gap: 6px;
}

.footer-note {
  max-width: 72ch;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--muted);
}

.footer-socials {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-copy {
  padding: 10px 0 30px;
}

.video-placeholder {
  min-height: 220px;
  border-radius: 18px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 251, 241, 0.55);
}

@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.album-art-slot {
  width: min(100%, 320px);
  aspect-ratio: 1 / 1;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(33, 54, 75, 0.08);
  background:
    radial-gradient(10rem 8rem at 80% 20%, rgba(83, 162, 162, 0.13), transparent 58%),
    linear-gradient(145deg, rgba(255, 251, 241, 0.86), rgba(244, 236, 212, 0.78));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.24);
}

.album-art-slot img,
.album-art-placeholder {
  width: 100%;
  height: 100%;
}

.album-art-slot img {
  object-fit: cover;
}

.album-art-placeholder {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  color: var(--muted);
  font-family: var(--title-font);
  font-size: 1rem;
}

.hero-subline {
  margin: -4px 0 0;
  font-size: 1rem;
  max-width: 34ch;
}

.tracklist-section {
  margin-top: 26px;
}

.tracklist {
  display: grid;
  gap: 12px;
}

.track-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 251, 241, 0.84);
  box-shadow: var(--shadow-soft);
}

.track-number {
  font-family: var(--title-font);
  font-size: 1.1rem;
  color: #527f7d;
  padding-top: 2px;
}

.track-body {
  display: grid;
  gap: 4px;
}

.track-title {
  font-family: var(--title-font);
  font-size: 1.15rem;
  color: #17334d;
}

.track-title--link {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  width: fit-content;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.track-title--link:hover,
.track-title--link:focus-visible {
  color: #2d5f67;
  border-color: rgba(83, 162, 162, 0.45);
}

.artist-card.is-target {
  border-color: rgba(83, 162, 162, 0.34);
  box-shadow: 0 0 0 3px rgba(83, 162, 162, 0.10), var(--shadow-soft);
}

.social-icon {
  width: 42px;
  height: 42px;
}

.social-icon svg {
  width: 19px;
  height: 19px;
}

.social-icon i {
  font-size: 1.05rem;
}

@media (max-width: 640px) {
  .album-art-slot {
    width: 100%;
  }

  .track-item {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
  }

  .store-link {
    padding-inline: 12px 10px;
  }

  .store-link__label {
    font-size: 0.93rem;
  }
}

.song-story {
  display: grid;
  gap: 14px;
}

.song-story p {
  margin: 0;
}

.embed-grid {
  display: grid;
  gap: 16px;
}

.embed-card {
  display: grid;
  gap: 14px;
}

.embed-card__copy {
  display: grid;
  gap: 8px;
}

.embed-card__copy p {
  margin: 0;
}

.archive-links {
  display: grid;
  gap: 10px;
}

.archive-link {
  justify-content: flex-start;
  width: 100%;
}

.lyrics-placeholder {
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--muted);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.22), rgba(255,255,255,0.08)),
    repeating-linear-gradient(180deg, transparent 0 34px, rgba(33, 54, 75, 0.06) 34px 35px);
  padding: 32px 24px;
  font-style: italic;
}

@media (min-width: 760px) {
  .embed-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .archive-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
