:root {
  --bg: #0a1022;
  --text: #f6f8ff;
  --muted: #aab4d6;
  --stroke: rgba(255, 255, 255, 0.16);
  --panel: rgba(255, 255, 255, 0.05);
  --brand: #31d5a6;
  --shadow: 0 18px 50px rgba(10, 16, 34, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  background: #080d1c;
}

body {
  font-family: "Space Grotesk", sans-serif;
  background:
    radial-gradient(circle at 10% 10%, #1a2f3a 0%, transparent 42%),
    radial-gradient(circle at 86% 18%, #1c3c42 0%, transparent 38%),
    linear-gradient(180deg, #080d1c 0%, #0b1228 100%);
  color: var(--text);
}

.page {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 0 0 2.4rem;
}

/* Match homepage header layout: full-width sticky header even on inner pages */
.page > .site-header {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

/* Header/nav/button styling is inherited from styles.css to stay identical with homepage. */

.hero {
  border: 1px solid var(--stroke);
  border-radius: 16px;
  background: var(--panel);
  padding: 1.1rem;
  margin-bottom: 1rem;
}

body.about-page .hero,
body.articles-page .hero {
  width: 100%;
  margin: 0 0 1rem;
  padding-top: 1.1rem;
  display: block;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: initial;
  order: initial;
}

.hero h1 {
  font-family: "Sora", sans-serif;
  margin: 0 0 0.45rem;
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
}

.hero p,
main p,
main li {
  color: var(--muted);
  line-height: 1.65;
}

main {
  display: block;
}

main section {
  border: 1px solid var(--stroke);
  border-radius: 14px;
  background: var(--panel);
  padding: 1rem;
  margin-bottom: 0.8rem;
}

a {
  color: #9fe9d3;
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.people-grid figure {
  margin: 0;
  display: grid;
  justify-items: center;
}

.people-grid img {
  width: 100%;
  max-width: 240px;
  height: 240px;
  display: block;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  object-fit: cover;
}

.people-grid figcaption {
  margin-top: 0.45rem;
  color: #d6e0ff;
  font-weight: 600;
}

h2 {
  font-family: "Sora", sans-serif;
  font-size: 1.16rem;
  margin: 0 0 0.5rem;
}

.article-teaser {
  border: 1px solid var(--stroke);
  border-radius: 16px;
  background: var(--panel);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
}

.article-teaser + .article-teaser {
  margin-top: 0.9rem;
}

.article-cover {
  display: block;
  height: 220px;
  overflow: hidden;
}

.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.article-cover img.levi-card-cover {
  object-position: center 36%;
}

.article-body {
  padding: 1rem;
  display: grid;
  gap: 0.6rem;
}

.article-body h2 {
  font-size: clamp(1.02rem, 1.55vw, 1.28rem);
  margin: 0;
  line-height: 1.3;
}

.article-body h2 a {
  color: #edf4ff;
  text-decoration: none;
}

.articles-page .hero {
  margin-bottom: 1.25rem;
}

.articles-list {
  display: block;
}

.articles-section + .articles-section {
  margin-top: 1.25rem;
}

.articles-section-title {
  margin: 0 0 0.75rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--stroke);
  border-radius: 14px;
  background:
    radial-gradient(circle at right top, rgba(49, 213, 166, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.04);
}

.articles-section-title h2 {
  margin: 0 0 0.25rem;
}

.articles-section-title p {
  margin: 0;
  color: #c7d2f2;
}

.articles-list .article-teaser {
  margin: 0;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.articles-list .article-teaser + .article-teaser {
  margin-top: 0.9rem;
}

.articles-list .article-teaser:hover {
  transform: translateY(-2px);
  border-color: rgba(49, 213, 166, 0.45);
  box-shadow: 0 16px 38px rgba(10, 16, 34, 0.3);
}

.articles-list .article-teaser:nth-child(-n + 2) {
  grid-column: auto;
}

.articles-list .article-teaser:nth-child(-n + 2) .article-cover img {
  min-height: 220px;
}

.articles-list .article-body .btn-small {
  width: auto;
  justify-self: start;
}

.long-article {
  border: 1px solid var(--stroke);
  border-radius: 16px;
  background: var(--panel);
  padding: 1.25rem;
  overflow: hidden;
  font-size: 1.04rem;
  max-width: 1020px;
  margin: 0 auto;
}

body.article-page .long-article {
  padding: 1.45rem var(--article-pad) 1.65rem;
  background:
    radial-gradient(circle at right top, rgba(117, 197, 255, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(18, 21, 29, 0.98), rgba(10, 12, 18, 0.98));
  box-shadow: 0 18px 40px rgba(8, 13, 28, 0.18);
}

body.article-page {
  --article-width: min(1020px, 100%);
  --article-pad: clamp(1rem, 2vw, 1.45rem);
}

body.article-page .page > .hero {
  width: var(--article-width);
  margin: 0 auto 1rem;
  padding: 1.05rem var(--article-pad) 1rem;
  background:
    radial-gradient(circle at left top, rgba(255, 179, 71, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(18, 22, 30, 0.98), rgba(10, 12, 18, 0.98));
}

body.article-page .page > .hero h1 {
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1.16;
  max-width: 28ch;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

body.article-page .page > .hero p {
  margin: 0.2rem 0 0;
  color: #b9c7eb;
  font-size: 0.92rem;
  font-weight: 600;
}

body.article-page main {
  display: grid;
  justify-items: center;
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0 0 0.5rem;
  align-items: center;
}

body.article-page .article-actions,
body.article-page .long-article {
  width: var(--article-width);
}

body.article-page .article-actions {
  margin-bottom: 0.8rem;
  padding: 0 var(--article-pad);
  box-sizing: border-box;
}

.article-actions .btn {
  min-width: 0;
  margin: 0;
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.25);
  color: #e9f0ff;
}

.btn-ghost:hover {
  box-shadow: 0 8px 24px rgba(10, 16, 34, 0.35);
}

.long-article-cover {
  width: min(31%, 300px);
  height: auto;
  min-height: 220px;
  max-height: 360px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  float: left;
  margin: 0.15rem 1.1rem 0.9rem 0;
}

.long-article-cover.is-show-cover {
  width: min(25%, 210px);
  min-height: 0;
  max-height: 260px;
}

.long-article p + p {
  margin-top: 0.95rem;
}

.long-article p {
  color: #d7e0fb;
  line-height: 1.82;
  max-width: 72ch;
}

body.article-page .long-article p {
  max-width: 66ch;
  line-height: 1.92;
}

body.article-page .long-article p + p {
  margin-top: 1.08rem;
}

.long-article h2,
.long-article h3 {
  margin: 1.45rem 0 0.65rem;
  max-width: 24ch;
  font-family: "Sora", sans-serif;
  color: #f3f7ff;
  line-height: 1.2;
}

body.article-page .long-article h2,
body.article-page .long-article h3 {
  margin: 2rem 0 0.8rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 22ch;
}

.long-article > p:first-of-type {
  color: #edf3ff;
  font-size: 1.08rem;
  line-height: 1.88;
}

body.article-page .long-article > p:first-of-type {
  max-width: 62ch;
  color: #eef4ff;
  font-size: 1.1rem;
}

body.article-page .long-article > p:first-of-type::first-letter {
  float: left;
  margin: 0.08rem 0.5rem 0 0;
  color: #ffe0b5;
  font-family: "Sora", sans-serif;
  font-size: 3.2rem;
  line-height: 0.88;
  font-weight: 800;
}

body.article-page .long-article strong {
  color: #fff1d8;
  font-weight: 700;
}

body.article-page .long-article em {
  color: #9fe9d3;
  font-style: normal;
  font-weight: 700;
}

.long-article::after {
  content: "";
  display: block;
  clear: both;
}

.article-inline-shot {
  float: right;
  width: min(34%, 260px);
  margin: 0.35rem 0 1rem 1.15rem;
  border: 1px solid var(--stroke);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  max-width: 100%;
  box-shadow: 0 14px 34px rgba(8, 13, 28, 0.24);
}

.article-inline-shot img {
  width: 100%;
  height: auto;
  display: block;
}

.article-inline-shot figcaption {
  padding: 0.7rem 0.85rem 0.85rem;
  color: #b9c7eb;
  font-size: 0.88rem;
  line-height: 1.5;
}

.notice {
  border-left: 3px solid var(--brand);
  padding-left: 0.7rem;
  max-width: none;
  background: rgba(255, 255, 255, 0.03);
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
  padding-right: 0.7rem;
  border-radius: 0 12px 12px 0;
}

.profiles-stack {
  display: grid;
  gap: 0.9rem;
}

.profile-row {
  border: 1px solid var(--stroke);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.85rem;
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 0.9rem;
  align-items: start;
}

.profile-photo {
  width: 100%;
  height: 270px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  object-fit: cover;
  display: block;
}

.profile-copy {
  display: grid;
  gap: 0.45rem;
}

.profile-copy h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.16rem;
}

.profile-copy p {
  margin: 0;
  color: #c8d3f6;
}

.profile-copy .btn-small {
  width: auto;
}

.about-hero {
  display: grid;
  gap: 0.7rem;
}

.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.15rem;
}

.about-highlights span {
  border: 1px solid rgba(49, 213, 166, 0.4);
  background: rgba(49, 213, 166, 0.1);
  color: #cbf7eb;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.84rem;
  font-weight: 600;
}

.about-values,
.about-cta-panel {
  background:
    radial-gradient(circle at 90% 0%, rgba(49, 213, 166, 0.14), transparent 42%),
    var(--panel);
}

.livestream-shell {
  display: grid;
  gap: 1.35rem;
}

.livestream-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1.4rem;
  align-items: start;
  padding: 1.7rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 179, 71, 0.2), transparent 30%),
    radial-gradient(circle at 92% 16%, rgba(49, 213, 166, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(18, 21, 28, 0.98), rgba(9, 12, 18, 0.98));
  box-shadow: 0 24px 60px rgba(4, 9, 18, 0.28);
}

.livestream-page-copy {
  display: grid;
  gap: 1.2rem;
  align-content: start;
}

.livestream-page-copy p {
  margin: 0;
}

.livestream-page-copy h1 {
  margin: 0;
  font-size: clamp(2.8rem, 5.8vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  max-width: 13ch;
}

.livestream-lead {
  max-width: 58ch;
  font-size: 1.04rem;
  line-height: 1.72;
  color: #d9e3f3;
}

.livestream-highlights {
  margin-top: 0.35rem;
}

.livestream-page-visuals {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.1rem;
  align-items: stretch;
}

.livestream-hero-statline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 0.45rem;
}

.livestream-stat-chip {
  display: grid;
  gap: 0.22rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.livestream-stat-value {
  font-size: 1.28rem;
  font-weight: 800;
  color: #fff4e3;
  line-height: 1.05;
}

.livestream-stat-label {
  color: #b7c4d8;
  font-size: 0.84rem;
  line-height: 1.45;
}

.livestream-hero-payout {
  min-height: 100%;
}

.livestream-hero-payout .live-earnings-metrics {
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

.livestream-hero-payout .live-earnings-metrics div {
  padding: 1rem 1.05rem;
}

.livestream-hero-payout .live-metric-label {
  margin-bottom: 0.28rem;
}

.livestream-hero-payout .live-earnings-metrics strong {
  display: block;
  font-size: 1.5rem;
}

.livestream-screen-card {
  display: grid;
  gap: 1rem;
  padding: 1.1rem;
  background:
    radial-gradient(circle at center top, rgba(255, 179, 71, 0.16), transparent 40%),
    linear-gradient(180deg, rgba(15, 18, 26, 0.98), rgba(7, 10, 16, 0.98));
}

.livestream-screen-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
}

.livestream-screen-head span {
  color: #b4c1d6;
  font-size: 0.82rem;
  text-align: right;
  line-height: 1.4;
}

.livestream-screen-shell {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 0.45rem 0.2rem 0.7rem;
}

.livestream-floating-note {
  position: absolute;
  z-index: 2;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(7, 14, 28, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #f7efe3;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 14px 30px rgba(6, 9, 16, 0.28);
}

.livestream-floating-note.note-a {
  top: 12%;
  right: -2%;
}

.livestream-floating-note.note-b {
  left: 0;
  bottom: 24%;
}

.livestream-floating-note.note-c {
  right: 4%;
  bottom: 8%;
}

.livestream-value-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.livestream-value-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background:
    radial-gradient(circle at right top, rgba(255, 179, 71, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.04);
  padding: 1.3rem;
}

.livestream-value-card h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  line-height: 1.14;
}

.livestream-value-card p:last-child {
  margin: 0;
  color: #d4deef;
  line-height: 1.68;
}

.livestream-money-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 1.1rem;
  align-items: stretch;
}

.livestream-money-story {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at left top, rgba(255, 179, 71, 0.15), transparent 30%),
    linear-gradient(180deg, rgba(17, 20, 28, 0.98), rgba(9, 12, 18, 0.98));
  padding: 1.45rem;
}

.livestream-money-story h2 {
  margin: 0.3rem 0 0.9rem;
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  line-height: 1;
  max-width: 15ch;
}

.livestream-money-story > p {
  margin: 0;
  color: #d6dfef;
  line-height: 1.72;
}

.livestream-money-visuals {
  display: grid;
  gap: 1rem;
}

.livestream-split-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.1rem;
}

.livestream-split-list div {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  padding: 1.05rem 1.1rem;
}

.livestream-split-list strong {
  display: block;
  margin: 0.18rem 0 0.28rem;
  color: #fff2da;
  font-size: 1.1rem;
}

.livestream-split-list p {
  margin: 0;
  color: #c5d2e8;
  line-height: 1.65;
}

.livestream-photo-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: #12161c;
}

.livestream-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

.livestream-photo-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.1rem 1.15rem;
  background:
    linear-gradient(180deg, rgba(7, 10, 14, 0), rgba(7, 10, 14, 0.9) 55%, rgba(7, 10, 14, 0.98));
}

.livestream-photo-overlay h3 {
  margin: 0;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  line-height: 1.14;
  max-width: 20ch;
}

.livestream-detail-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at right top, rgba(49, 213, 166, 0.09), transparent 28%),
    rgba(255, 255, 255, 0.04);
  padding: 1.15rem 1.2rem;
}

