/* =========================
   DETAIL PAGE
========================= */

.detail-hero {
  padding: 4.5rem 0 3.5rem;
  border-top: 1px solid var(--line);
}

.detail-hero-inner {
  text-align: center;
}

.detail-breadcrumb {
  margin-bottom: 1.5rem;
}

.detail-breadcrumb a:hover {
  color: var(--text);
}

.detail-date {
  margin-bottom: 0.75rem;
}

.detail-hero h1 {
  font-family: 'Cormorant', Georgia, serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.05;
  margin: 0 0 1rem;
  color: var(--text);
}

.detail-subline {
  max-width: 42rem;
  margin: 0 auto;
  font-size: 1.05rem;
}

.detail-section {
  padding: 4.5rem 0;
  border-top: 1px solid var(--line);
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.detail-section--image-right .detail-text {
  order: 1;
}

.detail-section--image-right .detail-image {
  order: 2;
}

.detail-text {
  text-align: left;
}

.detail-lead {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  color: var(--text);
}

.detail-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.detail-block, .detail-actions{
    text-align: center;
}

.detail-block + .detail-block {
  margin-top: 3rem;
}

.detail-block h2 {
  margin-bottom: 1rem;
}

.detail-block p:last-child {
  margin-bottom: 0;
}

.detail-actions {
  margin-top: 3rem;
}

.caption{
    text-align: right;
  font-size: 80%;
}


        figure{
            margin: 1rem;
        }

figure p{
    text-align: left;
}

.musiker{
    display: flex;
}

@media (max-width: 900px) {
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .detail-image {
    display: none;
  }
}

@media (max-width: 768px) {
  .detail-hero {
    padding: 4rem 0 3rem;
  }

  .detail-section {
    padding: 4rem 0;
  }
}