:root {
  --background: #131313;
  --surface-lowest: #0e0e0e;
  --surface-low: #1c1b1b;
  --surface: #201f1f;
  --surface-high: #2a2a2a;
  --line: #2f2f2f;
  --line-strong: #454747;
  --text: #e5e2e1;
  --muted: #8f8f8f;
  --soft: #c6c6c7;
  --red: #c00000;
  --red-soft: #ffb4a8;
  --max: 1120px;
  --font-ui: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-emphasis: "Playfair Display", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background: var(--background);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--red-soft);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  color: #fff;
  background: var(--red);
}

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

.container {
  width: min(100% - 140px, var(--max));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  box-shadow: none;
  transition: background-color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease, -webkit-backdrop-filter 0.4s ease;
}

.site-header img {
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #e6e6e6;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.site-header.is-scrolled img {
  filter: none;
}

.header-inner {
  display: flex;
  width: min(100% - 140px, var(--max));
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-inline: auto;
  transition: min-height 0.3s ease;
}

.site-header.is-scrolled .header-inner {
  min-height: 70px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  width: 184px;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.brand-link img {
  display: block;
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.site-nav a {
  position: relative;
  text-decoration: none;
  color: inherit;
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: #fff;
}

.site-nav a.is-active {
  color: #fff;
  font-weight: 600;
}

.site-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -10px;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--red);
  transform: translateX(-50%);
}

.site-header.is-scrolled .site-nav {
  color: #5f5f5f;
}

.site-header.is-scrolled .site-nav a:hover {
  color: #111;
}

.site-header.is-scrolled .site-nav a.is-active {
  color: #111;
  font-weight: 600;
}

.language-switch {
  display: inline-flex;
  gap: 10px;
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  transition: border-color 0.3s ease;
}

.language-switch span,
.language-switch a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s ease;
}

.language-switch a:hover {
  color: #fff;
}

.site-header.is-scrolled .language-switch {
  border-left-color: #d8d8d8;
}

.site-header.is-scrolled .language-switch span {
  color: #111;
}

.site-header.is-scrolled .language-switch a {
  color: #5f5f5f;
}

.site-header.is-scrolled .language-switch a:hover {
  color: #111;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  color: #fff;
  background: rgba(0, 0, 0, 0.2);
  padding: 0;
  cursor: pointer;
  transition: all 0.25s ease;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
}

.site-header.is-scrolled .menu-toggle {
  border-color: #d8d8d8;
  color: #111;
  background: #f5f5f5;
}

.site-header.is-scrolled .menu-toggle:hover {
  background: #e5e5e5;
  border-color: #111;
}

.hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 22px;
  height: 18px;
}

.hamburger-icon .bar {
  display: block;
  width: 20px;
  height: 2px;
  background-color: currentColor;
  border-radius: 2px;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] .bar-1 {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .bar-2 {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle[aria-expanded="true"] .bar-3 {
  transform: translateY(-7px) rotate(-45deg);
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.hero {
  padding: 150px 0 160px;
}

.photo-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.74) 34%, rgba(0, 0, 0, 0.42) 62%, rgba(0, 0, 0, 0.7) 100%),
    var(--hero-image);
  background-position: center center;
  background-size: cover;
  color: #fff;
}

.photo-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.08) 44%, rgba(0, 0, 0, 0.62)),
    radial-gradient(circle at 18% 58%, rgba(192, 0, 0, 0.22), transparent 26%);
}

.photo-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100% - 140px, var(--max));
  min-height: 100vh;
  grid-template-columns: minmax(0, 1fr);
  align-content: end;
  margin-inline: auto;
  padding-top: 132px;
  padding-bottom: 54px;
}

.photo-hero__content {
  max-width: 980px;
}

.photo-hero__brand {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 16px;
  text-transform: uppercase;
}

.photo-hero__content p {
  margin: 0;
}

.photo-hero__title {
  max-width: 1050px;
  margin: 28px 0 72px;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-display);
  font-size: clamp(52px, 8.5vw, 75px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 0.98;
}

.photo-hero__title span {
  display: block;
  margin-top: 14px;
  font-size: 0.62em;
  line-height: 1;
}

.photo-hero__statement {
  max-width: 560px;
  margin-top: 0;
  padding-left: 22px;
  border-left: 2px solid var(--red);
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 28px;
}

.photo-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 44px;
}

.photo-hero__button {
  display: inline-flex;
  min-width: 184px;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease;
}

.photo-hero__button:hover {
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.photo-hero__button--primary {
  border-color: rgba(192, 0, 0, 0.74);
  background: rgba(192, 0, 0, 0.72);
}

.photo-hero__meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 80px;
}

