/* Artwork Detail Layout */
.artwork-detail h2 {
  font-family: inherit;
  font-size: 1.8rem;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

.artwork-detail dl {
  margin: 0;
  padding: 0;
}

.artwork-detail dt {
  font-weight: 600;
  padding: 0.6rem 0;
  border-bottom: 1px dotted grey;
}

.artwork-detail dd {
  margin: 0;
  padding: 0.6rem 0;
  border-bottom: 1px dotted grey;
  color: inherit;
}

/* Gleiche Höhe & schöne Ausrichtung */
.artwork-detail dl.row > dt,
.artwork-detail dl.row > dd {
  display: flex;
  align-items: center;
}

/* Artikeltext */
.artwork-detail .article-body {
  line-height: 1.6;
  color: inherit;
  font-size: 1rem;
  margin-top: 1.5rem;
}

/* Tags */
.artwork-detail .badge {
  border: 1px solid rgba(255, 255, 255);
  background: transparent;
  color: var(--waterblue);
  font-weight: 400;
  padding: 0.5rem 0.8rem;
  margin-bottom: 0.5rem;
 transition: all 0.3s ease;
}
.artwork-detail .badge:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
