:root {
  --ink: #15171c;
  --navy: #071b5e;
  --blue: #1649b8;
  --orange: #f47a18;
  --coral: #ef4e46;
  --teal: #087f78;
  --lemon: #f4d64e;
  --paper: #fffdf8;
  --mist: #eef4f3;
  --line: #d7dadd;
  --muted: #626873;
  --white: #ffffff;
  --serif: "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --sans: Aptos, "Gill Sans", "Trebuchet MS", Candara, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  max-width: 100%;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: 0;
  overflow-x: clip;
}

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

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

a:hover {
  color: var(--blue);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-140%);
}

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-top: 5px solid var(--orange);
  border-bottom: 1px solid rgba(21, 23, 28, 0.14);
  background: rgba(255, 253, 248, 0.96);
  backdrop-filter: blur(12px);
}

.header-inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  flex: 0 1 266px;
  text-decoration: none;
}

.brand img {
  width: 266px;
}

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

.site-nav a {
  padding: 10px 12px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 760;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
  background: var(--navy);
  outline: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 820;
  line-height: 1.3;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h1 {
  font-size: 64px;
  line-height: 1.02;
}

h2 {
  font-size: 40px;
  line-height: 1.12;
}

h3 {
  font-size: 25px;
  line-height: 1.2;
}

p {
  margin-top: 0;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 2px solid currentColor;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

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

.button.primary:hover {
  color: var(--navy);
  background: transparent;
}

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

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

.text-link {
  font-size: 14px;
  font-weight: 800;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 3px;
}

.home-hero {
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  place-items: center;
  padding: 72px max(30px, calc((100vw - 1180px) / 2));
  background-color: var(--white);
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 26%, rgba(255, 255, 255, 0.84) 47%, rgba(255, 255, 255, 0.98) 100%), url("/wp-content/uploads/2014/02/Slider-3-background1.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
  overflow: hidden;
}

.hero-copy {
  width: min(600px, 52%);
  max-width: 100%;
  min-width: 0;
  margin-left: auto;
  animation: reveal-copy 640ms ease-out both;
}

.hero-copy h1 {
  margin-bottom: 20px;
  max-width: 650px;
}

.hero-deck {
  max-width: 600px;
  color: #343841;
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.55;
}

.hero-actions,
.don-copy > div {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 30px;
}

.ticker {
  min-height: 52px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  color: var(--navy);
  border-top: 1px solid var(--navy);
  border-bottom: 1px solid var(--navy);
  background: var(--lemon);
}

.ticker span {
  padding: 11px 18px;
  border-right: 1px solid var(--navy);
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  text-align: center;
}

.ticker span:last-child {
  border-right: 0;
}

.featured-stories {
  padding-block: 110px;
}

.section-intro {
  max-width: 760px;
  margin-bottom: 52px;
}

.section-intro p:last-child {
  max-width: 680px;
  color: var(--muted);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 0;
  border-top: 4px solid var(--navy);
  border-bottom: 1px solid var(--line);
}

.story-grid article {
  min-width: 0;
  min-height: 240px;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.story-grid article:nth-child(3) {
  border-bottom: 0;
}

.story-grid article > span,
.story-index article > span,
.notebook-grid article > span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.story-grid .feature-story {
  grid-row: span 2;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  background: var(--navy);
}

.story-grid .feature-story h3,
.story-grid .feature-story a {
  color: var(--white);
}

.story-grid .feature-story h3 {
  max-width: 480px;
  margin: 14px 0;
  font-size: 52px;
}

.story-grid h3 a {
  text-decoration: none;
}

.rachie-band {
  color: var(--white);
  background: var(--teal);
}

.rachie-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  padding-block: 100px;
}

.rachie-layout h2,
.rachie-layout .eyebrow {
  color: var(--white);
}

.caption-stack {
  display: grid;
  gap: 14px;
}

.caption-stack span {
  padding: 24px 28px;
  color: var(--navy);
  border: 2px solid var(--navy);
  border-radius: 6px;
  background: var(--lemon);
  box-shadow: 8px 8px 0 var(--navy);
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
}

.caption-stack span:nth-child(2) {
  color: var(--white);
  background: var(--coral);
  transform: translateX(-24px);
}

@keyframes reveal-copy {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.notebook {
  padding-block: 110px;
}

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

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

.notebook-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--navy);
  border-bottom: 1px solid var(--navy);
}

.notebook-grid article {
  min-width: 0;
  min-height: 315px;
  padding: 34px 28px;
  border-right: 1px solid var(--navy);
}

.notebook-grid article:last-child {
  border-right: 0;
}

.notebook-grid article > span {
  display: block;
  margin-bottom: 54px;
  font-family: var(--serif);
  font-size: 42px;
}

.notebook-grid h3 a {
  text-decoration: none;
}

.don-band {
  min-height: 500px;
  display: flex;
  align-items: center;
  padding: 70px max(30px, calc((100vw - 1180px) / 2));
  background-color: var(--mist);
  background-image: linear-gradient(90deg, rgba(238, 244, 243, 0.98) 0%, rgba(238, 244, 243, 0.94) 45%, rgba(238, 244, 243, 0.12) 72%), url("/wp-content/uploads/2014/02/Slider-1-background1.jpg");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
}

.don-copy {
  max-width: 590px;
}

.page-hero {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 80px max(30px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background: var(--navy);
}

.page-hero h1,
.page-hero h2,
.page-hero .eyebrow {
  color: var(--white);
}

.page-hero h1 {
  max-width: 860px;
  margin-bottom: 16px;
}

.page-hero > p:last-child,
.page-hero > div > p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: 22px;
}

.page-hero.compact {
  min-height: 350px;
  background: linear-gradient(115deg, var(--navy) 0 68%, var(--orange) 68% 70%, var(--teal) 70% 100%);
}

.rachie-hero {
  min-height: 500px;
  color: var(--navy);
  border-bottom: 14px solid var(--coral);
  background: var(--lemon);
}

.rachie-hero h1,
.rachie-hero .eyebrow {
  color: var(--navy);
}

.faces-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-block: 90px;
}