.photo-hero__meta div {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.photo-hero__meta strong,
.photo-hero__meta span {
  display: block;
}

.photo-hero__meta strong {
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  font-weight: 700;
}

.photo-hero__meta span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-label {
  display: inline-flex;
  width: max-content;
  margin-bottom: 32px;
  padding: 8px 14px;
  border: 1px solid var(--line-strong);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 16px;
  text-transform: uppercase;
}

.hero h1,
h2 {
  margin: 0;
  color: var(--text);
}

.hero h1 {
  max-width: 1000px;
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 80px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.hero h1 em,
h2 em {
  color: var(--muted);
  font-family: var(--font-emphasis);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 680px;
  margin: 32px 0 0;
  padding-left: 24px;
  border-left: 1px solid var(--red);
  color: var(--muted);
  font-size: 18px;
  line-height: 28px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 44px;
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  color: var(--red-soft);
  font-size: 24px;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(8px);
}

.section {
  padding: 120px 0;
}

.panel-section {
  border-block: 1px solid var(--line);
  background: var(--surface-low);
}

.section-grid,
.editorial-grid,
.profile-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 32px;
}

.section-intro {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

h2 {
  max-width: 760px;
  font-size: 40px;
  line-height: 48px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.section-intro p {
  margin: 0;
  color: #333333;
  font-size: 16px;
  line-height: 24px;
}

.prose p {
  margin: 0;
  color: #1c1917 !important;
  font-size: 17px;
  line-height: 28px;
}

.prose {
  display: grid;
  gap: 22px;
  max-width: 840px;
}

.prose p:first-child {
  color: #0c0a09 !important;
  font-size: 18px;
  line-height: 28px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.bento-card {
  min-height: 310px;
  padding: 32px;
  border: 1px solid var(--line);
  background: transparent;
  transition: border-color 180ms ease;
}

.bento-card:hover {
  /* Keep border neutral without darkening */
}

.bento-card span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  border: 1px solid var(--line);
  color: var(--red-soft);
  font-size: 12px;
  font-weight: 700;
}

.bento-card h3,
.method-card h3 {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 22px;
  line-height: 30px;
  font-weight: 600;
}

.bento-card ul,
.method-card ul,
.benefit-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

li + li {
  margin-top: 9px;
}

.center-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 72px;
  text-align: center;
}

.center-heading h2 {
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 52px;
  font-weight: 800;
}

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

.method-card {
  position: relative;
  display: flex;
  min-height: 300px;
  flex-direction: column;
  gap: 16px;
}

.method-card > span {
  width: 8px;
  height: 8px;
  margin-bottom: 16px;
  background: var(--red);
}

.method-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 32px;
  padding-left: 0;
  list-style: none;
}

.benefit-list li {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--soft);
  font-size: 18px;
  line-height: 28px;
}

.profile figure {
  margin: 0;
  border: 1px solid var(--line);
  background: var(--surface-low);
  padding: 10px;
}

.profile img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 36px 0;
}

.stats-row p {
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid var(--red);
}

.stats-row strong,
.stats-row span {
  display: block;
}

.stats-row span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-head-line {
  display: flex;
  align-items: end;
  margin-bottom: 56px;
}

.section-head-line::after {
  content: "";
  flex: 1;
  height: 1px;
  margin-left: 34px;
  background: var(--line);
}

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

.logo-grid figure {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  margin: 0;
  border: 1px solid var(--line);
  background: var(--surface-lowest);
  padding: 24px;
}

.logo-grid img {
  width: 100%;
  max-height: 52px;
  object-fit: contain;
  object-position: left center;
  filter: grayscale(1) brightness(1.25);
}

.logo-grid figcaption {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.contact {
  border-top: 1px solid var(--line);
  background: var(--surface-lowest);
}

.contact-list {
  display: grid;
  gap: 18px;
}

.contact-list p {
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--soft);
}

.contact-list span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-list a {
  color: var(--text);
}

.fine-print {
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 980px) {
  .container {
    width: min(100% - 32px, var(--max));
  }

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

  .site-nav {
    position: absolute;
    inset: 78px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid #e6e6e6;
    background: #fff;
    padding: 24px;
    color: #5f5f5f;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  }

  .site-nav a {
    color: #5f5f5f;
  }

  .site-nav a:hover,
  .site-nav a.is-active {
    color: #111;
    font-weight: 600;
  }

  .site-nav.is-open {
    display: flex;
  }

  .photo-hero {
    background-position: 62% center;
  }

  .photo-hero__inner {
    width: min(100% - 32px, var(--max));
  }

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

  .language-switch {
    padding-left: 0;
    border-left: 0;
  }

  .language-switch span {
    color: #111;
  }

  .language-switch a {
    color: #5f5f5f;
  }

  .section-grid,
  .editorial-grid,
  .profile-grid,
  .contact-grid,
  .bento-grid,
  .method-grid {
    grid-template-columns: 1fr;
  }

  .stats-row,
  .benefit-list,
  .logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 96px 0 112px;
  }

  .photo-hero {
    min-height: 100svh;
    background-image:
      linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.76) 48%, rgba(0, 0, 0, 0.38) 100%),
      var(--hero-image);
    background-position: 58% center;
  }

  .photo-hero__inner {
    min-height: 100svh;
    padding-top: 116px;
    padding-bottom: 34px;
  }

  .photo-hero__title {
    font-size: clamp(40px, 13vw, 58px);
    line-height: 0.94;
    margin-bottom: 42px;
  }

  .photo-hero__statement {
    max-width: 330px;
    margin-top: 0;
    font-size: 16px;
    line-height: 24px;
  }

  .photo-hero__actions {
    margin-top: 30px;
  }

  .photo-hero__button {
    width: 100%;
  }

  .photo-hero__meta {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 42px;
  }

  .section {
    padding: 76px 0;
  }

  .hero h1 {
    font-size: 44px;
    line-height: 48px;
  }

  h2,
  .center-heading h2 {
    font-size: 32px;
    line-height: 40px;
  }

  .hero-subtitle {
    padding-left: 18px;
  }

  .stats-row,
  .benefit-list,
  .logo-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Fade-In & Scroll Reveal Animations
   ========================================================================== */

