@charset "UTF-8";
/* TEXT STYLES */
a {
  color: var(--primary);
}
a:hover {
  color: var(--accent);
}
a:visited {
  color: var(--accent);
}

h2 {
  font-weight: bold;
}

p {
  text-wrap: pretty;
}

em {
  font-style: italic;
}

.preserve-line > p {
  text-wrap: auto !important;
}

.meta {
  font-family: var(--font-akkurat-mono);
  color: var(--primary-highlight);
  font-size: 2rem;
  max-width: 680px;
  margin-bottom: 12rem;
  align-self: start;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}
.meta p > a {
  color: var(--accent);
}
.meta p > a:hover {
  color: var(--accent-3);
}
.meta p > a:visited {
  color: var(--accent);
}
.meta p > a:visited:hover {
  color: var(--accent-3);
}

blockquote {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  font-style: italic;
}

.caption.meta,
cite.meta {
  margin-bottom: 4rem;
}

svg.inline-icon {
  display: inline-block;
  vertical-align: middle;
}

.title-link {
  color: var(--primary);
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.title-link:hover {
  color: var(--accent);
}
.title-link:visited {
  color: var(--primary);
}
.title-link:visited:hover {
  color: var(--accent);
}

pre {
  background: var(--core-90);
  width: 100%;
  font-size: 1.75rem;
  line-height: 1.8;
  border-radius: var(--border-radius);
  color: var(--core-5);
}
pre code {
  display: block;
  padding: 2rem;
  text-wrap: wrap;
}
pre.collapsible input[type=checkbox] {
  display: none;
}
pre.collapsible code {
  max-height: 15em;
  overflow: hidden;
  position: relative;
}
pre.collapsible code::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5em;
  background: linear-gradient(transparent, var(--core-90));
  pointer-events: none;
}
pre.collapsible label {
  display: block;
  padding: 1rem 2rem;
  background: var(--core-80, );
  border-top: 1px solid var(--core-70);
  color: var(--core-5);
  font-size: 1.5rem;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s ease;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
}
pre.collapsible label:hover {
  background: var(--core-70);
}
pre.collapsible label::before {
  content: "+ Mehr anzeigen";
}
pre.collapsible input[type=checkbox]:checked ~ code {
  max-height: none;
}
pre.collapsible input[type=checkbox]:checked ~ code::after {
  display: none;
}
pre.collapsible input[type=checkbox]:checked ~ label::before {
  content: "− Weniger anzeigen";
}

.reading-time {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.text-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  font-size: 2.75rem;
  max-width: 730px;
  justify-content: center;
  margin: 0 auto;
}
.text-body > * {
  width: 100%;
}
.text-body.center > * {
  text-align: center;
}
.text-body h2 {
  margin: 5rem 0;
  font-size: revert;
  font-weight: normal;
}
.text-body h3 {
  margin-top: 3rem;
  font-weight: bold;
}
.text-body h2 + h3 {
  margin-top: 0;
}
.text-body h4 {
  text-transform: uppercase;
  color: var(--primary-highlight);
  font-weight: bold;
}
.text-body blockquote > p {
  width: 75%;
  padding: 2rem 0;
  word-wrap: break-word;
}
.text-body em {
  font-style: italic;
}
.text-body ul li, .text-body ol li {
  list-style: outside;
  padding-left: 3rem;
  margin-left: 3rem;
  text-indent: -3rem;
}
.text-body figure {
  width: 100%;
}
.text-body figure img {
  width: inherit;
}
.text-body figure figcaption {
  font-size: 1.75rem;
  font-family: var(--font-akkurat-mono);
  color: var(--primary-highlight);
}
.text-body .footnote {
  white-space: nowrap;
}
.text-body .footnote sup {
  margin-left: 0.5rem;
  display: inline-block;
}

.text-endnotes,
.text-sources {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  margin-top: 5rem;
}
.text-endnotes p,
.text-sources p {
  margin-left: 5rem;
  text-indent: -5rem;
}
.text-endnotes em,
.text-sources em {
  font-style: italic;
}
.text-endnotes .fn-note a,
.text-endnotes p > a,
.text-sources .fn-note a,
.text-sources p > a {
  color: var(--primary);
  text-decoration: underline;
  word-break: break-word;
}
.text-endnotes .fn-note a:hover,
.text-endnotes p > a:hover,
.text-sources .fn-note a:hover,
.text-sources p > a:hover {
  color: var(--accent);
}

.meta .text-toc {
  margin-top: -4rem;
  color: var(--primary);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}
.meta .text-toc h2 {
  font-weight: 400;
}
.meta .text-toc ol {
  list-style: none "· " inside;
}
.meta .text-toc ol a {
  color: inherit;
}
.meta .text-toc ol a:hover {
  color: var(--accent);
}

.epigraph {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4rem;
  max-width: 730px;
  margin: 0 auto 8rem;
}
.epigraph cite {
  font-style: normal;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8rem;
  width: 100%;
  justify-content: center;
  margin: 4rem auto 12rem;
}
.hero .video {
  width: 100%;
  height: 100%;
}
.hero .video .caption {
  font-size: 1.75rem;
  font-family: var(--font-akkurat-mono);
  margin: 2rem 0;
}
.hero .video .iframe {
  position: relative;
  padding-top: 56%;
}
.hero .video .iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.fn {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}
.fn .fn-count {
  text-align: right;
  width: 3rem;
  display: block;
  flex-shrink: 0;
}