.faces-grid article {
  min-height: 250px;
  padding: 28px;
  border: 2px solid var(--navy);
  border-radius: 6px;
  box-shadow: 7px 7px 0 var(--navy);
}

.faces-grid article:nth-child(3n + 1) {
  background: #dcecfb;
}

.faces-grid article:nth-child(3n + 2) {
  background: #ffe1d7;
}

.faces-grid article:nth-child(3n) {
  background: #dcefe6;
}

.faces-grid article span {
  color: var(--coral);
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 700;
}

.faces-grid article h2 {
  margin: 38px 0 8px;
  font-size: 25px;
}

.rachie-after {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 30px 70px;
  align-items: start;
  padding-block: 40px 100px;
}

.rachie-after .text-link {
  grid-column: 2;
}

.stories-hero {
  background: linear-gradient(118deg, var(--navy) 0 60%, var(--teal) 60% 77%, var(--orange) 77% 100%);
}

.story-index {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-block: 90px;
  border-top: 4px solid var(--navy);
}

.story-index article {
  min-width: 0;
  min-height: 290px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.story-index article:nth-child(even) {
  border-right: 0;
}

.story-index article.new-note {
  background: var(--mist);
}

.story-index h2 {
  margin: 20px 0 14px;
  font-size: 31px;
}

.story-index h2 a {
  text-decoration: none;
}

.story-index time {
  color: var(--muted);
  font-size: 13px;
}

.portrait-hero {
  min-height: 530px;
  justify-content: center;
  color: var(--ink);
  background-color: var(--white);
  background-image: linear-gradient(90deg, rgba(255,255,255,1) 0 43%, rgba(255,255,255,0.2) 70%), url("/wp-content/uploads/2014/02/Slider-1-background1.jpg");
  background-position: right center;
  background-size: cover;
  background-repeat: no-repeat;
}

.portrait-hero h1,
.portrait-hero .eyebrow {
  color: var(--navy);
}

.portrait-hero > div {
  max-width: 610px;
}

.split-prose,
.business-copy {
  display: grid;
  grid-template-columns: 280px minmax(0, 760px);
  gap: 80px;
  align-items: start;
  padding-block: 90px;
}

.split-prose > aside {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 10px;
  padding-top: 18px;
  color: var(--navy);
  border-top: 5px solid var(--orange);
}

.split-prose > aside strong {
  font-family: var(--serif);
  font-size: 26px;
}

.prose {
  max-width: 760px;
  font-size: 18px;
  line-height: 1.78;
}

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

.prose h2,
.prose h3 {
  margin-top: 52px;
  margin-bottom: 14px;
}

.prose h2 {
  font-size: 34px;
}

.prose h3 {
  font-size: 25px;
}

.prose .lead,
.prose > p:first-child {
  color: #272c35;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.55;
}

.prose blockquote,
.pull-quote {
  margin: 42px 0;
  padding: 8px 0 8px 28px;
  color: var(--navy);
  border-left: 6px solid var(--orange);
  font-family: var(--serif);
  font-size: 25px;
  font-style: italic;
  line-height: 1.45;
}

.prose ul,
.prose ol {
  padding-left: 24px;
}

.business-copy {
  grid-template-columns: minmax(0, 760px) 300px;
}

.contact-panel {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 20px;
  padding: 28px;
  color: var(--white);
  border-radius: 6px;
  background: var(--teal);
}

.contact-panel span {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-panel strong {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.25;
}

.contact-panel .button {
  color: var(--navy);
  border-color: var(--white);
  background: var(--white);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-block: 90px;
}

.solution-grid article {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  border-top: 5px solid var(--navy);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.solution-grid article:nth-child(2) {
  border-top-color: var(--orange);
}

.solution-grid article:nth-child(3) {
  border-top-color: var(--teal);
  border-right: 0;
}

.solution-grid article > span {
  color: var(--orange);
  font-family: var(--serif);
  font-size: 38px;
}

.solution-grid article a {
  margin-top: auto;
  font-weight: 800;
}

.contact-hero {
  background: linear-gradient(120deg, var(--navy) 0 66%, var(--coral) 66% 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  padding-block: 90px;
  border-bottom: 1px solid var(--line);
}

.contact-grid > div {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  border-right: 1px solid var(--line);
}

.contact-grid > div:last-child {
  border-right: 0;
}

.contact-label {
  margin-bottom: 40px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-value {
  margin-bottom: 12px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 700;
}

.contact-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-block: 60px 100px;
}

.contact-note p {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 29px;
  font-style: italic;
}

.download-panel {
  display: grid;
  grid-template-columns: minmax(0, 700px) auto;
  gap: 50px;
  align-items: center;
  padding-block: 90px;
}

.author-list,
.empty-state {
  padding-block: 90px;
}

.author-list ul {
  padding: 0;
  list-style: none;
  border-top: 4px solid var(--navy);
}

.author-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 18px 6px;
  border-bottom: 1px solid var(--line);
}

.author-list li a {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 700;
  text-decoration: none;
}

.author-list li span {
  color: var(--muted);
  font-size: 13px;
}

.reading-progress {
  position: fixed;
  z-index: 70;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  pointer-events: none;
}

.reading-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--orange);
}

.story-page {
  padding-bottom: 90px;
}

.story-heading {
  padding: 90px max(30px, calc((100vw - 980px) / 2)) 58px;
  color: var(--white);
  background: var(--navy);
}

.story-heading h1,
.story-heading .eyebrow {
  color: var(--white);
}

.story-heading h1 {
  max-width: 940px;
  margin-bottom: 30px;
}

.story-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  color: #ced8f8;
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
}