.fade-up,
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.fade-up.is-visible,
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.article-section,
.article-body,
article,
.no-fade {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* ─── ARTICLE EDITORIAL TYPOGRAPHY & SUBHEADING SPACING ─── */
.article-body h2,
.article-body h3,
.article-body h4 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif !important;
  margin-top: 3.5rem !important;
  margin-bottom: 1.25rem !important;
  color: #141414 !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
  letter-spacing: 0;
}

.article-body h2 {
  font-size: 1.75rem !important;
}

.article-body h3 {
  font-size: 1.5rem !important;
}

.article-body h4 {
  font-size: 1.25rem !important;
}

.article-body p {
  max-width: 68ch;
  margin-bottom: 1.5rem !important;
  color: #292524 !important;
  font-family: Georgia, "Times New Roman", serif !important;
  line-height: 1.65 !important;
  font-size: 1.125rem !important;
}

.article-body p:has(> strong:only-child),
.article-body p > strong:first-child:only-child {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif !important;
  display: block;
  margin-top: 3.25rem !important;
  margin-bottom: 1.125rem !important;
  font-size: 1.35rem !important;
  font-weight: 700 !important;
  color: #141414 !important;
  line-height: 1.3 !important;
}

.article-body br + strong {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif !important;
  display: block;
  margin-top: 2.5rem !important;
  margin-bottom: 0.75rem !important;
  font-size: 1.35rem !important;
  font-weight: 700 !important;
  color: #141414 !important;
}

/* R.Magnago editorial type system */
#article-title {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
}

#article-subtitle {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
}

.article-body {
  max-width: 68ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.125rem;
  line-height: 1.65;
}

.article-body li,
.article-body blockquote {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.125rem;
  line-height: 1.65;
}

@media (max-width: 700px) {
  #article-title {
    font-size: 2.125rem;
    line-height: 1.2;
  }

  #article-subtitle {
    font-size: 1.125rem;
  }

  .article-body,
  .article-body p,
  .article-body li,
  .article-body blockquote {
    font-size: 1.0625rem !important;
  }
}

/* Agenda: editorial calendar and convention archive. */
body:has(.agenda-page),
body:has(.convention-page),
body:has(.library-page) {
  background: #fff;
  color: #1d1d1f;
}

.library-subnavigation {
  position: sticky;
  top: 44px;
  z-index: 90;
  display: flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  gap: 34px;
  overflow-x: auto;
  border-bottom: 1px solid rgba(0, 0, 0, .14);
  background: rgba(255, 255, 255, .95);
  color: #6e6e73;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  scrollbar-width: none;
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
}

.library-subnavigation::-webkit-scrollbar {
  display: none;
}

