:root {
  --ink: #10243c;
  --ink-soft: #42546a;
  --navy: #0c2948;
  --navy-deep: #071b30;
  --blue: #2464c4;
  --blue-soft: #e9f0fb;
  --coral: #e86143;
  --cream: #f4f1ea;
  --paper: #fbfaf7;
  --white: #ffffff;
  --line: #dce2e8;
  --line-dark: rgba(255, 255, 255, 0.18);
  --shadow: 0 22px 60px rgba(14, 39, 69, 0.1);
  --radius: 18px;
  --radius-lg: 28px;
  --shell: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

button,
input {
  font: inherit;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.3rem);
}

h2 {
  font-size: clamp(2.2rem, 4.2vw, 4.2rem);
}

h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
}

p {
  margin: 0 0 1.15em;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-150%);
}

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

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(251, 250, 247, 0.93);
  border-bottom: 1px solid rgba(16, 36, 60, 0.09);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  display: flex;
  width: var(--shell);
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
}

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

.brand-logo {
  width: 220px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--coral);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.site-nav a.active {
  color: var(--ink);
}

.menu-button {
  display: none;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.84rem;
  font-weight: 750;
}

.eyebrow,
.panel-kicker,
.footer-label,
.topic-number {
  display: inline-block;
  color: var(--coral);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #9dc4ff;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
  gap: clamp(40px, 7vw, 90px);
  align-items: center;
  padding-block: clamp(78px, 10vw, 145px);
}

.hero-copy h1 {
  max-width: 850px;
  margin: 16px 0 28px;
}

.hero-intro {
  max-width: 760px;
  margin-bottom: 32px;
  color: var(--ink-soft);
  font-size: clamp(1.1rem, 1.7vw, 1.38rem);
  line-height: 1.6;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 30px rgba(36, 100, 196, 0.22);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #174f9f;
}

.button.secondary {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: var(--white);
  box-shadow: var(--shadow);
}

