:root {
  --ink: #142421;
  --muted: #5f6a63;
  --paper: #fbf8f0;
  --paper-deep: #f0eadf;
  --line: #d9cbb6;
  --teal: #073f3d;
  --teal-soft: #dbe9e5;
  --copper: #a86f2a;
  --copper-dark: #70481e;
  --sage: #537866;
  --blue: #315c6d;
  --white: #fffdf7;
  --shadow: 0 14px 40px rgba(20, 36, 33, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3,
.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  max-width: 10ch;
  font-size: 4.25rem;
  line-height: 0.98;
}

h2 {
  font-size: 2.15rem;
  line-height: 1.08;
}

h3 {
  font-size: 1.45rem;
  line-height: 1.15;
}

.container {
  width: min(100% - 48px, 1416px);
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  border-radius: 6px;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 248, 240, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(100% - 48px, 1416px);
  min-height: 82px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--copper);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-mark.small {
  width: 34px;
  height: 34px;
}

.brand-copy {
  display: flex;
  align-items: baseline;
  gap: 22px;
  min-width: 0;
}

.brand-name {
  font-size: 2.5rem;
  line-height: 1;
  white-space: nowrap;
}

.brand-tagline {
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.95rem;
  font-style: italic;
  white-space: nowrap;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.primary-nav a,
.footer-links a,
.text-link {
  position: relative;
}

.primary-nav a::after,
.footer-links a::after,
.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.footer-links a:hover::after,
.footer-links a:focus-visible::after,
.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(1);
}

.icon-button {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
}

.icon-button:hover,
.icon-button:focus-visible {
  border-color: var(--line);
  background: var(--white);
}

.icon-button svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.menu-toggle {
  display: none;
}

.search-panel {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.search-panel:not([hidden]) {
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) auto;
  gap: 16px;
  align-items: center;
  width: min(100% - 48px, 1416px);
  margin: 0 auto;
  padding: 14px 0;
}

.search-panel label {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

.search-panel input {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  outline: none;
}

.search-panel input {
  width: 100%;
  padding: 12px 14px;
}

.search-panel input:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(168, 111, 42, 0.18);
}

.search-count {
  min-width: 130px;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: right;
}

.magazine-hero {
  padding: 24px 0 22px;
}

.magazine-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.34fr) minmax(360px, 0.9fr);
  gap: 12px;
}

.feature-story,
.story-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(20, 36, 33, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-story {
  min-height: 390px;
  display: grid;
  align-items: end;
  background: var(--teal);
}

.feature-story img,
.story-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-story::after,
.dark-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 34, 33, 0.88), rgba(2, 34, 33, 0.44) 46%, rgba(2, 34, 33, 0.08));
}

.feature-copy,
.story-card > div {
  position: relative;
  z-index: 1;
}

.feature-copy {
  max-width: 540px;
  padding: 34px;
  color: var(--white);
}

.feature-copy h1 {
  max-width: 12ch;
}

.feature-copy p:not(.eyebrow) {
  max-width: 42ch;
  margin-top: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.07rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  margin-top: 24px;
}

.hero-actions .text-link {
  margin-top: 0;
}

.eyebrow {
  color: var(--copper);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.feature-copy .eyebrow,
.dark-card .eyebrow {
  color: #e2a65a;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--copper-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

.text-link::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}

.light-link {
  color: #f0ba66;
}

.button-link.light-button {
  border-color: #f0ba66;
  color: var(--ink);
  background: #f0ba66;
}

.button-link.light-button:hover,
.button-link.light-button:focus-visible {
  border-color: #f5c77d;
  background: #f5c77d;
}

.story-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
}

.story-card {
  min-height: 171px;
  display: grid;
  align-items: center;
}

.story-card > div {
  max-width: 310px;
  padding: 24px;
}

.story-card p:not(.eyebrow) {
  margin-top: 10px;
  color: #40514b;
  font-size: 0.95rem;
}

.story-card .text-link {
  margin-top: 14px;
}

.story-card:hover .text-link::after,
.story-card:focus-visible .text-link::after {
  transform: scaleX(1);
}

.bright-card {
  background: var(--white);
}

.bright-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 253, 247, 0.96), rgba(255, 253, 247, 0.68) 50%, rgba(255, 253, 247, 0.08));
}

.dark-card {
  color: var(--white);
  background: var(--ink);
}

.dark-card p:not(.eyebrow) {
  color: #d5e3dd;
}

.catalog-section {
  padding: 28px 0 44px;
  border-top: 1px solid var(--line);
}

