
:root {
  --amber: #F5BE00;
  --charcoal: #1D1B19;
  --paper: #F4F0E7;
  --paper-2: #FBF8F1;
  --surface: #FFFFFF;
  --ink: #2A2825;
  --muted: #756F67;
  --line: rgba(29,27,25,.12);
  --shadow: 0 18px 50px rgba(29,27,25,.08);
  --sidebar-w: 332px;
  --reader-size: 19px;
  --reader-width: 720px;
}

html[data-theme="white"] {
  --paper: #FFFFFF;
  --paper-2: #FFFFFF;
  --surface: #FFFFFF;
  --ink: #20201F;
  --muted: #6F6D68;
  --line: rgba(0,0,0,.11);
}
html[data-theme="dark"] {
  --paper: #161513;
  --paper-2: #1C1A17;
  --surface: #22201D;
  --ink: #EEE9DF;
  --muted: #B8B0A3;
  --line: rgba(255,255,255,.12);
  --shadow: 0 18px 50px rgba(0,0,0,.22);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, input { font: inherit; }
button { color: inherit; }
a { color: inherit; }

.progress-track {
  position: fixed;
  z-index: 1000;
  left: 0; right: 0; top: 0;
  height: 3px;
  background: transparent;
}
.progress-bar {
  height: 100%;
  width: 0;
  background: var(--amber);
  transition: width .12s linear;
}

.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 500;
  width: var(--sidebar-w);
  background: var(--charcoal);
  color: #F7F1E6;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255,255,255,.06);
}
.sidebar-head {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.brand {
  flex: 1;
  display: flex;
  gap: 12px;
  align-items: center;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
  padding: 0;
}
.brand-mark {
  width: 12px;
  height: 38px;
  background: var(--amber);
  border-radius: 2px;
  flex: 0 0 auto;
}
.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  letter-spacing: .01em;
}
.brand small {
  display: block;
  margin-top: 3px;
  color: rgba(255,255,255,.55);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.icon-btn {
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 8px;
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
}
.icon-btn:hover { background: rgba(255,255,255,.08); }
.icon-btn svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.close-menu { display: none; font-size: 30px; color: #fff; }

.search-box {
  margin: 14px 14px 6px;
  height: 43px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 11px;
  background: rgba(255,255,255,.045);
}
.search-box:focus-within { border-color: rgba(245,190,0,.75); }
.search-box svg { width: 18px; height: 18px; fill: none; stroke: rgba(255,255,255,.65); stroke-width: 1.8; }
.search-box input {
  min-width: 0;
  flex: 1;
  color: #fff;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 13px;
}
.search-box input::placeholder { color: rgba(255,255,255,.48); }
.search-box kbd {
  font-size: 10px;
  color: rgba(255,255,255,.4);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 4px;
  padding: 1px 5px;
}

.menu-content, .search-results {
  overflow: auto;
  padding: 8px 10px 22px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.18) transparent;
}
.menu-content { flex: 1; }
.search-results { flex: 1; }

.menu-group { margin-top: 12px; }
.group-head {
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 9px 10px 8px;
  cursor: pointer;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}
.group-head:hover { background: rgba(255,255,255,.04); border-radius: 8px; }
.group-label {
  display: block;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 10px;
  font-weight: 800;
}
.group-subtitle {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,.7);
  font-family: Georgia, serif;
  line-height: 1.25;
  font-size: 14px;
}
.group-chevron {
  color: rgba(255,255,255,.4);
  padding-top: 7px;
  transform: rotate(90deg);
  transition: transform .18s ease;
}
.menu-group.collapsed .group-chevron { transform: rotate(0); }
.menu-group.collapsed .group-items { display: none; }