.library-subnavigation a {
  padding: 7px 0;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.library-subnavigation a:hover,
.library-subnavigation a.is-active {
  color: #1d1d1f;
}

.library-subnavigation a.is-active {
  font-weight: 600;
}

.library-page {
  width: min(calc(100% - 80px), 1180px);
  margin: 0 auto;
  background: #fff;
  color: #1d1d1f;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

.library-introduction {
  max-width: 900px;
  padding: 76px 16px 72px;
}

.library-kicker {
  margin: 0 0 14px;
  color: #86868b;
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
}

.library-introduction h1 {
  margin: 0 0 24px;
  color: #111;
  font-size: 2.75rem;
  font-weight: 600;
  line-height: 1.12;
}

.library-introduction > p:last-child {
  max-width: 700px;
  margin: 0;
  color: #424245;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1.6;
}

.library-catalog {
  position: relative;
  display: grid;
  grid-template-columns: minmax(210px, 28%) minmax(0, 1fr);
  border-top: 1px solid #d2d2d7;
}

.library-catalog::before {
  position: absolute;
  top: 38px;
  bottom: 52px;
  left: 28%;
  width: 1px;
  background: #d2d2d7;
  content: "";
}

.library-catalog-heading {
  padding: 38px 30px 52px 16px;
}

.library-catalog-heading > span {
  display: block;
  margin-bottom: 12px;
  color: #b60000;
  font-size: .68rem;
  font-weight: 600;
}

.library-catalog-heading h2 {
  margin: 0;
  color: #1d1d1f;
  font-size: 1.35rem;
  font-weight: 500;
}

.library-catalog-body {
  min-width: 0;
  padding: 38px 16px 72px 48px;
}

.library-books {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.library-book {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 22px;
  margin: 0;
  padding: 26px 0;
  border-top: 1px solid #e5e5e7;
}

.library-book img {
  display: block;
  width: 112px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border: 1px solid #d2d2d7;
}

.library-book-cover {
  display: block;
}

.library-book-cover:hover img,
.library-book-cover:focus-visible img {
  border-color: #b60000;
}

.library-book h3 {
  margin: 0 0 5px;
  color: #1d1d1f;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
}

.library-book h3 a {
  color: inherit;
  text-decoration: none;
}

.library-book h3 a:hover,
.library-book h3 a:focus-visible {
  color: #b60000;
}

.library-book-status {
  margin: 0 0 8px;
  color: #b60000;
  font-size: .62rem;
  font-weight: 600;
  text-transform: uppercase;
}

.library-book-author {
  margin: 0 0 14px;
  color: #6e6e73;
  font-size: .72rem;
}

.library-book-insight {
  margin: 0;
  color: #424245;
  font-family: Georgia, "Times New Roman", serif;
  font-size: .86rem;
  line-height: 1.55;
}

.library-book-amazon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  color: #b60000;
  font-size: .7rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
}

.library-book-amazon:hover,
.library-book-amazon:focus-visible {
  color: #1d1d1f;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.library-empty {
  max-width: 480px;
  margin: 0;
  padding-left: 14px;
  border-left: 2px solid #c00000;
  color: #6e6e73;
  font-family: Georgia, "Times New Roman", serif;
  font-size: .9rem;
}

.library-page ~ .reading-site-footer {
  background: #fff;
}

.agenda-subnavigation {
  position: sticky;
  top: 44px;
  z-index: 90;
  display: flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  gap: 34px;
  border-bottom: 1px solid rgba(0, 0, 0, .14);
  background: rgba(255, 255, 255, .95);
  color: #6e6e73;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
}

.agenda-subnavigation a {
  padding: 7px 0;
  color: inherit;
  text-decoration: none;
}

.agenda-subnavigation a:hover,
.agenda-subnavigation a.is-active {
  color: #1d1d1f;
}

.agenda-subnavigation a.is-active {
  font-weight: 600;
}

.agenda-page {
  width: min(calc(100% - 80px), 1180px);
  margin: 0 auto;
  background: #fff;
  color: #1d1d1f;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

.agenda-introduction {
  max-width: 900px;
  padding: 76px 16px 72px;
}

.agenda-kicker,
.convention-meta,
.agenda-empty-label {
  margin: 0 0 14px;
  color: #86868b;
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
}

.agenda-introduction h1 {
  margin: 0 0 24px;
  color: #111;
  font-size: 2.75rem;
  font-weight: 600;
  line-height: 1.12;
}

.agenda-introduction > p:last-child {
  max-width: 700px;
  margin: 0;
  color: #424245;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1.6;
}

.agenda-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(210px, 28%) minmax(0, 1fr);
  border-top: 1px solid #d2d2d7;
  scroll-margin-top: 84px;
}

.agenda-section::before {
  position: absolute;
  top: 38px;
  bottom: 52px;
  left: 28%;
  width: 1px;
  background: #d2d2d7;
  content: "";
}

.agenda-section-heading {
  padding: 38px 30px 52px 16px;
}

.agenda-section-heading > span {
  display: block;
  margin-bottom: 12px;
  color: #b60000;
  font-size: .68rem;
  font-weight: 600;
}

.agenda-section-heading h2 {
  margin: 0;
  color: #1d1d1f;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.35;
}

.agenda-section-body {
  min-width: 0;
  padding: 38px 16px 72px 48px;
}

.agenda-list-toolbar {
  display: flex;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid #d2d2d7;
}

.agenda-list-filter {
  position: relative;
  padding: 0 0 12px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #6e6e73;
  font: inherit;
  font-size: .78rem;
  cursor: pointer;
}

.agenda-list-filter::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: transparent;
  content: "";
}

.agenda-list-filter:hover,
.agenda-list-filter.is-active {
  color: #1d1d1f;
}

.agenda-list-filter.is-active {
  font-weight: 600;
}

.agenda-list-filter.is-active::after {
  background: #b60000;
}

.agenda-event-list {
  min-height: 180px;
}

.agenda-event {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid #d2d2d7;
}

.agenda-event__date {
  display: grid;
  align-content: start;
  padding-right: 24px;
  border-right: 1px solid #e5e5e7;
  color: #1d1d1f;
}

.agenda-event__day {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}

.agenda-event__day--range {
  font-size: 1.45rem;
}

.agenda-event__month,
.agenda-event__year {
  font-size: .7rem;
  line-height: 1.45;
  text-transform: uppercase;
}

.agenda-event__month {
  margin-top: 7px;
  color: #b60000;
  font-weight: 600;
}

.agenda-event__year {
  color: #86868b;
}

.agenda-event__content {
  min-width: 0;
}

.agenda-event__image {
  display: block;
  width: 100%;
  max-width: 760px;
  margin: 0 0 24px;
  overflow: hidden;
  background: #ececef;
}

.agenda-event__image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  transition: opacity 180ms ease;
}

.agenda-event__image--banner img {
  aspect-ratio: auto;
  object-fit: contain;
}