.authors-section {
  padding: 16px 0 38px;
  border-top: 1px solid var(--line);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.section-head.compact {
  margin-bottom: 16px;
}

.section-head h2,
.about-layout h2 {
  margin-top: 4px;
}

.segmented-control {
  display: inline-flex;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.filter-button {
  min-width: 76px;
  border: 0;
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--muted);
  background: transparent;
}

.filter-button.is-active {
  color: var(--white);
  background: var(--teal);
}

.book-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.book-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  border: 1px solid rgba(20, 36, 33, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(20, 36, 33, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.book-card:hover,
.book-card:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(20, 36, 33, 0.14);
}

.book-card.is-hidden {
  display: none;
}

.cover-link {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 8;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  background: var(--teal-soft);
}

.cover-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.book-copy {
  display: grid;
  gap: 8px;
  padding: 14px;
}

.book-status {
  width: fit-content;
  padding: 4px 7px;
  border-radius: 4px;
  color: var(--white);
  background: var(--sage);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.book-status.soon {
  background: var(--copper);
}

.byline {
  color: var(--copper-dark);
  font-family: Georgia, "Times New Roman", serif;
}

.book-copy > p:not(.book-status):not(.byline) {
  color: var(--muted);
  font-size: 0.92rem;
}

.book-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.book-meta span {
  padding: 4px 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.72rem;
}

.author-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.author-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  min-height: 142px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.72);
}

.author-card img,
.submissions-mark {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
}

.author-card p {
  margin-top: 8px;
  color: var(--muted);
}

.submissions-card {
  background: var(--paper-deep);
}

.submissions-mark {
  padding: 17px;
  border: 1px dashed var(--copper);
  fill: none;
  stroke: var(--copper);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-section {
  padding: 38px 0;
  background: var(--paper-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-layout {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-layout > p {
  max-width: 74ch;
  color: #34443f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.newsletter-section {
  padding: 28px 0 16px;
}

.newsletter-panel {
  display: grid;
  grid-template-columns: minmax(310px, 0.9fr) minmax(320px, 480px) 180px;
  gap: 28px;
  align-items: center;
  padding: 20px 24px;
  border-radius: 8px;
  color: var(--white);
  background: var(--teal);
  overflow: hidden;
}

.newsletter-copy {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.mail-icon {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: #e0a451;
  stroke-width: 1.8;
  stroke-linejoin: round;
}

.newsletter-copy h2 {
  max-width: 22ch;
  margin-top: 4px;
  font-size: 1.8rem;
}

.newsletter-copy p:not(.eyebrow) {
  margin-top: 8px;
  color: #d5e3dd;
}

.button-link.newsletter-fallback {
  width: fit-content;
  margin-top: 14px;
  border-color: #e0a451;
  color: var(--ink);
  background: #e0a451;
}

.button-link.newsletter-fallback:hover,
.button-link.newsletter-fallback:focus-visible {
  background: #efb965;
}

.substack-embed {
  width: min(100%, 480px);
  max-width: 480px;
  justify-self: center;
  margin-inline: auto;
}

.substack-embed iframe {
  display: block;
  width: 100%;
  margin-inline: auto;
  height: 150px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background: var(--white);
}

.newsletter-art {
  width: 180px;
  height: 180px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(240, 186, 102, 0.44);
  border-radius: 8px;
  background: radial-gradient(circle at 50% 32%, rgba(240, 186, 102, 0.2), rgba(255, 253, 247, 0.07) 44%, rgba(255, 253, 247, 0.03));
}

.newsletter-art svg {
  width: 164px;
  height: 164px;
  fill: none;
}

.newsletter-art path {
  vector-effect: non-scaling-stroke;
}

.map-sheet {
  fill: rgba(255, 253, 247, 0.13);
  stroke: #d5e3dd;
  stroke-width: 2;
}

.map-fold,
.map-route {
  stroke: #d5e3dd;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.map-route {
  stroke: #f0ba66;
  stroke-dasharray: 4 6;
}

.lantern,
.lantern-cap {
  stroke: #f0ba66;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lantern-flame {
  fill: rgba(240, 186, 102, 0.36);
  stroke: #f0ba66;
  stroke-width: 2;
  stroke-linejoin: round;
}

.spark {
  stroke: #f0ba66;
  stroke-width: 2;
  stroke-linecap: round;
}

.site-footer {
  padding: 26px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  color: var(--muted);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}

.footer-brand div {
  display: grid;
  gap: 2px;
}

.footer-brand span {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}

.copyright {
  text-align: right;
  font-size: 0.9rem;
}

.page-hero {
  padding: 58px 0 38px;
  border-bottom: 1px solid var(--line);
}

.page-hero-inner {
  max-width: 820px;
}

.page-hero h1 {
  max-width: 16ch;
  margin-top: 6px;
  color: var(--ink);
}

.page-hero p:last-child {
  max-width: 58ch;
  margin-top: 16px;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.book-detail-hero {
  padding: 42px 0;
  background: var(--paper-deep);
  border-bottom: 1px solid var(--line);
}

.book-detail {
  display: grid;
  grid-template-columns: minmax(220px, 330px) minmax(0, 1fr);
  gap: 52px;
  align-items: center;
}

.detail-cover {
  width: min(100%, 330px);
  justify-self: center;
}

.detail-cover img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 22px 48px rgba(20, 36, 33, 0.24);
}

.detail-copy h1 {
  max-width: 18ch;
  margin-top: 8px;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
}

.detail-copy .byline {
  margin-top: 14px;
  font-size: 1.18rem;
}

.series-note {
  margin-top: 8px;
  color: var(--blue);
  font-weight: 700;
}

.lead {
  max-width: 62ch;
  margin-top: 18px;
  color: #34443f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.24rem;
}

.pill-row,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.pill-row span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--white);
  font-size: 0.86rem;
}

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--teal);
  border-radius: 6px;
  color: var(--white);
  background: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
}

.button-link:hover,
.button-link:focus-visible {
  background: #0a5552;
}

.button-link.secondary {
  color: var(--teal);
  background: transparent;
}

.button-link.secondary:hover,
.button-link.secondary:focus-visible {
  background: var(--teal-soft);
}

.book-body {
  padding: 44px 0 64px;
}

.book-body-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 52px;
  align-items: start;
}

.book-description {
  max-width: 820px;
}

.book-description > p:not(.eyebrow) {
  margin-top: 16px;
  color: #30403b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.13rem;
}

.book-description h3 {
  margin-top: 28px;
}

.book-description ul {
  margin: 12px 0 0;
  padding-left: 22px;
  color: #30403b;
}

.book-description li + li {
  margin-top: 6px;
}

.book-facts {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.book-facts h2,
.book-facts h3 {
  font-size: 1.35rem;
}

.book-facts h3 {
  margin-top: 22px;
}

.book-facts dl {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
}

.book-facts dl div {
  display: grid;
  gap: 2px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.book-facts dt {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.book-facts dd {
  margin: 0;
}

.rights-copy h2 {
  margin-top: 6px;
  font-size: 2.15rem;
}

.rights-request > p {
  margin-top: 14px;
  color: #30403b;
}

.rights-request .text-link {
  margin-top: 4px;
}

.rights-request ul {
  margin: 14px 0 0;
  padding-left: 20px;
  color: #30403b;
}

.rights-request li + li {
  margin-top: 8px;
}

.format-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 12px;
}

.source-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.84rem;
}

.author-detail {
  display: grid;
  grid-template-columns: 128px minmax(0, 760px);
  gap: 28px;
  align-items: center;
}

.author-detail img {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--copper);
}

.author-detail h1 {
  margin-top: 4px;
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: 1fr auto auto;
    gap: 16px;
  }

  .brand-copy {
    display: grid;
    gap: 4px;
  }

  .brand-name {
    font-size: 2rem;
  }

  .primary-nav {
    gap: 20px;
  }

  .magazine-grid,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .book-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .newsletter-panel {
    grid-template-columns: 1fr 1fr;
  }

  .newsletter-art {
    display: none;
  }
}

