/* Stylesheet for comic/zine/sketchbook pages, aka. _layouts/book.html */

main, header {
  margin: auto;
  margin-top: var(--space-xs);
}

main, header, .header-img {
  max-width: 600px;
}

nav {
  text-align: center;
}

h1 {
  border-bottom: 2px solid;
  margin-bottom: var(--space-xxs);
  line-height: 1.3ch;
}

h2 {
  margin-top: auto;
}

header p {
  margin-top: 0;
}

details {
  padding-bottom: var(--space-sm);
}

summary {
  border-bottom: 2px dotted;
}

.chapter {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.header-img {
  margin: auto;
  display: block;
}

/* mobile/tablet view */
@media (max-width: 600px) {
  img {
    border-radius: 0;
  }

  .header-img {
    max-width: 100%;
  }

  nav, header, main {
    padding: 0 var(--space-sm);
  }

  main h2:first-of-type {
    margin-top: 0;
  }
}