a.agenda-event__image:hover img {
  opacity: .88;
}

.agenda-event__content h3 {
  margin: 0 0 8px;
  color: #1d1d1f;
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.35;
}

.agenda-event__meta {
  margin: 0 0 12px;
  color: #6e6e73;
  font-size: .72rem;
  font-weight: 500;
}

.agenda-event__description {
  max-width: 64ch;
  margin: 0;
  color: #424245;
  font-family: Georgia, "Times New Roman", serif;
  font-size: .95rem;
  line-height: 1.62;
}

.agenda-event__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 20px;
}

.agenda-event__action {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border-bottom: 1px solid currentColor;
  color: #424245;
  font-size: .7rem;
  font-weight: 600;
  text-decoration: none;
}

.agenda-event__action:hover {
  color: #b60000;
}

.agenda-event__action--primary {
  padding: 0 12px;
  border: 1px solid #b60000;
  color: #b60000;
}

.agenda-event__action--primary:hover {
  background: #b60000;
  color: #fff;
}

.agenda-list-empty {
  padding: 34px 0 34px 16px;
  border-bottom: 1px solid #d2d2d7;
  border-left: 2px solid #b60000;
}

.agenda-list-empty h3 {
  margin: 0 0 8px;
  color: #1d1d1f;
  font-size: .95rem;
  font-weight: 600;
}

.agenda-list-empty p,
.agenda-empty-state > p:last-child {
  margin: 0;
  color: #6e6e73;
  font-family: Georgia, "Times New Roman", serif;
  font-size: .9rem;
  line-height: 1.6;
}

.conventions-list {
  max-width: 800px;
}

.convention-entry {
  display: grid;
  grid-template-columns: minmax(180px, 34%) minmax(0, 1fr);
  gap: 30px;
  padding: 0 0 34px;
  border-bottom: 1px solid #d2d2d7;
}

.convention-entry + .convention-entry {
  padding-top: 34px;
}

.convention-entry h3,
.agenda-empty-state h3 {
  margin: 0 0 12px;
  color: #1d1d1f;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.35;
}

.convention-entry h3 a {
  color: inherit;
  text-decoration: none;
}

.convention-entry h3 a:hover {
  color: #b60000;
}

.convention-entry__image {
  display: block;
  align-self: start;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid #d2d2d7;
  background: #f5f5f7;
}

.convention-entry__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.convention-entry__content {
  min-width: 0;
}

.convention-entry__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: #1d1d1f;
  font-size: .75rem;
  font-weight: 600;
  text-decoration: none;
}

.convention-entry__link:hover {
  color: #b60000;
}

.convention-subject,
.convention-insights {
  max-width: 68ch;
  color: #424245;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.65;
}

.agenda-page ~ .reading-site-footer {
  background: #fff;
}