.menu-link {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 27px 1fr;
  gap: 7px;
  align-items: start;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.72);
  text-align: left;
  padding: 8px 10px 8px 12px;
  cursor: pointer;
  border-radius: 8px;
  line-height: 1.25;
  font-size: 13px;
}
.menu-link:hover { background: rgba(255,255,255,.055); color: #fff; }
.menu-link.active {
  background: rgba(245,190,0,.12);
  color: #fff;
}
.menu-link.active::before {
  content: "";
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 3px;
  border-radius: 8px;
  background: var(--amber);
}
.menu-num {
  color: rgba(255,255,255,.38);
  font-size: 10px;
  font-weight: 800;
  padding-top: 2px;
}
.menu-link.active .menu-num { color: var(--amber); }

.search-title {
  padding: 12px 8px 8px;
  color: var(--amber);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 800;
}
.search-result {
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  padding: 11px 10px;
  border-radius: 8px;
  cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.search-result:hover { background: rgba(255,255,255,.06); }
.search-result strong { display: block; color: #fff; font-size: 13px; }
.search-result span { display: block; color: rgba(255,255,255,.55); font-size: 11px; margin: 3px 0 5px; }
.search-result p { margin: 0; color: rgba(255,255,255,.66); line-height: 1.35; font-size: 11px; }
.search-empty { color: rgba(255,255,255,.55); font-size: 13px; padding: 18px 10px; line-height: 1.5; }

.sidebar-foot {
  padding: 12px 18px 16px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: rgba(255,255,255,.36);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.reader-shell { margin-left: var(--sidebar-w); min-height: 100vh; }
.topbar {
  position: fixed;
  z-index: 300;
  left: var(--sidebar-w);
  right: 0;
  top: 0;
  height: 64px;
  background: color-mix(in srgb, var(--paper) 93%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}
.topbar-left { display: flex; align-items: center; min-width: 0; }
.menu-btn { display: none; margin-right: 7px; }
.reading-meta { min-width: 0; }
.reading-meta span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.reading-meta strong {
  display: block;
  margin-top: 2px;
  max-width: 58vw;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 650;
}
.reader-tools { display: flex; align-items: center; gap: 4px; }
.tool-btn {
  height: 36px;
  min-width: 38px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--surface);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}
.tool-btn:hover { border-color: rgba(245,190,0,.8); }
.theme-btn { padding: 0 10px; display: flex; align-items: center; gap: 7px; }
.theme-dot { width: 11px; height: 11px; border: 1px solid var(--line); border-radius: 50%; background: var(--paper); }

#appMain { min-height: 100vh; outline: 0; }
.home-view { padding-top: 64px; min-height: 100vh; }
.hero {
  min-height: 670px;
  display: grid;
  grid-template-columns: minmax(330px, .8fr) minmax(450px, 1.2fr);
  background: var(--amber);
  color: var(--charcoal);
}
.hero-art {
  min-height: 670px;
  background: var(--amber) url("assets/cover-art.webp") center/cover no-repeat;
  border-right: 1px solid rgba(29,27,25,.12);
}
.hero-copy {
  padding: clamp(56px, 8vw, 104px);
  align-self: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
  font-weight: 850;
}
.hero h1 {
  margin: 16px 0 18px;
  max-width: 620px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 5.5vw, 78px);
  line-height: .98;
  letter-spacing: -.035em;
}
.hero-subtitle {
  max-width: 620px;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.42;
  font-weight: 520;
}
.hero-author {
  margin-top: 26px;
  font-family: Georgia, serif;
  font-size: 19px;
  font-weight: 700;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.primary-btn, .secondary-btn {
  min-height: 46px;
  border-radius: 8px;
  padding: 0 17px;
  cursor: pointer;
  font-weight: 750;
  border: 1px solid var(--charcoal);
}
.primary-btn { background: var(--charcoal); color: var(--amber); }
.secondary-btn { background: transparent; color: var(--charcoal); }

.book-map {
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 36px 90px;
}
.map-head { max-width: 720px; margin-bottom: 30px; }
.map-head .eyebrow { color: #8A6D00; }
.map-head h2 {
  font-family: Georgia, serif;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.05;
  margin: 10px 0 12px;
}
.map-head p { color: var(--muted); line-height: 1.65; font-size: 16px; }
.part-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}
.part-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  padding: 24px;
  box-shadow: var(--shadow);
}
.part-card .part-number {
  color: #977500;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 850;
}
html[data-theme="dark"] .part-card .part-number { color: var(--amber); }
.part-card h3 {
  font-family: Georgia, serif;
  margin: 7px 0 5px;
  font-size: 24px;
}
.part-theme {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 15px;
  line-height: 1.45;
}
.part-chapters { display: grid; gap: 6px; }
.part-chapter {
  border: 0;
  background: transparent;
  text-align: left;
  padding: 7px 0;
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  border-top: 1px solid var(--line);
}
.part-chapter:hover { color: #8B6B00; }
html[data-theme="dark"] .part-chapter:hover { color: var(--amber); }

.read-view { padding-top: 64px; }
.reading-grid {
  display: grid;
  grid-template-columns: minmax(0, var(--reader-width)) 220px;
  gap: 72px;
  justify-content: center;
  padding: 68px 42px 100px;
}
.article {
  min-width: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--reader-size);
  line-height: 1.78;
  letter-spacing: .002em;
}
.chapter-header {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  border-bottom: 1px solid var(--line);
  padding-bottom: 34px;
  margin-bottom: 42px;
}
.chapter-kicker {
  margin: 0 0 13px;
  color: #8C6D00;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 850;
}
html[data-theme="dark"] .chapter-kicker { color: var(--amber); }
.chapter-header h1 {
  font-family: Georgia, serif;
  font-size: clamp(38px, 5vw, 57px);
  line-height: 1.04;
  letter-spacing: -.025em;
  margin: 0;
  color: var(--ink);
}
.chapter-info {
  margin-top: 16px;
  color: var(--muted);
  font-size: 12px;
  display: flex;
  gap: 14px;
  align-items: center;
}
.chapter-info span + span::before {
  content: "•";
  margin-right: 14px;
  opacity: .45;
}
.article p {
  margin: 0 0 1.25em;
  text-wrap: pretty;
}
.article h2 {
  scroll-margin-top: 90px;
  margin: 2.25em 0 .78em;
  font-family: Georgia, serif;
  font-size: 1.48em;
  line-height: 1.16;
  letter-spacing: -.015em;
  color: var(--ink);
}
.article h2::before {
  content: "";
  display: block;
  width: 34px;
  height: 4px;
  background: var(--amber);
  margin-bottom: 12px;
}
.article a {
  text-decoration-color: var(--amber);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}
.article strong { font-weight: 750; }
.article em { font-style: italic; }

.pullquote {
  position: relative;
  margin: 3.4em auto;
  padding: 42px 44px 38px;
  max-width: 640px;
  background: var(--amber);
  color: var(--charcoal);
  border: 0;
  text-align: center;
}
.pullquote::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(29,27,25,.13);
  pointer-events: none;
}
.pullquote p {
  position: relative;
  margin: 0 !important;
  font-size: 1.42em;
  line-height: 1.34;
  text-wrap: balance;
}
.pullquote cite {
  position: relative;
  display: block;
  margin-top: 20px;
  font-size: .72em;
  font-style: italic;
}
.callout {
  margin: 2.3em 0;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--amber);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: .84em;
  line-height: 1.55;
  border-radius: 0 10px 10px 0;
}
.callout-title { font-weight: 850; margin-bottom: 10px; }
.callout ul { margin: 8px 0 0; padding-left: 22px; }
.callout li { margin: 7px 0; }
.callout-question {
  font-family: Georgia, serif;
  font-size: 1.18em;
  font-weight: 700;
  line-height: 1.45;
}
.table-wrap {
  margin: 2.5em calc((min(100vw - var(--sidebar-w), 1000px) - var(--reader-width)) / -5);
  overflow-x: auto;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 10px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
}
.table-title {
  padding: 14px 16px;
  background: var(--charcoal);
  color: var(--amber);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .08em;
}
table { width: 100%; min-width: 660px; border-collapse: collapse; }
th, td {
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
th { background: color-mix(in srgb, var(--amber) 16%, var(--surface)); font-size: 11px; }
td { line-height: 1.45; }
tr:last-child td { border-bottom: 0; }
th:last-child, td:last-child { border-right: 0; }

.chapter-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 70px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}
.chapter-nav button {
  min-height: 84px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  border-radius: 10px;
  padding: 14px 16px;
  cursor: pointer;
  text-align: left;
}
.chapter-nav button:hover { border-color: rgba(245,190,0,.8); }
.chapter-nav button.next { text-align: right; }
.chapter-nav small {
  display: block;
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 5px;
}
.chapter-nav strong { font-size: 13px; line-height: 1.3; }
.chapter-nav button[disabled] { opacity: .35; cursor: default; }

.chapter-rail { min-width: 0; }
.rail-card {
  position: sticky;
  top: 92px;
  border-left: 1px solid var(--line);
  padding-left: 18px;
}
.rail-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .12em;
}
.rail-card a {
  display: block;
  padding: 5px 0 5px 10px;
  border-left: 2px solid transparent;
  color: var(--muted);
  text-decoration: none;
  font-size: 11px;
  line-height: 1.3;
}
.rail-card a:hover, .rail-card a.active {
  color: var(--ink);
  border-left-color: var(--amber);
}
.rail-empty { color: var(--muted); font-size: 11px; line-height: 1.45; }

