main.wrap {
  padding-top: clamp(32px, 6vh, 80px);
  padding-bottom: clamp(60px, 10vh, 120px);
}
.release {
  border: 1px solid rgba(26, 24, 20, 0.13);
  margin-bottom: clamp(16px, 2vh, 22px);
  scroll-margin-top: clamp(16px, 3vh, 32px);
  transition: border-color 0.25s ease, background 0.25s ease;
}
.release:hover { border-color: rgba(26, 24, 20, 0.3); }
.release.is-expandable .release-head { cursor: pointer; }

.release-head {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3.5vw, 52px);
  padding: clamp(20px, 2.4vw, 30px);
}
.cover {
  position: relative;
  flex-shrink: 0;
  width: clamp(180px, 24vw, 300px);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--ink);
}
.cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cover .img-placeholder {
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  color: rgba(245, 242, 237, 0.55);
}

.release-info { min-width: 0; flex: 1; }
.release-format {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 10px;
}
.release-title {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 3vw, 44px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.release-meta {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: clamp(13px, 1vw, 15px);
  letter-spacing: 0.02em;
  opacity: 0.55;
  margin-bottom: 14px;
}
.release-desc {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.55;
  max-width: 52ch;
  text-align: justify;
  hyphens: auto;
}
.release-desc--long { max-width: 74ch; line-height: 1.6; text-align: justify; hyphens: auto; }
.release-hint {
  display: inline-block;
  margin-top: 16px;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}
.release-head:hover .release-hint { opacity: 0.85; }
.release.is-open .release-hint { display: none; }
.streaming { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.stream-link {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.01em;
  color: var(--ink);
  text-decoration: none;
  padding: 7px 14px;
  border: 1px solid rgba(26, 24, 20, 0.22);
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.stream-link:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.release-toggle {
  margin-left: auto;
  align-self: flex-start;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(26, 24, 20, 0.25);
  background: transparent;
  position: relative;
  cursor: pointer;
  transition: background 0.2s ease;
}
.release-head:hover .release-toggle { background: rgba(26, 24, 20, 0.05); }
.release-toggle::before, .release-toggle::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: var(--ink);
}
.release-toggle::before { width: 15px; height: 2px; transform: translate(-50%, -50%); }
.release-toggle::after { width: 2px; height: 15px; transform: translate(-50%, -50%); transition: transform 0.3s ease; }
.release.is-open .release-toggle::after { transform: translate(-50%, -50%) scaleY(0); }

.release-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.45s cubic-bezier(0.4, 0, 0.2, 1); }
.release.is-open .release-panel { grid-template-rows: 1fr; }
.release-panel-inner { overflow: hidden; }
.werktext { border-top: 1px solid rgba(26, 24, 20, 0.13); margin: 0 clamp(20px, 2.4vw, 30px); padding: clamp(28px, 3.6vh, 40px) 0 clamp(28px, 3vw, 38px); }
.werktext-col { max-width: 70ch; margin: 0 auto; }
.werktext h3 { font-family: "Archivo", sans-serif; font-weight: 600; font-size: clamp(19px, 1.7vw, 26px); letter-spacing: -0.01em; line-height: 1.15; margin-bottom: 0.85em; }
.werktext p { font-family: "DM Sans", sans-serif; font-weight: 400; font-size: clamp(15px, 1.05vw, 16.5px); line-height: 1.68; margin-bottom: 1em; text-align: justify; hyphens: auto; }
.werktext p:last-child { margin-bottom: 0; }
.werktext em { font-style: italic; }

@media (max-width: 760px) {
  .release-head { flex-direction: column; align-items: flex-start; }
  .cover { width: 100%; }
  .release-info { width: 100%; }
  .release-toggle { order: 3; }
}