@keyframes pastelBackground {
  0% {
    background-color: hsl(350, 100%, 88%); /* pastel pink */
  }
  14% {
    background-color: hsl(30, 100%, 85%); /* pastel peach */
  }
  28% {
    background-color: hsl(55, 100%, 85%); /* pastel yellow */
  }
  42% {
    background-color: hsl(160, 100%, 85%); /* pastel mint */
  }
  56% {
    background-color: hsl(200, 100%, 85%); /* pastel blue */
  }
  70% {
    background-color: hsl(270, 100%, 88%); /* pastel lavender */
  }
  84% {
    background-color: hsl(320, 100%, 88%); /* pastel magenta */
  }
  100% {
    background-color: hsl(350, 100%, 88%); /* back to pastel pink */
  }
}
.canvas {
  width: 100%;
  height: 100%;
  display: flex;
  align-content: center;
  justify-content: center;
  padding: 5rem 0;
  animation: pastelBackground 30s ease-in-out infinite;
}
.canvas img {
  width: inherit;
  display: block;
  height: inherit;
  max-width: 85%;
}

.duopanel {
  display: flex;
  flex-direction: row;
  gap: 4rem;
  width: 100%;
}
.duopanel .panel {
  background-color: var(--secondary-highlight);
  width: 100%;
  aspect-ratio: 1/1;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-akkurat-mono);
  font-size: clamp(1.5rem, 10vw, 3rem);
  text-align: center;
}
.duopanel .panel > p {
  width: 100%;
}

@keyframes spin-record {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.playlist {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  width: 100%;
}
.playlist .song-item {
  container-type: inline-size;
  container-name: song-item;
  width: 100%;
  border-bottom: 1px dotted var(--primary-highlight);
  cursor: pointer;
  transition: var(--transition-default);
}
.playlist .song-item:hover .song-row {
  color: var(--accent);
}
.playlist .song-item .song-row {
  display: flex;
  flex-direction: row;
  gap: 4rem;
  justify-content: start;
  align-items: baseline;
  padding: 8px 0;
  transition: var(--transition-default);
}
.playlist .song-item .song-row .song-info {
  width: 100%;
}
.playlist .song-item .song-row .song-thumbnail {
  width: 10rem;
}
.playlist .song-item .song-row .song-thumbnail picture {
  aspect-ratio: 1/1;
  border-radius: var(--border-radius);
}
.playlist .song-item .song-row .song-thumbnail picture > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
  aspect-ratio: 1/1;
}
.playlist .song-item .song-row .song-title {
  font-weight: 400;
  line-height: 1.3;
  color: var(--primary);
  transition: var(--transition-default);
  margin: 0 auto;
}
.playlist .song-item .song-expanded {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.6s ease, opacity 0.6s ease, padding 0.6s ease;
  color: var(--primary);
}
.playlist .song-item .song-expanded .song-expanded-cover {
  display: none;
}
.playlist .song-item .song-expanded .song-expanded-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5rem;
}
.playlist .song-item .song-expanded .song-expanded-content .song-description,
.playlist .song-item .song-expanded .song-expanded-content .song-lyrics {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}
.playlist .song-item .song-expanded .song-expanded-content .song-description h2,
.playlist .song-item .song-expanded .song-expanded-content .song-lyrics h2 {
  margin: 0;
}
.playlist .song-item .song-expanded .song-expanded-content .song-description {
  font-family: var(--font-akkurat-mono);
  color: var(--primary-highlight);
  font-size: 2rem;
  font-weight: 400;
}
.playlist .song-item.expanded .song-row {
  padding-bottom: 2rem;
  align-items: start;
}
.playlist .song-item.expanded .song-row .song-thumbnail {
  width: 50rem;
  aspect-ratio: 1/1;
  animation: spin-record 10s linear infinite;
}
.playlist .song-item.expanded .song-row .song-thumbnail picture {
  border-radius: var(--border-radius-round);
}
.playlist .song-item.expanded .song-row .song-thumbnail picture > img {
  border-radius: inherit;
}
.playlist .song-item.expanded .song-title {
  width: 100%;
  max-width: 730px;
  margin-top: 10rem;
}
.playlist .song-item.expanded .song-expanded {
  max-height: 5000px;
  opacity: 1;
  padding: 5rem 0 3rem;
}

@container playlist (max-width: 800px) {}
@media (max-width: 780px) {
  .text-body {
    max-width: calc(100svw - 8rem);
  }
  .duopanel {
    flex-direction: column;
    gap: 2rem;
  }
  .hero .video .caption {
    max-width: 100%;
  }
  .playlist .song-item .song-row {
    flex-direction: row;
    gap: 2rem;
  }
  .playlist .song-item .song-row .song-thumbnail {
    width: 10rem;
    min-width: 10rem;
    flex-shrink: 0;
  }
  .playlist .song-item .song-row .song-meta {
    text-align: left;
  }
  .playlist .song-item.expanded .song-title {
    margin-top: 2rem;
  }
  .playlist .song-item.expanded .song-row {
    flex-direction: column;
  }
  .playlist .song-item.expanded .song-row .song-thumbnail {
    width: 100%;
    max-width: 30rem;
    height: auto;
  }
}

/*# sourceMappingURL=detail.css.map */
