.about {
  max-width: 600px;
  width: 100%;
  padding: 2rem 1rem;
}

.about-heading {
  font-family: 'GoudyMediaeval', Georgia, serif;
  font-size: 1.8rem;
  color: #f0f0f0;
  margin-bottom: 0.75rem;
}

.about-intro {
  font-size: 1rem;
  color: #bbb;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.about-section {
  margin-bottom: 2rem;
}

.about-section-heading {
  font-family: 'GoudyMediaeval', Georgia, serif;
  font-size: 1.2rem;
  color: #e0e0e0;
  margin-bottom: 0.75rem;
}

.about-credits {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about-credits li {
  font-size: 0.95rem;
  color: #bbb;
  line-height: 1.4;
}

.about-credits a {
  color: var(--allied-line-color);
  text-decoration: none;
  border-bottom: 1px dotted var(--allied-line-color);
  transition: color 200ms ease, border-color 200ms ease;
}

.about-credits a:hover {
  color: #f0f0f0;
  border-bottom-color: #f0f0f0;
}

.about-license {
  font-size: 0.95rem;
  color: #bbb;
  line-height: 1.5;
}

.about-license a {
  color: var(--allied-line-color);
  text-decoration: none;
  border-bottom: 1px dotted var(--allied-line-color);
  transition: color 200ms ease, border-color 200ms ease;
}

.about-license a:hover {
  color: #f0f0f0;
  border-bottom-color: #f0f0f0;
}

.about-author {
  font-size: 0.95rem;
  color: #bbb;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.about-author-links {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.about-author-links a {
  font-size: 0.95rem;
  color: var(--allied-line-color);
  text-decoration: none;
  border-bottom: 1px dotted var(--allied-line-color);
  transition: color 200ms ease, border-color 200ms ease;
}

.about-author-links a:hover {
  color: #f0f0f0;
  border-bottom-color: #f0f0f0;
}

.about-signup {
  border: 1px solid var(--bg-brown-dark);
  border-radius: 4px;
  padding: 1.25rem;
  background: var(--bg-brown-light);
  color: white;
  margin-left: calc(-1.25rem + 1px);
  margin-right: calc(-1.25rem + 1px);
}

.about-signup .about-section-heading {
  color: white;
}

.about-signup-blurb {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

#convertkit-form {
  min-height: 2.5rem;
}

.about-home-link {
  display: inline-block;
  font-size: 0.95rem;
  color: #888;
  text-decoration: none;
  border-bottom: 1px dotted #555;
  transition: color 200ms ease, border-color 200ms ease;
}

/* Reserve space for JS-rendered logo to prevent layout shift */
.about-logo {
  width: 240px;
  height: 240px;
  margin: 0 auto 1.5rem;
}

.about-home-link:hover {
  color: #ccc;
  border-bottom-color: #888;
}

/* Logo spiral entrance animation */
@keyframes logo-spiral-spin {
  from { transform: translate(-50%, -50%) rotate(20deg); }
  to   { transform: translate(-50%, -50%) rotate(0deg); }
}

.logo-spiral {
  animation: logo-spiral-spin 0.8s ease-out forwards;
}