.story-layout {
  width: min(1080px, calc(100% - 40px));
  margin: 70px auto 0;
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  gap: 70px;
  align-items: start;
}

.story-layout > *,
.split-prose > *,
.business-copy > * {
  min-width: 0;
}

.story-aside {
  position: sticky;
  top: 122px;
  display: grid;
  gap: 16px;
  padding: 24px 0;
  color: var(--navy);
  border-top: 5px solid var(--orange);
  border-bottom: 1px solid var(--navy);
  font-size: 13px;
}

.story-aside strong {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.35;
}

.next-reading {
  width: min(760px, calc(100% - 40px));
  margin: 70px auto 0;
  display: grid;
  gap: 10px;
  padding: 28px 0;
  border-top: 4px solid var(--navy);
}

.next-reading span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.next-reading a {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
}

.site-footer {
  color: var(--white);
  background: var(--ink);
}

.footer-grid {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr;
  gap: 70px;
  padding-block: 70px;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-grid strong {
  color: var(--lemon);
  font-family: var(--serif);
  font-size: 21px;
}

.footer-grid p,
.footer-grid a {
  margin: 0;
  color: #d4d6db;
  font-size: 14px;
}

.footer-line {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 18px 0 30px;
  color: #979ba5;
  border-top: 1px solid #373a42;
  font-size: 12px;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 34px;
  }

  .menu-toggle {
    display: block;
  }

  #primary-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    padding: 10px 20px 20px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
  }

  #primary-nav.open {
    display: block;
  }

  .site-nav {
    align-items: stretch;
    flex-direction: column;
  }

  .site-nav a {
    border-bottom: 1px solid var(--line);
  }

  .home-hero {
    min-height: 640px;
    align-items: end;
    background-image: linear-gradient(180deg, rgba(255,255,255,0.05) 0 36%, rgba(255,255,255,0.94) 60% 100%), url("/wp-content/uploads/2014/02/Slider-3-background1.png");
    background-position: 20% top;
  }

  .hero-copy {
    width: 100%;
    margin: 0;
  }

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

  .ticker span:nth-child(2) {
    border-right: 0;
  }

  .ticker span:nth-child(-n + 2) {
    border-bottom: 1px solid var(--navy);
  }

  .rachie-layout,
  .rachie-after,
  .split-prose,
  .business-copy,
  .story-layout {
    grid-template-columns: 1fr;
  }

  .rachie-after .text-link {
    grid-column: 1;
  }

  .split-prose > aside,
  .contact-panel,
  .story-aside {
    position: static;
  }

  .solution-grid,
  .faces-grid,
  .notebook-grid {
    grid-template-columns: 1fr;
  }

  .notebook-grid article,
  .solution-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

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

  .contact-grid > div:nth-child(2) {
    border-right: 0;
  }

  .contact-grid > div:last-child {
    grid-column: 1 / -1;
    min-height: auto;
    border-top: 1px solid var(--line);
  }

  .download-panel {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 39px;
  }

  h2 {
    font-size: 30px;
  }

  .header-inner,
  .section-shell,
  .footer-grid,
  .footer-line,
  .story-layout,
  .next-reading {
    width: min(100% - 28px, 1180px);
  }

  .header-inner {
    min-height: 72px;
  }

  .brand {
    flex-basis: 212px;
  }

  .brand img {
    width: 212px;
  }

  .home-hero {
    min-height: 650px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-end;
    padding: 340px 20px 44px;
    background-size: auto 355px;
    background-position: 22% top;
  }

  .hero-deck {
    font-size: 19px;
  }

  .hero-copy h1,
  .story-heading h1,
  .page-hero h1 {
    font-size: 36px;
    line-height: 1.08;
  }

  .hero-actions,
  .don-copy > div,
  .contact-note,
  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .ticker span {
    border-right: 0;
    border-bottom: 1px solid var(--navy);
  }

  .featured-stories,
  .notebook,
  .faces-grid,
  .story-index,
  .split-prose,
  .business-copy,
  .solution-grid,
  .contact-grid,
  .author-list,
  .empty-state {
    padding-block: 64px;
  }

  .story-grid,
  .story-index {
    grid-template-columns: 1fr;
  }

  .story-grid article,
  .story-grid article:nth-child(3),
  .story-index article,
  .story-index article:nth-child(even) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .story-grid .feature-story {
    min-height: 390px;
  }

  .story-grid .feature-story h3 {
    font-size: 40px;
  }

  .rachie-layout {
    gap: 50px;
    padding-block: 70px;
  }

  .caption-stack span:nth-child(2) {
    transform: none;
  }

  .don-band {
    min-height: 680px;
    align-items: end;
    padding: 320px 20px 50px;
    background-image: linear-gradient(180deg, rgba(238,244,243,0.05) 0 40%, rgba(238,244,243,0.97) 62% 100%), url("/wp-content/uploads/2014/02/Slider-1-background1.jpg");
    background-position: 70% top;
    background-size: auto 390px;
  }

  .page-hero,
  .story-heading {
    padding-right: 20px;
    padding-left: 20px;
  }

  .page-hero {
    min-height: 390px;
  }

  .page-hero.compact {
    min-height: 300px;
    background: var(--navy);
  }

  .portrait-hero {
    min-height: 620px;
    justify-content: end;
    padding-bottom: 50px;
    background-image: linear-gradient(180deg, rgba(255,255,255,0.08) 0 40%, rgba(255,255,255,0.97) 64% 100%), url("/wp-content/uploads/2014/02/Slider-1-background1.jpg");
    background-position: 67% top;
    background-size: auto 400px;
  }

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

  .faces-grid article {
    min-height: 210px;
  }

  .prose,
  .story-layout .prose {
    font-size: 17px;
  }

  .prose .lead,
  .prose > p:first-child {
    font-size: 21px;
  }

  .story-heading {
    padding-top: 65px;
  }

  .story-layout {
    gap: 34px;
    margin-top: 45px;
  }

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

  .contact-grid > div,
  .contact-grid > div:nth-child(2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-grid > div:last-child {
    grid-column: 1;
    border-top: 0;
  }

  .contact-value {
    font-size: 25px;
  }

  .author-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-line {
    flex-direction: column;
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-copy {
    animation: none;
  }
}