.convention-page {
  width: min(calc(100% - 80px), 880px);
  margin: 0 auto;
  padding-bottom: 76px;
  background: #fff;
  color: #1d1d1f;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

.convention-hero {
  padding: 54px 0 48px;
  border-bottom: 1px solid #d2d2d7;
}

.convention-breadcrumb {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  color: #6e6e73;
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
}

.convention-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.convention-breadcrumb a:hover {
  color: #b60000;
}

.convention-article-meta {
  margin: 0 0 16px;
  color: #6e6e73;
  font-size: .75rem;
}

.convention-hero h1 {
  max-width: 820px;
  margin: 0 0 22px;
  color: #1d1d1f;
  font-size: 2.925rem;
  font-weight: 600;
  line-height: 1.12;
}

.convention-deck {
  max-width: 680px;
  margin: 0;
  color: #424245;
  font-size: 1.125rem;
  line-height: 1.55;
}

.convention-featured-image {
  margin: 48px 0;
  padding: 0;
}

.convention-featured-image img {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border: 1px solid #d2d2d7;
}

.convention-article-body {
  max-width: 68ch;
  color: #292524;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.125rem;
  line-height: 1.65;
}

.convention-article-body p {
  margin: 0 0 1.5rem;
}

.convention-article-body h2 {
  margin: 3.5rem 0 1.25rem;
  color: #141414;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.25;
}

.convention-return {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid #d2d2d7;
  font-size: .78rem;
  font-weight: 600;
}

.convention-return a {
  color: #1d1d1f;
  text-decoration: none;
}

.convention-return a:hover {
  color: #b60000;
}

.convention-page ~ .reading-site-footer {
  background: #fff;
}

@media (max-width: 700px) {
  .library-subnavigation {
    top: 56px;
    justify-content: flex-start;
    gap: 24px;
    padding: 0 20px;
  }

  .library-page {
    width: calc(100% - 40px);
  }

  .library-introduction {
    padding: 52px 0 48px;
  }

  .library-introduction h1 {
    font-size: 2.125rem;
  }

  .library-catalog {
    display: block;
  }

  .library-catalog::before {
    display: none;
  }

  .library-catalog-heading {
    padding: 24px 0;
    border-bottom: 1px solid #ececef;
  }

  .library-catalog-body {
    padding: 28px 0 52px;
  }

  .library-books {
    grid-template-columns: 1fr;
  }

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

  .library-book img {
    width: 88px;
  }

  .agenda-subnavigation {
    top: 56px;
    gap: 24px;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0 20px;
  }

  .agenda-subnavigation a {
    white-space: nowrap;
  }

  .agenda-page {
    width: calc(100% - 40px);
  }

  .agenda-introduction {
    padding: 52px 0 48px;
  }

  .agenda-introduction h1 {
    font-size: 2.125rem;
  }

  .agenda-section {
    display: block;
  }

  .agenda-section::before {
    display: none;
  }

  .agenda-section-heading {
    padding: 24px 0;
    border-bottom: 1px solid #ececef;
  }

  .agenda-section-body {
    padding: 28px 0 52px;
  }

  .convention-entry {
    display: block;
  }

  .convention-entry__image {
    margin-bottom: 24px;
  }

  .agenda-list-toolbar {
    gap: 24px;
  }

  .agenda-event {
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 20px;
    padding: 26px 0;
  }

  .agenda-event__date {
    padding-right: 18px;
  }

  .agenda-event__image {
    margin-bottom: 20px;
  }

  .agenda-event__image img {
    aspect-ratio: 4 / 3;
  }

  .agenda-event__image--banner img {
    aspect-ratio: auto;
  }

  .agenda-event__day {
    font-size: 1.7rem;
  }

  .agenda-event__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .agenda-event__action--primary {
    justify-content: center;
  }

  .convention-page {
    width: calc(100% - 40px);
    padding-bottom: 52px;
  }

  .convention-hero {
    padding: 42px 0 38px;
  }

  .convention-hero h1 {
    font-size: 2.125rem;
    line-height: 1.18;
  }

  .convention-featured-image {
    margin: 34px 0;
  }

  .convention-article-body {
    font-size: 1.0625rem;
  }
}

.delay-1 { transition-delay: 0.05s; }
.delay-2 { transition-delay: 0.1s; }
.delay-3 { transition-delay: 0.15s; }
.delay-4 { transition-delay: 0.2s; }

/* Hero entrance animation */
@keyframes heroEntrance {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.photo-hero__content {
  animation: heroEntrance 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.photo-hero__meta {
  animation: heroEntrance 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

@media (prefers-reduced-motion: reduce) {
  .fade-up,
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .photo-hero__content,
  .photo-hero__meta {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Editorial footer shared by publications, articles and book pages. */
.book-page {
  background: #fff;
  color: #1d1d1f;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

.book-page > section {
  background: #fff !important;
  color: #1d1d1f !important;
  border-color: #d2d2d7 !important;
}

.book-hero,
.book-themes,
.book-distribution,
.book-support-callout,
.book-details {
  padding-top: 64px !important;
  padding-bottom: 64px !important;
}

.book-support-callout__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(210px, 28%) minmax(0, 1fr);
  width: min(calc(100% - 80px), 1180px);
  margin: 0 auto;
  border-top: 1px solid #d2d2d7;
  border-bottom: 1px solid #d2d2d7;
}

.book-support-callout__inner::before {
  position: absolute;
  top: 38px;
  bottom: 52px;
  left: 28%;
  width: 1px;
  background: #d2d2d7;
  content: "";
}

.book-support-callout__inner > h2 {
  margin: 0;
  padding: 38px 30px 52px 16px;
  font-size: 1.35rem !important;
  font-weight: 500 !important;
}

.book-support-callout__body {
  padding: 38px 16px 52px 48px;
  font-size: 1rem;
  line-height: 1.65;
}

.book-support-callout__body p {
  max-width: 720px;
  margin: 0 0 24px;
}

.book-support-callout__button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border: 0;
  border-radius: 0;
  background: #1d1d1f;
  color: #fff !important;
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
}

.book-support-callout__button:hover {
  background: #b60000;
}

.book-hero > div:last-child,
.book-themes > div,
.book-distribution > div {
  width: min(calc(100% - 80px), 1180px);
  margin-right: auto;
  margin-left: auto;
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.book-hero > .absolute {
  display: none;
}

.book-page h1,
.book-page h2,
.book-page h3,
.book-page h4,
.book-page [class*="text-white"],
.book-page [class*="text-stone-2"],
.book-page [class*="text-stone-3"] {
  color: #1d1d1f !important;
}

.book-page h1 {
  max-width: 720px;
  font-size: 2.925rem !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  line-height: 1.12 !important;
}

.book-page h2 {
  font-size: 2rem !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
}

.book-page h3 {
  font-weight: 600 !important;
}

.book-page [class*="text-stone-4"],
.book-page [class*="text-gray-medium"] {
  color: #6e6e73 !important;
}

.book-page [class*="rounded-"] {
  border-radius: 0 !important;
}

.book-page [class*="shadow"] {
  box-shadow: none !important;
}

.book-page [class*="tracking-"] {
  letter-spacing: 0 !important;
}

.book-hero nav {
  margin-bottom: 34px !important;
  color: #6e6e73 !important;
  text-transform: none;
}

.book-hero nav a {
  color: #6e6e73 !important;
}

.book-hero .grid {
  align-items: start;
}

.book-hero .rounded-full {
  padding: 4px 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: #6e6e73 !important;
}

.book-hero .rounded-full:first-child {
  color: #b60000 !important;
}

.book-hero .border-y {
  border-color: #d2d2d7 !important;
}

.book-hero .border-y p:first-child {
  color: #6e6e73 !important;
}

.book-hero .border-y p:last-child {
  color: #1d1d1f !important;
  font-weight: 600 !important;
}

.book-hero .h-8.w-px {
  background: #d2d2d7 !important;
}

.book-hero button,
.book-hero a[href="#lotes-distribuicao"] {
  min-height: 44px;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.book-hero button {
  color: #fff !important;
}

.book-hero a[href="#lotes-distribuicao"] {
  border: 1px solid #1d1d1f !important;
  background: #fff !important;
  color: #1d1d1f !important;
}

.book-hero img {
  border: 1px solid #d2d2d7;
}

.book-hero img + .absolute {
  display: none;
}

.book-hero .lg\:col-span-5 > div > div {
  border: 0 !important;
  box-shadow: none !important;
  transform: none !important;
}

.book-themes .max-w-3xl,
.book-distribution .max-w-3xl {
  margin-bottom: 42px !important;
}

.book-note {
  display: grid;
  grid-template-columns: minmax(210px, 28%) minmax(0, 1fr);
  max-width: 1180px;
  color: #424245;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.58;
}

.book-note h2 {
  margin: 0 !important;
  padding-right: 30px;
  color: #1d1d1f;
  font-size: 1.35rem !important;
  font-weight: 500 !important;
  line-height: 1.35 !important;
}

.book-note__body {
  max-width: 900px;
  padding-left: 48px;
  border-left: 1px solid #d2d2d7;
}

.book-note__body > p {
  margin: 0 0 22px;
}

.book-note a {
  color: inherit;
  text-decoration-color: #b60000;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.book-note a:hover {
  color: #b60000;
}

.book-note .book-note__closing {
  margin-bottom: 42px;
  color: #1d1d1f;
  font-weight: 600;
}

.book-chapters {
  margin: 0;
  padding: 0;
  border-top: 1px solid #d2d2d7;
  list-style: none;
}

.book-chapters li {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 22px;
  margin: 0;
  padding: 17px 0;
  border-bottom: 1px solid #d2d2d7;
}

.book-chapters strong {
  color: #6e6e73;
  font-size: .76rem;
  font-weight: 600;
  text-transform: uppercase;
}

.book-chapters span {
  color: #1d1d1f;
  line-height: 1.55;
}

.book-themes .grid > div {
  padding: 26px 0 !important;
  border: 0 !important;
  border-top: 1px solid #d2d2d7 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.book-themes .grid > div > div > div:first-child {
  display: none;
}

.book-themes .grid p,
.book-distribution p {
  color: #424245 !important;
  font-size: .9rem !important;
}

.book-distribution > div > .flex:first-child {
  align-items: start;
  margin-bottom: 44px !important;
  padding-bottom: 36px !important;
  border-color: #d2d2d7 !important;
}

.book-stats {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

.book-stats > div {
  min-width: 130px;
  padding-left: 20px;
  border-left: 1px solid #d2d2d7;
}

.book-stats p:first-child {
  color: #1d1d1f !important;
}

.book-lots {
  gap: 0 32px !important;
}

.book-lots > div {
  padding: 28px 0 !important;
  border: 0 !important;
  border-top: 1px solid #d2d2d7 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.book-lots > div > div:first-child > div:first-child span:first-child {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: #424245 !important;
}

.book-lots > div:last-child > div:first-child > div:first-child span:first-child {
  color: #b60000 !important;
}

.book-lots > div > div:last-child {
  border-color: #d2d2d7 !important;
  color: #6e6e73 !important;
}

.book-lots > div > div:last-child span:last-child {
  color: #1d1d1f !important;
}

.book-lots button,
.book-sponsor button {
  border-radius: 0 !important;
  box-shadow: none !important;
}

.book-lots button {
  color: #fff !important;
}

.book-sponsor {
  padding: 36px 0 !important;
  border-right: 0 !important;
  border-left: 0 !important;
  border-color: #d2d2d7 !important;
  background: transparent !important;
}

.book-sponsor button {
  border: 1px solid #1d1d1f !important;
  background: #1d1d1f !important;
  color: #fff !important;
}

.book-details > div {
  width: min(calc(100% - 80px), 880px);
  max-width: none;
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.book-specs {
  padding: 0 !important;
  border: 0 !important;
  border-top: 1px solid #d2d2d7 !important;
  background: transparent !important;
  box-shadow: none !important;
}

#download-modal > div,
#sponsor-modal > div,
#download-modal input,
#sponsor-modal input,
#sponsor-modal select,
#download-modal button,
#sponsor-modal button,
#download-modal a {
  border-radius: 0 !important;
  box-shadow: none !important;
}

#download-modal > div,
#sponsor-modal > div {
  border: 1px solid #d2d2d7;
}

#download-modal input,
#sponsor-modal input,
#sponsor-modal select {
  background: #fff !important;
}

@media (max-width: 700px) {
  .book-hero,
  .book-themes,
  .book-distribution,
  .book-support-callout,
  .book-details {
    padding-top: 44px !important;
    padding-bottom: 44px !important;
  }

  .book-support-callout__inner {
    display: block;
    width: calc(100% - 40px);
  }

  .book-support-callout__inner::before {
    display: none;
  }

  .book-support-callout__inner > h2 {
    padding: 22px 0;
    border-bottom: 1px solid #ececef;
  }

  .book-support-callout__body {
    padding: 26px 0 36px;
  }

  .book-hero > div:last-child,
  .book-themes > div,
  .book-distribution > div,
  .book-details > div {
    width: calc(100% - 40px);
  }

  .book-page h1 {
    font-size: 2.125rem !important;
    line-height: 1.18 !important;
  }

  .book-page h2 {
    font-size: 1.65rem !important;
  }

  .book-note {
    display: block;
    font-size: 16px;
  }

  .book-note h2 {
    margin-bottom: 26px !important;
    padding-right: 0;
  }

  .book-note__body {
    max-width: none;
    padding-left: 0;
    border-left: 0;
  }

  .book-chapters li {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 14px;
    padding: 15px 0;
  }

  .book-stats > div {
    min-width: 0;
  }

  .book-sponsor {
    padding: 30px 0 !important;
  }
}

.reading-site-footer {
  width: min(calc(100% - 80px), 1180px);
  margin: 0 auto;
  padding: 0 0 32px;
  color: #6e6e73;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-size: .76rem;
  scroll-margin-top: 72px;
}

.reading-site-footer a {
  color: inherit;
  text-underline-offset: .2em;
}

.reading-site-footer a:hover {
  color: #b60000;
}

.reading-site-footer__contact {
  position: relative;
  display: grid;
  grid-template-columns: minmax(210px, 28%) minmax(0, 1fr);
  padding: 0 0 64px;
  border-top: 1px solid #d2d2d7;
}

.reading-site-footer__contact::before {
  position: absolute;
  top: 38px;
  bottom: 64px;
  left: 28%;
  width: 1px;
  background: #d2d2d7;
  content: "";
}

.reading-site-footer__contact h2 {
  margin: 0;
  padding: 38px 30px 52px 16px;
  color: #000;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.35;
}

.reading-site-footer__contact-body {
  min-width: 0;
  padding: 38px 16px 0 48px;
  color: #000;
  font-size: 16px;
  line-height: 1.58;
}

.reading-site-footer__contact-body a:not(.reading-site-footer__linkedin-button) {
  color: #000;
}

.reading-site-footer__contact-body p {
  margin: 0 0 1.2rem;
}

.reading-site-footer__location {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: #000;
  font-size: 1.05rem;
  font-weight: 600;
}

.reading-site-footer__location-mark {
  width: 8px;
  height: 8px;
  background: #c00000;
}

.reading-site-footer a.reading-site-footer__linkedin-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  background: #1d1d1f;
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
}

.reading-site-footer a.reading-site-footer__linkedin-button:hover {
  background: #b60000;
  color: #fff;
}

.reading-site-footer__note {
  max-width: 720px;
  padding: 3px 0 3px 16px;
  border-left: 2px solid #c00000;
  color: #000;
  font-size: .9rem;
  font-weight: 500;
  line-height: 1.55;
}

.reading-site-footer__correspondence {
  margin-top: 24px;
}

.reading-site-footer__correspondence > summary {
  width: fit-content;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: .2em;
}

.reading-site-footer form {
  max-width: 620px;
  margin-top: 24px;
}

.reading-site-footer label {
  display: block;
  margin: 16px 0 6px;
  color: #1d1d1f;
}

.reading-site-footer input,
.reading-site-footer textarea {
  display: block;
  width: 100%;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid #86868b;
  border-radius: 0;
  background: #fff;
  color: #1d1d1f;
  font: inherit;
}

.reading-site-footer textarea {
  resize: vertical;
}

.reading-site-footer button {
  margin: 20px 0;
  padding: 6px 0;
  border: 0;
  border-bottom: 1px solid #555;
  border-radius: 0;
  background: transparent;
  color: #1d1d1f;
  cursor: pointer;
  font: inherit;
}

.reading-site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid #d2d2d7;
}

.reading-site-footer__information {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.reading-site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.reading-site-footer__brand img {
  display: block;
  flex: 0 0 auto;
  width: 25px;
  height: 20px;
}

.article-title {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-size: 2.925rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.12;
}

@media (max-width: 700px) {
  .article-title {
    font-size: 2rem;
    line-height: 1.18;
  }

  .reading-site-footer {
    width: calc(100% - 40px);
  }

  .reading-site-footer__contact {
    display: block;
    padding-bottom: 36px;
  }

  .reading-site-footer__contact::before {
    display: none;
  }

  .reading-site-footer__contact h2 {
    padding: 22px 0;
    border-bottom: 1px solid #ececef;
  }

  .reading-site-footer__contact-body {
    padding: 26px 0 0;
  }

  .reading-site-footer__bottom {
    flex-wrap: wrap;
  }
}