@media (max-width: 980px) {
  .book-detail,
  .book-body-grid,
  .author-detail {
    grid-template-columns: 1fr;
  }

  .detail-cover {
    justify-self: start;
    max-width: 260px;
  }
}

@media (max-width: 860px) {
  h1 {
    font-size: 3.1rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .container,
  .header-inner,
  .search-panel:not([hidden]) {
    width: min(100% - 32px, 1416px);
  }

  .header-inner {
    min-height: 72px;
    grid-template-columns: 1fr auto auto;
  }

  .brand-tagline {
    display: none;
  }

  .brand-name {
    white-space: normal;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .primary-nav {
    position: fixed;
    inset: 72px 0 auto 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 12px 16px 20px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  body.nav-open .primary-nav {
    display: grid;
  }

  .primary-nav a {
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
  }

  .magazine-hero {
    padding-top: 16px;
  }

  .magazine-grid,
  .story-stack,
  .author-grid,
  .newsletter-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-story {
    min-height: 420px;
  }

  .feature-story::after {
    background: linear-gradient(0deg, rgba(2, 34, 33, 0.9), rgba(2, 34, 33, 0.3) 70%);
  }

  .feature-copy {
    padding: 26px;
  }

  .story-card {
    min-height: 230px;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .book-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-links {
    justify-content: flex-start;
  }

  .copyright {
    text-align: left;
  }

  .page-hero {
    padding: 38px 0 28px;
  }

  .book-detail-hero {
    padding: 28px 0;
  }

  .book-detail,
  .book-body-grid {
    gap: 28px;
  }
}

@media (max-width: 560px) {
  h1 {
    max-width: 9ch;
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.55rem;
  }

  h3 {
    font-size: 1.22rem;
  }

  .header-inner {
    gap: 8px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-name {
    max-width: 164px;
    font-size: 1.32rem;
  }

  .search-panel:not([hidden]) {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .search-count {
    min-width: 0;
    text-align: left;
  }

  .feature-story {
    min-height: 390px;
  }

  .feature-copy,
  .story-card > div {
    padding: 20px;
  }

  .book-grid {
    grid-template-columns: 1fr;
  }

  .book-card {
    grid-template-columns: 112px minmax(0, 1fr);
    grid-template-rows: auto;
  }

  .cover-link {
    height: 100%;
    min-height: 178px;
    border-radius: 8px 0 0 8px;
  }

  .book-copy {
    padding: 12px;
  }

  .book-meta {
    display: none;
  }

  .book-facts .book-meta,
  .format-list {
    display: flex;
  }

  .author-card {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
  }

  .author-card img,
  .submissions-mark {
    width: 70px;
    height: 70px;
  }

  .newsletter-panel {
    padding: 18px;
  }

  .newsletter-copy {
    grid-template-columns: 1fr;
  }

}
