/* ═══ Pagina dettaglio concerto (archivio) ═══ */
.cd-page { padding-top: 2rem; }

.cd-breadcrumb { margin-bottom: 1.5rem; }
.cd-breadcrumb a { color: #9b958a; text-decoration: none; font-size: 0.9rem; transition: color 0.15s; }
.cd-breadcrumb a:hover { color: #d4af37; }

.cd-header { margin-bottom: 2.5rem; }
.cd-kicker {
  margin: 0 0 0.5rem; font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.2em; color: #d4af37;
}
.cd-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem); line-height: 1.15; margin: 0 0 0.5rem;
}
.cd-subtitle { margin: 0 0 0.75rem; font-size: 1.1rem; color: #b0a89e; font-style: italic; }
.cd-meta { display: flex; flex-wrap: wrap; gap: 1.25rem; margin: 0; color: #b0a89e; font-size: 0.95rem; }
.cd-meta i { color: #d4af37; margin-right: 0.4rem; }

.cd-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 2.5rem; align-items: start; }

.cd-description { color: #d9d4cb; line-height: 1.7; margin-bottom: 2rem; }

.cd-section { margin-bottom: 2.5rem; }
.cd-section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem; margin: 0 0 1rem; color: #f0ece6;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3); padding-bottom: 0.5rem;
  text-align: left;
}

.cd-program { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1.1rem; counter-reset: work; }
.cd-work { display: flex; flex-direction: column; gap: 0.2rem; padding-left: 1rem; border-left: 2px solid rgba(212, 175, 55, 0.35); }
.cd-work-composer { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; color: #d4af37; }
.cd-work-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.2rem; color: #f0ece6; }
.cd-work-cat { color: #9b958a; font-size: 0.95rem; }
.cd-movements { list-style: none; margin: 0.35rem 0 0; padding: 0; color: #9b958a; font-size: 0.9rem; line-height: 1.7; }

.cd-video { position: relative; aspect-ratio: 16 / 9; border-radius: 12px; overflow: hidden; border: 1px solid rgba(212, 175, 55, 0.25); }
.cd-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.cd-notes { color: #b0a89e; line-height: 1.7; }

.cd-side { display: flex; flex-direction: column; gap: 1.5rem; position: sticky; top: 80px; }
.cd-poster { margin: 0; }
.cd-poster img {
  width: 100%; height: auto; max-height: 70vh; object-fit: contain;
  border-radius: 12px; border: 1px solid rgba(212, 175, 55, 0.25);
  background: rgba(255, 255, 255, 0.02);
}

.cd-card { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 12px; padding: 1.5rem; }
.cd-personnel { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 0.5rem 1rem; font-size: 0.92rem; }
.cd-personnel dt { color: #9b958a; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; padding-top: 0.15rem; }
.cd-personnel dd { margin: 0; color: #e8e2d6; }
.cd-soloist { display: block; }

.cd-cta {
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  background: linear-gradient(135deg, #d4af37 0%, #c9a135 100%); color: #0a0a0a;
  font-weight: 700; padding: 0.85rem 1.25rem; border-radius: 10px; text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s; text-align: center;
}
.cd-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3); }
.cd-cta--ghost { background: transparent; color: #d4af37; border: 1px solid rgba(212, 175, 55, 0.5); }
.cd-cta--ghost:hover { background: rgba(212, 175, 55, 0.1); box-shadow: none; }

.cd-nav { display: flex; justify-content: space-between; gap: 1.5rem; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, 0.08); }
.cd-nav-link { display: flex; flex-direction: column; gap: 0.25rem; text-decoration: none; max-width: 46%; }
.cd-nav-link--next { text-align: right; margin-left: auto; }
.cd-nav-dir { color: #d4af37; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; }
.cd-nav-title { color: #b0a89e; font-size: 0.92rem; transition: color 0.15s; }
.cd-nav-link:hover .cd-nav-title { color: #f0ece6; }

@media (max-width: 899px) {
  .cd-layout { grid-template-columns: 1fr; }
  .cd-side { position: static; order: -1; }
  .cd-poster img { max-height: 55vh; }
}
