:root {
  --bg: #fafafa;
  --ink: #171717;
  --surface: #ffffff;
  --accent: #343434;
  --onaccent: #ffffff;
  --line: #b7b9bd;
  --muted: #454b50;
  --radius: 6px;
  --button-radius: 6px;
}
@font-face {
  font-family: Display;
  src: url("fonts/roboto-slab.ttf") format("truetype");
  font-display: swap;
  font-weight: 100 900;
}
@font-face {
  font-family: Body;
  src: url("fonts/karla.ttf") format("truetype");
  font-display: swap;
  font-weight: 100 900;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font:
    18px/1.7 Body,
    Arial,
    sans-serif;
}
img,
svg {
  max-width: 100%;
}
img {
  display: block;
  width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}
a:hover {
  text-decoration-thickness: 2px;
}
button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}
button,
a,
input,
textarea,
select,
summary {
  touch-action: manipulation;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 5px;
}
button {
  cursor: pointer;
}
h1,
h2,
h3 {
  font-family: Display, Georgia, serif;
  font-weight: 500;
  line-height: 1.13;
  letter-spacing: -0.025em;
  margin: 0 0 0.65em;
  overflow-wrap: break-word;
}
h1 {
  font-size: clamp(38px, 5.4vw, 76px);
  max-width: 20ch;
}
h2 {
  font-size: clamp(28px, 3.2vw, 44px);
  max-width: 28ch;
}
h3 {
  font-size: clamp(23px, 2.2vw, 30px);
}
p {
  margin: 0 0 1em;
}
ul,
ol {
  padding-left: 1.35em;
}
li + li {
  margin-top: 0.45em;
}
figure {
  margin: 0;
}
section,
article,
aside,
nav,
div {
  min-width: 0;
}
.mj-wrap {
  width: min(1180px, calc(100% - 64px));
  margin-inline: auto;
}
.mj-section {
  padding-block: 76px;
  border-top: 1px solid var(--line);
}
.mj-section:first-child {
  border-top: 0;
}
.mj-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.5;
  margin-bottom: 22px;
}
.mj-lead {
  font-size: 21px;
  line-height: 1.6;
  max-width: 62ch;
}
.mj-small,
figcaption {
  font-size: 14px;
  line-height: 1.55;
}
.mj-muted,
figcaption {
  color: var(--muted);
}
.mj-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  white-space: nowrap;
  font:
    600 25px/1.3 Body,
    sans-serif;
}
.mj-brand svg {
  width: 34px;
  flex: none;
}
.mj-masthead {
  border-bottom: 1px solid var(--line);
  padding-block: 25px;
}
.mj-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.mj-strap {
  font-size: 13px;
  margin: 0;
  letter-spacing: 0.04em;
}
.mj-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 16px;
}
.mj-nav a {
  text-decoration: none;
}
.mj-nav a[aria-current] {
  text-decoration: underline;
}
.mj-menu {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 10px 14px;
  border-radius: 8px;
}
.mj-band {
  border-block: 1px solid var(--line);
  padding-block: 12px;
  margin-top: 22px;
}
.mj-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 28px;
}
.mj-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 12px 24px;
  background: var(--accent);
  color: var(--onaccent);
  border: 1px solid transparent;
  border-radius: var(--button-radius);
  text-decoration: none;
  line-height: 1.4;
  font-size: 17px;
}
.mj-button:hover {
  filter: brightness(0.93);
}
.mj-hero {
  padding-top: 60px;
}
.mj-hero-grid,
.mj-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}
.mj-hero-copy {
  padding-block: 20px;
}
.mj-hero-photo img {
  max-height: 520px;
  object-fit: contain;
  background: var(--surface);
}
.mj-photo {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
}
.mj-photo img {
  object-fit: contain;
  max-height: 520px;
}
.mj-photo figcaption {
  padding: 12px 16px;
}
.mj-photo figcaption a {
  display: inline;
}
.mj-hero-note {
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.mj-section-head {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: start;
  margin-bottom: 36px;
}
.mj-section-head p {
  max-width: 46ch;
}
.mj-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}
.mj-story {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}
.mj-story .mj-photo {
  border-radius: 0;
}
.mj-story .mj-photo img {
  height: 280px;
  object-fit: contain;
}
.mj-story-copy {
  padding: 28px;
}
.mj-story h3 a {
  text-decoration: none;
}
.mj-story .mj-eyebrow {
  margin-bottom: 14px;
}
.mj-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.mj-note {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.mj-note h3 {
  font-size: 25px;
}
.mj-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  list-style: none;
  padding: 0;
  border-top: 1px solid var(--line);
}
.mj-checklist li {
  padding: 22px;
  border-bottom: 1px solid var(--line);
  margin: 0;
}
.mj-checklist li:nth-child(odd) {
  border-right: 1px solid var(--line);
}
.mj-ribbon {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  border-block: 1px solid var(--line);
  padding: 24px 0;
  margin: 36px 0;
}
.mj-ribbon a {
  flex: 1;
  min-width: 200px;
}
.mj-price-preview {
  background: var(--surface);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-radius: var(--radius);
}
.mj-price-preview p {
  margin: 0;
}
.mj-pricing {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-block: 36px;
}
.mj-offer {
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mj-offer h3,
.mj-offer p {
  margin: 0;
}
.mj-offer .mj-button {
  margin-top: auto;
  align-self: flex-start;
}
.mj-offer ul {
  margin: 0 0 10px;
}
.mj-price {
  font-family: Display, serif;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.25;
  white-space: normal;
  overflow-wrap: break-word;
}
.mj-badge {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 7px;
  align-self: flex-start;
}
.mj-featured {
  border: 2px solid var(--accent);
}
.mj-offer details {
  width: 100%;
}
summary {
  cursor: pointer;
  padding: 16px 0;
  font-weight: 600;
}
summary::marker {
  color: var(--ink);
}
.mj-table-scroll {
  overflow-x: auto;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-block: 36px;
}
table {
  border-collapse: collapse;
  min-width: 720px;
  width: 100%;
  background: var(--surface);
}
th,
td {
  text-align: left;
  padding: 22px;
  border: 1px solid var(--line);
  vertical-align: top;
}
th {
  font-size: 20px;
}
.mj-faq {
  display: grid;
  gap: 16px;
}
.mj-faq details {
  border-block-end: 1px solid var(--line);
  padding-bottom: 12px;
}
.mj-faq p {
  max-width: 76ch;
}
.mj-page-title {
  padding-block: 24px 46px;
}
.mj-page-title h1 {
  max-width: 23ch;
  font-size: clamp(36px, 4.7vw, 65px);
}
.mj-breadcrumbs {
  list-style: none;
  padding: 22px 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
}
.mj-breadcrumbs li {
  margin: 0;
}
.mj-breadcrumbs li + li:before {
  content: "/";
  margin-right: 10px;
}
.mj-article-top {
  margin-bottom: 50px;
}
.mj-article-top > .mj-photo {
  margin-block: 28px;
}
.mj-reading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 60px;
  align-items: start;
}
.mj-prose {
  max-width: 76ch;
}
.mj-prose > section {
  margin-bottom: 42px;
}
.mj-prose h2 {
  font-size: 30px;
}
.mj-prose p {
  margin-bottom: 18px;
}
.mj-rail {
  align-self: start;
  min-width: 0;
}
.mj-toc {
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  font-size: 16px;
}
.mj-toc ol {
  margin-bottom: 0;
}
.mj-toc a {
  display: block;
}
.mj-rail .mj-photo {
  margin-bottom: 24px;
}
.mj-recap {
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-block: 38px;
}
.mj-related {
  border-top: 1px solid var(--line);
  margin-top: 48px;
  padding-top: 32px;
}
.mj-institutions {
  display: grid;
  gap: 38px;
}
.mj-institutions > section {
  max-width: 76ch;
}
.mj-institutions h2 {
  font-size: 32px;
}
.mj-institution-lead {
  margin-bottom: 36px;
}
.mj-form-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 34px;
  border-radius: var(--radius);
}
form {
  display: grid;
  gap: 22px;
}
label {
  display: block;
  margin-bottom: 7px;
}
input:not([type="checkbox"]),
textarea,
select {
  width: 100%;
  min-width: 0;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px;
}
textarea {
  min-height: 150px;
  resize: vertical;
}
.mj-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
}
.mj-consent input {
  width: 20px;
  height: 20px;
  flex: none;
  margin-top: 3px;
}
.mj-form-result {
  margin: 0;
  font-weight: 600;
}
.mj-notice {
  padding: 20px;
  border-left: 3px solid var(--accent);
  font-size: 16px;
  max-width: 80ch;
}
.mj-footer {
  border-top: 1px solid var(--line);
  padding-block: 50px;
  background: var(--surface);
}
.mj-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}
.mj-footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 16px;
}
.mj-footer-brand p {
  font-size: 16px;
  margin-top: 20px;
  max-width: 34ch;
}
.mj-footer-bottom {
  font-size: 14px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  margin-top: 32px;
}
.mj-skip {
  position: absolute;
  left: 20px;
  top: -100px;
  background: var(--bg);
  padding: 12px;
  z-index: 20;
}
.mj-skip:focus {
  top: 12px;
}
.mj-credits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}
.mj-credit {
  border: 1px solid var(--line);
  padding: 20px;
}
.mj-credit h2 {
  font-size: 23px;
  margin-top: 20px;
}
.mj-credit p {
  font-size: 15px;
}
.mj-credit .mj-photo img {
  height: 280px;
}
.mj-reading-wide {
  display: block;
  max-width: 860px;
  margin-inline: auto;
}
.mj-reading-wide .mj-prose {
  max-width: none;
}
.mj-toc-inline {
  margin-bottom: 38px;
}
.mj-toc-inline ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 30px;
}
.mj-reading-left {
  grid-template-columns: 260px minmax(0, 1fr);
}
.mj-reading-left > .mj-rail {
  grid-column: 1;
  grid-row: 1;
}
.mj-reading-left > .mj-prose {
  grid-column: 2;
  grid-row: 1;
}
.mj-institution-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.mj-institution-grid > section {
  padding: 32px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
}
.mj-institution-rows > section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 36px;
  max-width: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 32px;
}
.mj-institution-rows h2 {
  margin: 0;
}
.mj-institution-timeline {
  border-left: 2px solid var(--accent);
  padding-left: 36px;
}
.mj-institution-bands > section {
  padding: 32px;
  background: var(--surface);
  max-width: none;
}
.mj-institution-bands > section:nth-child(even) {
  margin-left: 12%;
}
.mj-photo-pair {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
  margin-top: 34px;
}
.mj-photo-pair img {
  height: 330px;
  object-fit: contain;
}
.mj-hero-poster h1 {
  font-size: clamp(52px, 8vw, 110px);
  max-width: 18ch;
}
.mj-hero-poster .mj-hero-copy {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: end;
}
.mj-hero-poster .mj-hero-copy > .mj-eyebrow {
  grid-column: 1/-1;
  margin-bottom: 0;
}
.mj-hero-first .mj-hero-photo {
  margin-bottom: 40px;
}
.mj-hero-first .mj-hero-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 50px;
}
.mj-hero-first .mj-hero-copy > .mj-eyebrow {
  grid-column: 1/-1;
  margin-bottom: 0;
}
.mj-hero-first .mj-hero-copy .mj-actions {
  grid-column: 2;
  margin-top: 0;
}
.mj-hero-center .mj-hero-copy {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}
.mj-hero-center h1,
.mj-hero-center .mj-lead {
  margin-inline: auto;
}
.mj-hero-center .mj-actions {
  justify-content: center;
}
.mj-hero-ledger .mj-hero-note {
  margin-top: 30px;
}
.mj-hero-ledger h1 {
  font-size: clamp(38px, 4.8vw, 66px);
}
.mj-hero-dossier .mj-hero-photo img {
  max-height: 600px;
}
.mj-hero-dossier .mj-hero-copy {
  border-left: 5px solid var(--accent);
  padding-left: 30px;
}
.mj-pricing-rows {
  grid-template-columns: 1fr;
}
.mj-pricing-rows .mj-offer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.3fr;
  gap: 24px;
  align-items: start;
}
.mj-pricing-rows .mj-offer .mj-badge {
  grid-column: 1/-1;
}
.mj-pricing-rows .mj-offer .mj-button {
  grid-column: 3;
}
.mj-pricing-bands {
  grid-template-columns: 1fr;
  gap: 0;
}
.mj-pricing-bands .mj-offer {
  border-radius: 0;
  border-inline: 0;
  padding-block: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.mj-pricing-bands .mj-offer .mj-price {
  grid-column: 2;
  grid-row: 2;
}
.mj-pricing-details {
  display: block;
}
.mj-pricing-details details {
  border-block: 1px solid var(--line);
  padding: 16px 24px;
  background: var(--surface);
}
.mj-pricing-details summary {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.mj-pricing-details .mj-offer {
  border: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.mj-pricing-slips .mj-offer {
  border-top: 8px solid var(--accent);
  border-radius: 0;
}
.mj-pricing-tickets .mj-offer {
  border-radius: 36px 36px 10px 10px;
}
.mj-pricing-offset .mj-offer:nth-child(2) {
  margin-top: 36px;
}
.mj-pricing-offset .mj-offer:nth-child(3) {
  margin-top: 72px;
}
.mj-pricing-labels {
  grid-template-columns: 1fr;
}
.mj-pricing-labels .mj-offer {
  display: grid;
  grid-template-columns: 220px 1fr 1fr;
}
.mj-pricing-labels .mj-price {
  grid-column: 1;
  grid-row: 2/4;
}
.mj-pricing-labels .mj-badge {
  grid-column: 1/-1;
}
.mj-pricing-labels .mj-button {
  grid-column: 3;
}
.mj-pricing-feature .mj-offer:first-child {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.mj-pricing-feature {
  grid-template-columns: 1fr 1fr;
}
.mj-reading-panel {
  padding: 40px;
  background: var(--surface);
  border-radius: var(--radius);
}
@media (max-width: 1050px) {
  .mj-wrap {
    width: calc(100% - 48px);
  }
  .mj-hero-grid,
  .mj-split {
    gap: 30px;
  }
  .mj-columns {
    gap: 18px;
  }
  .mj-note,
  .mj-offer {
    padding: 24px;
  }
  .mj-reading {
    gap: 36px;
    grid-template-columns: minmax(0, 1fr) 230px;
  }
  .mj-reading-left {
    grid-template-columns: 230px minmax(0, 1fr);
  }
  .mj-pricing {
    grid-template-columns: 1fr;
  }
  .mj-pricing-offset .mj-offer:nth-child(n) {
    margin-top: 0;
  }
  .mj-pricing-rows .mj-offer,
  .mj-pricing-labels .mj-offer,
  .mj-pricing-feature .mj-offer:first-child {
    display: flex;
  }
  .mj-pricing-bands .mj-offer {
    grid-template-columns: 1fr 1fr;
  }
  .mj-footer-grid {
    gap: 24px;
  }
  .mj-hero-poster .mj-hero-copy {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 900px) {
  .mj-menu {
    display: block;
  }
  .mj-nav {
    display: none;
    width: 100%;
    padding-top: 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  .mj-nav.mj-open {
    display: flex;
  }
  .mj-header-row {
    gap: 16px;
  }
  .mj-header-row > div:has(.mj-nav) {
    width: 100%;
  }
  .mj-header-row > div:has(.mj-nav) .mj-nav {
    padding-top: 0;
  }
  .mj-masthead .mj-strap {
    max-width: 60ch;
  }
  .mj-hero-grid,
  .mj-split,
  .mj-hero-poster .mj-hero-copy,
  .mj-hero-first .mj-hero-copy {
    grid-template-columns: 1fr;
  }
  .mj-hero-first .mj-hero-copy .mj-actions {
    grid-column: auto;
  }
  .mj-hero-poster .mj-hero-copy > .mj-eyebrow,
  .mj-hero-first .mj-hero-copy > .mj-eyebrow {
    grid-column: auto;
  }
  .mj-reading,
  .mj-reading-left {
    display: flex;
    flex-direction: column;
    gap: 36px;
  }
  .mj-reading > .mj-prose {
    order: 2;
    max-width: none;
    width: 100%;
  }
  .mj-reading > .mj-rail {
    order: 1;
    width: 100%;
  }
  .mj-rail .mj-photo {
    display: none;
  }
  .mj-toc ol {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 28px;
  }
  .mj-hero-copy {
    padding-block: 0;
  }
  .mj-section-head {
    display: block;
  }
  .mj-section-head p {
    max-width: 65ch;
  }
  .mj-columns {
    grid-template-columns: 1fr;
  }
  .mj-hero h1 {
    max-width: 23ch;
  }
  .mj-institution-rows > section {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .mj-hero-dossier .mj-hero-photo img {
    max-height: 430px;
  }
  .mj-reading-panel {
    padding: 28px;
  }
}
@media (max-width: 640px) {
  body {
    font-size: 17px;
  }
  .mj-wrap {
    width: calc(100% - 36px);
  }
  .mj-section {
    padding-block: 48px;
  }
  .mj-hero {
    padding-top: 34px;
  }
  h1,
  .mj-hero-poster h1,
  .mj-page-title h1 {
    font-size: 39px;
  }
  .mj-lead {
    font-size: 19px;
  }
  .mj-brand {
    font-size: 23px;
  }
  .mj-cards,
  .mj-credits,
  .mj-institution-grid,
  .mj-photo-pair {
    grid-template-columns: 1fr;
  }
  .mj-story-copy {
    padding: 24px;
  }
  .mj-story .mj-photo img {
    height: auto;
    max-height: 310px;
  }
  .mj-hero-photo img {
    max-height: 380px;
  }
  .mj-photo-pair img {
    height: auto;
    max-height: 320px;
  }
  .mj-photo-pair {
    gap: 20px;
  }
  .mj-footer-grid {
    grid-template-columns: 1fr;
  }
  .mj-price-preview {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }
  .mj-checklist {
    grid-template-columns: 1fr;
  }
  .mj-checklist li:nth-child(odd) {
    border-right: 0;
  }
  .mj-toc ol,
  .mj-toc-inline ol {
    display: block;
  }
  .mj-toc li + li {
    margin-top: 14px;
  }
  .mj-institution-bands > section:nth-child(even) {
    margin-left: 0;
  }
  .mj-institution-grid > section,
  .mj-institution-bands > section {
    padding: 24px;
  }
  .mj-institution-timeline {
    padding-left: 22px;
  }
  .mj-form-panel {
    padding: 24px;
  }
  .mj-pricing-bands .mj-offer,
  .mj-pricing-details .mj-offer {
    display: flex;
    flex-direction: column;
  }
  .mj-pricing-details summary {
    flex-direction: column;
    gap: 10px;
  }
  .mj-pricing-details .mj-offer {
    padding: 12px 0;
  }
  .mj-pricing-feature .mj-offer:first-child {
    grid-column: auto;
  }
  .mj-actions {
    gap: 16px;
  }
  .mj-page-title {
    padding-bottom: 30px;
  }
  .mj-prose h2 {
    font-size: 27px;
  }
  .mj-reading-panel {
    padding: 22px;
  }
  .mj-hero-dossier .mj-hero-copy {
    padding-left: 20px;
  }
  .mj-photo figcaption {
    font-size: 13px;
  }
  .mj-section-head h2 {
    max-width: 100%;
  }
  .mj-hero-note {
    padding: 22px;
  }
}
.mj-mobile-pricing {
  display: none;
}
@media (max-width: 900px) {
  .mj-rail .mj-photo {
    display: block;
  }
  .mj-rail .mj-photo img {
    max-height: 420px;
  }
}
@media (max-width: 640px) {
  .mj-table-scroll {
    display: none;
  }
  .mj-mobile-pricing {
    display: grid;
    gap: 20px;
    margin-block: 32px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
    animation: none !important;
  }
}
.mj-hero-dossier .mj-hero-grid {
  grid-template-columns: 1.3fr 1fr;
}
.mj-cards .mj-story {
  border-radius: 6px;
}
.mj-cards .mj-story-copy {
  border-top: 1px solid var(--line);
}
.mj-section-head {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
}
.mj-note {
  border-top: 5px solid var(--ink);
}
.mj-footer .mj-brand {
  font-family: Display, serif;
}
@media (max-width: 900px) {
  .mj-hero-grid,
  .mj-hero-first .mj-hero-copy,
  .mj-hero-dossier .mj-hero-grid {
    grid-template-columns: 1fr;
  }
  .mj-cards {
    grid-template-columns: 1fr;
  }
  .mj-cards .mj-story:first-child {
    grid-row: auto;
  }
  .mj-cards .mj-story:not(:first-child),
  .mj-cards .mj-story {
    display: block;
  }
  .mj-cards .mj-story .mj-photo {
    order: initial;
  }
  .mj-cards .mj-story .mj-photo img {
    height: auto;
    max-height: 350px;
  }
  .mj-section-head {
    display: block;
  }
  .mj-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .mj-footer-brand {
    grid-column: 1/-1;
  }
}
@media (max-width: 640px) {
  .mj-footer-grid {
    grid-template-columns: 1fr;
  }
  .mj-photo-pair {
    grid-template-columns: 1fr;
  }
  .mj-masthead .mj-header-row {
    justify-content: space-between;
  }
  .mj-hero-center h1 {
    font-size: 39px;
  }
}
