
body {
  margin: 0;
  padding: 0;
  background-color: #efe6d6;
  color: #243140;
  font-family: 'EB Garamond', serif;
}

.container {
  max-width: 720px;
  margin: 80px auto;
  padding: 0 24px;
}

h1 {
  font-weight: 500;
  font-size: 2.6rem;
  margin-bottom: 0.5rem;
}

.subtitle {
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
}

.cover-link img {
  width: 100%;
  height: auto;
  max-width: 640px;
  display: block;
  margin-bottom: 2.5rem;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.cover-link:hover img {
  transform: scale(0.995);
  filter: brightness(0.98);
}

.credits {
  margin-top: 1rem;
}

.credit-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1.5rem;
  padding: 0.8rem 0;
  border-top: 1px solid rgba(36,49,64,0.15);
}

.credit-row:first-child {
  border-top: none;
}

.credit-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  opacity: 0.75;
}

.credit-value {
  line-height: 1.6;
}

.credit-sub {
  display: inline-block;
  margin-top: 0.3rem;
  font-size: 0.95rem;
  opacity: 0.85;
}

.sig {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(36,49,64,0.3);
}

.sig:hover {
  border-bottom-color: rgba(36,49,64,0.6);
}

@media (max-width: 640px) {
  .credit-row {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .credit-label {
    margin-bottom: 0.2rem;
  }
}