.menu-scrim { display: none; }

@media (max-width: 1180px) {
  .reading-grid { grid-template-columns: minmax(0, var(--reader-width)); }
  .chapter-rail { display: none; }
  .table-wrap { margin-left: 0; margin-right: 0; }
}
@media (max-width: 860px) {
  :root { --sidebar-w: 0px; --reader-size: 18px; }
  .sidebar {
    width: min(360px, 88vw);
    transform: translateX(-101%);
    transition: transform .22s ease;
    box-shadow: 18px 0 50px rgba(0,0,0,.22);
  }
  body.menu-open .sidebar { transform: translateX(0); }
  .close-menu { display: grid; }
  .menu-scrim {
    position: fixed; inset: 0; z-index: 450;
    background: rgba(0,0,0,.42);
  }
  body.menu-open .menu-scrim { display: block; }
  .reader-shell { margin-left: 0; }
  .topbar { left: 0; padding: 0 12px; }
  .menu-btn { display: grid; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-art { min-height: 390px; border-right: 0; border-bottom: 1px solid rgba(29,27,25,.12); }
  .hero-copy { padding: 46px 26px 56px; }
  .part-grid { grid-template-columns: 1fr; }
  .book-map { padding: 56px 22px 70px; }
  .reading-grid { padding: 44px 22px 80px; }
  .reader-tools .theme-btn span:last-child { display: none; }
  .chapter-nav { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  :root { --reader-size: 17.5px; }
  .topbar { height: 58px; }
  .home-view, .read-view { padding-top: 58px; }
  .reading-meta span { display: none; }
  .reading-meta strong { max-width: 48vw; }
  .hero-art { min-height: 330px; }
  .hero h1 { font-size: 44px; }
  .hero-copy { padding: 38px 20px 48px; }
  .primary-btn, .secondary-btn { width: 100%; }
  .book-map { padding-left: 18px; padding-right: 18px; }
  .reading-grid { padding: 38px 19px 72px; }
  .chapter-header h1 { font-size: 38px; }
  .pullquote { padding: 34px 24px 30px; margin-left: -8px; margin-right: -8px; }
  .pullquote p { font-size: 1.3em; }
  .table-wrap { border-radius: 0; margin-left: -19px; margin-right: -19px; border-left: 0; border-right: 0; }
}
@media print {
  .sidebar, .topbar, .progress-track, .chapter-rail, .chapter-nav { display: none !important; }
  .reader-shell { margin: 0; }
  .read-view { padding: 0; }
  .reading-grid { display: block; padding: 0; }
  .article { max-width: none; }
}


/* v2 — cover-first reading experience */
.cover-home {
  min-height: calc(100vh - 64px);
  padding: 42px 28px 54px;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 28px;
  background: var(--paper);
}
.digital-cover {
  width: min(480px, calc((100vh - 175px) * .6666667), calc(100vw - var(--sidebar-w) - 52px));
  aspect-ratio: 2 / 3;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(245,190,0,.02), rgba(245,190,0,.02)),
    url("assets/cover-art.webp") center / cover no-repeat,
    var(--amber);
  box-shadow: 0 22px 54px rgba(29,27,25,.16);
  color: var(--charcoal);
}
.digital-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(29,27,25,.10);
  pointer-events: none;
}
.cover-copy {
  position: absolute;
  inset: 26.5% 9% auto;
  text-align: center;
  z-index: 2;
}
.cover-copy h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(29px, 3.4vw, 43px);
  line-height: 1.04;
  letter-spacing: -.02em;
}
.cover-copy p {
  width: 88%;
  margin: 24px auto 0;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(10px, 1.08vw, 14px);
  line-height: 1.38;
  font-weight: 650;
}
.cover-copy strong {
  display: block;
  margin-top: 27px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(14px, 1.4vw, 18px);
}
.cover-entry {
  width: min(480px, calc(100vw - var(--sidebar-w) - 52px));
  display: grid;
  justify-items: center;
  gap: 10px;
}
.cover-open-btn {
  width: 100%;
  min-height: 50px;
  border: 0;
  border-radius: 9px;
  padding: 0 18px;
  background: var(--charcoal);
  color: var(--amber);
  cursor: pointer;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cover-open-btn:hover { transform: translateY(-1px); }
.cover-start-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  padding: 5px 10px;
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cover-entry p {
  margin: 5px 0 0;
  max-width: 420px;
  text-align: center;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

@media (max-width: 860px) {
  .cover-home {
    min-height: calc(100vh - 58px);
    padding: 24px 16px 42px;
  }
  .digital-cover {
    width: min(430px, calc((100vh - 155px) * .6666667), calc(100vw - 32px));
  }
  .cover-entry { width: min(430px, calc(100vw - 32px)); }
}
@media (max-width: 520px) {
  .cover-home { gap: 20px; }
  .digital-cover {
    width: min(380px, calc((100vh - 145px) * .6666667), calc(100vw - 28px));
    box-shadow: 0 14px 34px rgba(29,27,25,.14);
  }
  .cover-copy { inset: 22% 7% auto; }
  .cover-copy h1 { font-size: clamp(27px, 10vw, 38px); }
  .cover-copy p { font-size: 10.5px; margin-top: 18px; }
  .cover-copy strong { margin-top: 20px; font-size: 14px; }
  .cover-entry { width: min(380px, calc(100vw - 28px)); }
}
