.bukkephaest-page {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 26px;
}

.bukkephaest-intro h1 {
  margin: 0 0 12px;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
}

.bukkephaest-cover {
  margin: 0 auto 12px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.bukkephaest-cover img {
  width: min(560px, 92vw);
  height: auto;
  display: block;
  filter: invert(1);
}

body.theme-dark .bukkephaest-cover img {
  filter: none;
}

.bukkephaest-intro p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  text-align: center;
}

.album-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
}

.album-link-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 0;
  color: var(--ink);
  font-weight: 600;
  font-size: 18px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.album-link-primary:hover,
.album-link-primary:focus {
  color: var(--accent);
}

.album-link-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--muted);
  font-size: 15px;
  opacity: 0.7;
  text-decoration: none;
}

.album-link-icon {
  width: 15px;
  height: 15px;
  display: block;
  flex: 0 0 auto;
}

.album-link-note {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.album-link-note a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.qa {
  display: grid;
  gap: 6px;
}

.qa-header h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: 0.03em;
}

.qa-item {
  background: transparent;
}

.qa-item > summary {
  cursor: pointer;
  padding: 12px 0;
  font-weight: 600;
  font-size: 17px;
  list-style: none;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 20px;
}

.qa-item > summary::-webkit-details-marker {
  display: none;
}

.qa-item > summary::after {
  content: "";
  flex: 1 1 auto;
  border-top: 1px solid var(--line);
  opacity: 0.3;
}

.qa-item > summary::before {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
}

.qa-item[open] > summary::before {
  content: "−";
}

.qa-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.qa-item[open] .qa-content {
  max-height: 0;
}

.qa-body {
  padding: 0 0 12px;
  color: var(--ink);
  opacity: 0.88;
  font-size: 16px;
}

.qa-body p {
  margin: 0 0 12px;
  line-height: 1.6;
}

.qa-body p:last-child {
  margin-bottom: 0;
}

.qa-body ul {
  margin: 0 0 12px 18px;
  padding: 0;
  line-height: 1.6;
}

.qa-quote {
  margin: 0;
  font-style: italic;
  color: var(--muted);
  line-height: 1.6;
}

.qa-body a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.qa-note {
  margin: 0;
  color: var(--muted);
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.comparison-card {
  margin: 0;
  display: grid;
  gap: 8px;
}

.comparison-card img {
  width: 100%;
  height: auto;
}

.comparison-card figcaption {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 700px) {
  .bukkephaest-page {
    gap: 22px;
  }

  .qa-item > summary {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