.text-link,
.light-link {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible,
.light-link:hover,
.light-link:focus-visible {
  text-decoration: underline;
}

.focus-card {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  padding: clamp(30px, 4vw, 48px);
  color: #d9e7f7;
  background: var(--navy);
  border-radius: var(--radius-lg);
  box-shadow: 0 35px 80px rgba(7, 27, 48, 0.22);
}

.focus-card::after {
  position: absolute;
  right: -90px;
  bottom: -140px;
  width: 320px;
  height: 320px;
  background: rgba(36, 100, 196, 0.38);
  border-radius: 50%;
  content: "";
}

.focus-mark {
  position: relative;
  z-index: 1;
  display: grid;
  width: 90px;
  height: 90px;
  place-items: center;
  margin: 30px 0 42px;
  color: var(--navy);
  background: var(--white);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.focus-card h2 {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.focus-card p,
.focus-card .light-link {
  position: relative;
  z-index: 1;
}

.focus-card p {
  color: #c4d3e4;
}

.light-link {
  color: var(--white);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: var(--shell);
  margin: 0 auto;
  padding-block: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-strip div {
  display: grid;
  gap: 2px;
  padding: 6px 28px;
  border-right: 1px solid var(--line);
}

.proof-strip div:first-child {
  padding-left: 0;
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.proof-strip span {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.dsm-spotlight,
.project-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(45px, 9vw, 110px);
  align-items: center;
  padding-block: clamp(90px, 12vw, 160px);
}

.section-heading h2,
.project-copy h2 {
  margin: 14px 0 24px;
}

.section-heading p,
.project-copy p {
  color: var(--ink-soft);
  font-size: 1.07rem;
}

.section-heading.narrow {
  max-width: 720px;
}

.quiet {
  padding-left: 18px;
  border-left: 3px solid var(--coral);
}

.feature-panel {
  padding: clamp(30px, 5vw, 56px);
  background: var(--cream);
  border-radius: var(--radius-lg);
}

.feature-panel ul {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 24px 0;
  list-style: none;
}

.feature-panel li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(16, 36, 60, 0.14);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
}

.feature-panel li::before {
  margin-right: 12px;
  color: var(--blue);
  content: "✓";
  font-family: sans-serif;
  font-weight: 800;
}

.feature-panel p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.writing-section,
.topics-section,
.principles-section,
.related-section {
  padding-block: clamp(80px, 10vw, 135px);
}

.writing-section {
  border-top: 1px solid var(--line);
}

.row-heading {
  display: flex;
  gap: 30px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 44px;
}

.row-heading h2 {
  margin-bottom: 0;
}

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

.home-grid .article-card.featured {
  grid-column: span 2;
  grid-row: span 2;
}

.article-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.article-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.card-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--blue-soft);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.article-card:hover .card-image img {
  transform: scale(1.025);
}

.card-body {
  padding: 24px;
}

.article-card.featured .card-body {
  padding: clamp(26px, 4vw, 42px);
}

.card-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.card-meta time {
  flex: 0 0 auto;
  color: var(--ink-soft);
  font-size: 0.74rem;
}

.topic-pill {
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.card-body h3 {
  margin-bottom: 13px;
}

.article-card.featured h3 {
  font-size: clamp(1.8rem, 3vw, 3.2rem);
}

.card-body h3 a {
  text-decoration: none;
}

.card-body p {
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.6;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 46px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.topic-card {
  display: block;
  min-height: 265px;
  padding: 34px;
  background: var(--paper);
  text-decoration: none;
  transition: background 160ms ease;
}

.topic-card:hover,
.topic-card:focus-visible {
  background: var(--white);
}

.topic-card h3 {
  margin: 18px 0 14px;
}

.topic-card p {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.about-band {
  color: var(--white);
  background: var(--navy-deep);
}

.about-band-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(50px, 10vw, 140px);
  align-items: center;
  padding-block: clamp(80px, 11vw, 145px);
}

.about-band h2,
.cta-section h2 {
  margin-top: 16px;
  color: var(--white);
}

.about-band p {
  color: #c8d7e6;
  font-size: 1.08rem;
}

.light-button {
  color: var(--navy);
  background: var(--white);
}

.page-hero {
  padding-block: clamp(80px, 11vw, 150px);
}

.compact-hero {
  max-width: 1040px;
  margin-inline: auto;
}

.compact-hero h1,
.archive-hero h1 {
  max-width: 980px;
  margin: 18px 0 30px;
  font-size: clamp(3.1rem, 7vw, 6.6rem);
}

.project-feature {
  margin-bottom: clamp(60px, 8vw, 100px);
  padding: clamp(42px, 7vw, 80px);
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius-lg);
}

.project-copy h2 {
  color: var(--white);
}

.project-copy p {
  color: #c7d6e7;
}

.project-copy .text-link {
  color: var(--white);
}

.project-facts {
  display: grid;
  gap: 1px;
  overflow: hidden;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
}

.project-facts div {
  display: grid;
  padding: 26px;
  background: rgba(255, 255, 255, 0.06);
}

.project-facts strong {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
}

.project-facts span {
  color: #b8cbe0;
  font-size: 0.82rem;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 45px;
}

.principle {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.principle-index {
  display: block;
  margin-bottom: 40px;
  color: var(--coral);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.principle h3 {
  margin-bottom: 14px;
}

.principle p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.cta-section {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  margin-block: 40px 120px;
  padding: clamp(38px, 6vw, 70px);
  color: var(--white);
  background: var(--blue);
  border-radius: var(--radius-lg);
}

.cta-section h2 {
  max-width: 800px;
  font-size: clamp(2rem, 3.6vw, 3.5rem);
}

.archive-hero {
  max-width: 1000px;
}

.archive-tools {
  display: grid;
  gap: 24px;
  padding-bottom: 56px;
}

.search-box {
  display: grid;
  max-width: 700px;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.search-box input {
  width: 100%;
  padding: 17px 20px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 1rem;
  outline: none;
  text-transform: none;
}

.search-box input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(36, 100, 196, 0.12);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.filter-button {
  padding: 9px 14px;
  color: var(--ink-soft);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 750;
}

.filter-button:hover,
.filter-button:focus-visible,
.filter-button.active {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.archive-list {
  padding-bottom: clamp(90px, 12vw, 160px);
}

.results-count {
  margin-bottom: 22px;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

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

.no-results {
  padding: 50px 0;
  text-align: center;
}

.article-header {
  max-width: 960px;
  padding-block: clamp(75px, 10vw, 130px) 54px;
  text-align: center;
}

.article-taxonomy {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.category-trail {
  color: var(--ink-soft);
  font-size: 0.74rem;
}

.article-header h1 {
  margin: 22px auto 24px;
  font-size: clamp(3rem, 6.4vw, 6.5rem);
}

.article-deck {
  max-width: 800px;
  margin-inline: auto;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.5vw, 1.26rem);
}

.article-byline {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 28px;
  color: var(--ink-soft);
  font-size: 0.79rem;
}

.article-byline span + time::before {
  margin-right: 14px;
  color: var(--line);
  content: "•";
}

.article-hero-image {
  overflow: hidden;
  width: min(1080px, calc(100vw - 40px));
  aspect-ratio: 16 / 9;
  margin: 0 auto clamp(55px, 8vw, 90px);
  background: var(--blue-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.article-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-shell {
  width: min(760px, calc(100vw - 40px));
  margin-inline: auto;
}

.prose {
  color: #24384f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.08rem, 1.6vw, 1.24rem);
  line-height: 1.8;
}

.prose > :first-child {
  margin-top: 0;
}

.prose p,
.prose ul,
.prose ol,
.prose blockquote,
.prose figure,
.prose table,
.prose pre,
.prose .wp-block-embed {
  margin-top: 0;
  margin-bottom: 1.45em;
}

.prose h2 {
  margin: 1.7em 0 0.55em;
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.prose h3 {
  margin: 1.55em 0 0.55em;
  font-size: clamp(1.55rem, 2.8vw, 2.2rem);
}

.prose h4 {
  margin: 1.4em 0 0.5em;
  font-size: 1.25rem;
}

.prose a {
  color: #1b5ab1;
}

.prose ul,
.prose ol {
  padding-left: 1.3em;
}

.prose li {
  margin-bottom: 0.45em;
}

.prose blockquote {
  padding: 4px 0 4px 26px;
  color: var(--ink);
  border-left: 4px solid var(--coral);
  font-size: 1.17em;
  font-style: italic;
}

.prose img {
  height: auto;
  border-radius: 12px;
}

.prose figure {
  max-width: 100%;
  margin-right: 0;
  margin-left: 0;
}

.prose figcaption,
.wp-element-caption {
  margin-top: 8px;
  color: var(--ink-soft);
  font-family: Inter, ui-sans-serif, sans-serif;
  font-size: 0.72rem;
  text-align: center;
}

.prose iframe,
.prose video {
  max-width: 100%;
}

.prose .wp-block-embed__wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%;
}

.prose .wp-block-embed__wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.prose pre,
.prose code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.86em;
}

.prose pre {
  overflow-x: auto;
  padding: 20px;
  color: #dfeaf7;
  background: var(--navy-deep);
  border-radius: 12px;
}

.prose table {
  display: block;
  overflow-x: auto;
  width: 100%;
  border-collapse: collapse;
  font-family: Inter, ui-sans-serif, sans-serif;
  font-size: 0.85rem;
}

.prose th,
.prose td {
  padding: 10px 12px;
  border: 1px solid var(--line);
  text-align: left;
}

.prose .wp-block-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.tag-list a {
  padding: 7px 11px;
  color: var(--ink-soft);
  background: var(--cream);
  border-radius: 999px;
  font-size: 0.76rem;
  text-decoration: none;
}

.related-section {
  margin-top: clamp(80px, 11vw, 145px);
  border-top: 1px solid var(--line);
}

.about-story {
  padding-bottom: clamp(80px, 10vw, 130px);
}

.about-facts {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  margin-bottom: 120px;
  padding: clamp(35px, 6vw, 70px);
  background: var(--cream);
  border-radius: var(--radius-lg);
}

.about-facts h2 {
  margin-top: 14px;
  font-size: clamp(2.1rem, 3.5vw, 3.5rem);
}

.about-facts ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.about-facts li {
  display: grid;
  grid-template-columns: 135px 1fr;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(16, 36, 60, 0.14);
}

.about-facts li:last-child {
  border-bottom: 0;
}

.about-facts strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
}

.about-facts span {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.not-found {
  min-height: 65vh;
}

.site-footer {
  color: #c8d7e6;
  background: var(--navy-deep);
}

.footer-grid,
.footer-bottom {
  width: var(--shell);
  margin-inline: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  padding-block: 65px;
}

.footer-grid > div {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-grid p {
  max-width: 420px;
  margin: 0;
  color: #9fb2c6;
  font-size: 0.86rem;
}

.footer-grid a {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.footer-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}

.footer-label {
  color: #829ab3;
}

.footer-bottom {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  padding: 22px 0 28px;
  border-top: 1px solid var(--line-dark);
  color: #829ab3;
  font-size: 0.72rem;
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid rgba(36, 100, 196, 0.42);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .hero,
  .dsm-spotlight,
  .project-feature,
  .about-band-inner,
  .about-facts {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 50px;
  }

  .focus-card {
    min-height: auto;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip div,
  .proof-strip div:first-child {
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip div:last-child {
    border-bottom: 0;
  }

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

  .topic-grid,
  .principles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-facts {
    gap: 35px;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: min(100% - 28px, 1180px);
  }

  body {
    font-size: 16px;
  }

  .nav-wrap {
    min-height: 72px;
  }

  .brand-logo {
    width: min(188px, 56vw);
  }

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

  .site-nav {
    position: absolute;
    top: 72px;
    right: 14px;
    left: 14px;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a {
    padding: 12px;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-block: 60px 80px;
  }

  h1,
  .compact-hero h1,
  .archive-hero h1,
  .article-header h1 {
    font-size: clamp(2.75rem, 13vw, 4.4rem);
  }

  .focus-card {
    border-radius: 20px;
  }

  .row-heading,
  .cta-section {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-grid,
  .archive-grid,
  .topic-grid,
  .principles-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .home-grid .article-card.featured {
    grid-column: auto;
    grid-row: auto;
  }

  .topic-grid {
    gap: 1px;
  }

  .topic-card {
    min-height: auto;
  }

  .article-byline {
    flex-direction: column;
    gap: 3px;
  }

  .article-byline span + time::before {
    display: none;
  }

  .article-hero-image {
    width: calc(100vw - 20px);
    border-radius: 14px;
  }

  .prose .wp-block-columns {
    grid-template-columns: 1fr;
  }

  .about-facts li {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .footer-grid {
    gap: 35px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}