.livestream-detail-list {
  margin-top: 0.4rem;
}

.livestream-detail-list li {
  color: #d4def0;
}

.livestream-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.livestream-feature-card {
  border-radius: 22px;
  background:
    radial-gradient(circle at right top, rgba(255, 179, 71, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.04);
}

.livestream-feature-card h3 {
  margin-top: 0;
}

.livestream-feature-card p:last-child {
  margin-bottom: 0;
}

.livestream-story-band {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1.1rem;
  align-items: start;
  background:
    radial-gradient(circle at left top, rgba(255, 179, 71, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(16, 20, 29, 0.98), rgba(8, 11, 17, 0.98));
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.35rem;
}

.livestream-story-copy {
  display: grid;
  gap: 0.75rem;
}

.livestream-story-copy p {
  margin: 0;
}

.livestream-community-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.livestream-community-grid .community-item {
  height: 100%;
  margin: 0;
  padding: 1.15rem;
}

.livestream-faq .section-head {
  margin-bottom: 0.85rem;
}

.livestream-faq {
  width: 100%;
  margin: 0 0 1rem;
}

.livestream-cta {
  background:
    radial-gradient(circle at right top, rgba(255, 179, 71, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(19, 23, 31, 0.98), rgba(10, 13, 18, 0.98));
}

@media (max-width: 960px) {
  .livestream-page-hero,
  .livestream-value-band,
  .livestream-money-grid,
  .livestream-story-band {
    grid-template-columns: 1fr;
  }

  .livestream-page-visuals,
  .livestream-feature-grid,
  .livestream-hero-statline {
    grid-template-columns: 1fr;
  }

  .livestream-floating-note.note-a,
  .livestream-floating-note.note-b,
  .livestream-floating-note.note-c {
    position: static;
  }

  .livestream-screen-shell {
    gap: 0.8rem;
    padding-bottom: 0.2rem;
  }

  .livestream-screen-head {
    display: grid;
  }
}

.founder-grid {
  align-items: stretch;
}

.founder-card {
  border: 1px solid var(--stroke);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: start;
  gap: 0.32rem;
  height: 100%;
}

.founder-card .btn-small {
  width: auto;
  justify-self: center;
  margin-top: 0.35rem;
}

.founder-card p {
  margin: 0;
  width: 100%;
  color: #c8d3f6;
  font-size: 0.95rem;
}

.founder-card p:last-child {
  margin-top: auto;
  padding-top: 0.45rem;
}

@media (max-width: 680px) {
  .page {
    width: min(1120px, calc(100% - 1.25rem));
  }

  .nav .nav-legal {
    opacity: 0.62;
  }

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

  .profile-row {
    grid-template-columns: 1fr;
    gap: 0.7rem;
    padding: 0.75rem;
  }

  .livestream-page-hero,
  .livestream-value-band,
  .livestream-money-grid,
  .livestream-story-band {
    grid-template-columns: 1fr;
  }

  .livestream-page-visuals,
  .livestream-feature-grid,
  .livestream-community-grid,
  .livestream-hero-statline {
    grid-template-columns: 1fr;
  }

  .livestream-page-copy h1 {
    max-width: none;
    font-size: clamp(2.25rem, 12vw, 3.4rem);
  }

  .livestream-money-story h2 {
    max-width: none;
  }

  .livestream-photo-card img {
    min-height: 220px;
  }

  .profile-photo {
    height: 220px;
  }

  .about-highlights {
    gap: 0.45rem;
  }

  .about-highlights span {
    font-size: 0.78rem;
    padding: 0.3rem 0.58rem;
  }

  .people-grid img {
    max-width: 200px;
    height: 200px;
  }

  .article-teaser {
    grid-template-columns: 1fr;
  }

  .long-article {
    overflow: visible;
    padding: 1rem;
  }

  .long-article-cover {
    width: 100%;
    min-height: 180px;
    max-height: 320px;
    float: none;
    margin: 0 0 0.85rem 0;
  }

  .article-inline-shot {
    float: none;
    width: 100%;
    margin: 0.85rem 0;
  }

  .long-article p,
  .long-article h2,
  .long-article h3 {
    max-width: none;
  }
}

@media (max-width: 520px) {
  .btn-small {
    width: 100%;
    justify-content: center;
  }

  .article-actions {
    flex-direction: row;
    gap: 0.5rem;
  }

  .article-actions .btn-small {
    width: auto;
    flex: 1 1 calc(50% - 0.25rem);
    justify-content: center;
  }

  .hero {
    padding: 0.85rem;
  }

  main section,
  .article-body,
  .long-article {
    padding: 0.85rem;
  }

  .article-cover img {
    min-height: 180px;
  }

  .article-cover {
    height: 180px;
  }
}

@media (max-width: 400px) {
  .page {
    width: min(1120px, calc(100% - 0.9rem));
  }

  .nav a:not(.btn):not(.nav-legal),
  .nav .nav-legal {
    font-size: 0.79rem;
    padding: 0.3rem 0.58rem;
  }

  .people-grid img {
    max-width: 170px;
    height: 170px;
  }

  .article-body h2 {
    font-size: 1.05rem;
  }
}
