:root {
  --ink: #241f18;
  --muted: #665f4f;
  --paper: #f6f0df;
  --paper-2: #fffaf0;
  --field: #e4e3c9;
  --forest: #2e4a32;
  --forest-2: #49633f;
  --clay: #854b35;
  --gold: #b88f3e;
  --line: #d2c6a6;
  --white: #fffaf0;
  --shadow: 0 18px 45px rgba(36, 31, 24, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  background: var(--paper);
}

body {
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 250, 240, 0.82), rgba(255, 250, 240, 0) 32%),
    linear-gradient(90deg, rgba(132, 94, 55, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(132, 94, 55, 0.04) 1px, transparent 1px),
    var(--paper);
  background-size: auto, 44px 44px, 44px 44px, auto;
  margin: 0;
  min-width: 320px;
}

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

a {
  color: inherit;
}

.site-header {
  align-items: center;
  background: rgba(246, 240, 223, 0.96);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 14px clamp(18px, 4vw, 56px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  display: flex;
  gap: 12px;
  font-weight: 700;
  text-decoration: none;
}

.brand img {
  border: 1px solid var(--line);
  height: 48px;
  object-fit: cover;
  width: 72px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

nav a,
.button {
  background: var(--forest);
  border: 1px solid var(--forest);
  border-radius: 6px;
  color: var(--white);
  display: inline-flex;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  padding: 11px 14px;
  text-decoration: none;
}

.button.secondary {
  background: rgba(255, 250, 240, 0.13);
  border-color: rgba(255, 250, 240, 0.74);
  color: var(--white);
}

nav a {
  background: transparent;
  color: var(--forest);
}

nav a:hover,
.button:hover {
  background: var(--forest-2);
  border-color: var(--forest-2);
  color: var(--white);
}

.button.secondary:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--forest);
}

.hero {
  display: grid;
  min-height: calc(100vh - 78px);
  position: relative;
}

.hero img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(20, 28, 18, 0.72), rgba(20, 28, 18, 0.34) 52%, rgba(20, 28, 18, 0.1)),
    linear-gradient(0deg, rgba(36, 31, 24, 0.18), rgba(36, 31, 24, 0));
  content: "";
  inset: 0;
  position: absolute;
}

.hero-copy {
  align-self: center;
  color: var(--white);
  max-width: 760px;
  padding: clamp(42px, 8vw, 96px);
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  font-size: clamp(2.7rem, 7vw, 6.8rem);
  line-height: 0.96;
  margin: 0 0 22px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.hero-copy p {
  color: rgba(255, 250, 240, 0.9);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.55;
  margin: 0 0 28px;
  max-width: 680px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.42);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
}

.hero-copy .tagline {
  color: #f4ead3;
  font-size: clamp(1.25rem, 2.4vw, 1.85rem);
  margin-bottom: 14px;
}

.eyebrow {
  color: var(--clay);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f3d48c;
}

.section {
  margin: 0 auto;
  max-width: 1180px;
  padding: clamp(42px, 7vw, 82px) clamp(18px, 4vw, 38px);
}

.section + .section {
  border-top: 1px solid rgba(132, 94, 55, 0.16);
}

.section-heading {
  max-width: none;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.05;
  margin: 0 0 18px;
}

.section-heading h2 {
  white-space: nowrap;
}

p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.65;
}

.directory-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.directory-card {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.95), rgba(248, 240, 221, 0.95)),
    var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(32, 37, 31, 0.06);
  min-height: 220px;
  padding: 22px;
  position: relative;
  text-decoration: none;
}

.directory-card::before {
  background: var(--gold);
  content: "";
  height: 4px;
  left: 18px;
  position: absolute;
  right: 18px;
  top: 0;
}

.directory-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.directory-card span {
  color: var(--clay);
  display: block;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.directory-card strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1.15;
}

.directory-card p {
  margin-bottom: 0;
}

.directory-list {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.45;
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
}

.directory-list a {
  color: var(--forest);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.directory-card strong a {
  color: var(--ink);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.photo-directory-card {
  min-height: 282px;
}

.photo-directory-card .directory-list {
  font-size: 0.9rem;
  line-height: 1.32;
}

.split {
  align-items: center;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
}

.split img {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
}

.text-link {
  color: var(--forest);
  display: inline-flex;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-weight: 800;
  margin-top: 4px;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.site-footer {
  background:
    linear-gradient(90deg, rgba(36, 31, 24, 0.22), transparent),
    var(--forest);
  color: var(--white);
  padding: 24px clamp(18px, 4vw, 56px);
}

.site-footer p {
  color: var(--white);
  margin: 0;
}

.page-hero {
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.84), rgba(228, 227, 201, 0.94)),
    var(--field);
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  padding: clamp(38px, 7vw, 74px) clamp(18px, 4vw, 56px);
}

.page-hero img {
  aspect-ratio: 16 / 10;
  border: 8px solid var(--paper-2);
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
  width: 100%;
}

.page-hero-text-only {
  grid-template-columns: minmax(0, 920px);
}

.page-hero .inline-hero-image {
  aspect-ratio: auto;
  border-width: 4px;
  margin-top: 22px;
  max-width: 520px;
}

.hunting-hero > img {
  aspect-ratio: auto;
  height: auto;
  object-fit: contain;
}

.life-times-hero > img {
  aspect-ratio: auto;
  height: auto;
  object-fit: contain;
}

.history-hero > img {
  aspect-ratio: auto;
  height: auto;
  object-fit: contain;
}

.page-hero .hero-collage {
  align-self: center;
  display: grid;
  gap: 14px;
  grid-template-columns: 1.08fr 0.92fr;
}

.page-hero .hero-collage img {
  aspect-ratio: 4 / 3;
  height: 100%;
}

.page-hero .hero-collage img:first-child {
  grid-row: span 2;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1;
  margin: 0 0 18px;
}

.standalone {
  color: var(--clay);
  font-size: clamp(1.2rem, 2.1vw, 1.65rem);
  margin: -4px 0 16px;
}

.link-list {
  columns: 2;
  gap: 34px;
  list-style: none;
  padding: 0;
}

.link-list li {
  break-inside: avoid;
  margin: 0 0 10px;
}

.link-list a {
  color: var(--forest);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.photo-library-list {
  background: rgba(255, 250, 240, 0.58);
  border: 1px solid var(--line);
  border-radius: 8px;
  columns: 1;
  margin-top: 18px;
  max-width: 460px;
  padding: 20px 28px 20px 38px;
}

.photo-library-list li {
  list-style: disc;
  margin-bottom: 8px;
}

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

.photo-array img {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(36, 31, 24, 0.1);
  cursor: zoom-in;
  height: auto;
  width: 100%;
}

.photo-array img:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.album-list {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.album-list figure {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(36, 31, 24, 0.1);
  margin: 0;
  overflow: hidden;
}

.album-list img {
  cursor: zoom-in;
  height: auto;
  width: 100%;
}

.album-list .rotated-photo {
  display: grid;
  grid-template-rows: minmax(320px, 1fr) auto;
}

.album-list img.rotate-upright {
  align-self: center;
  justify-self: center;
  transform: rotate(-90deg);
  width: min(72%, 420px);
}

.album-list figcaption {
  color: var(--forest);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-weight: 800;
  padding: 12px 14px 14px;
}

.album-list img:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: -3px;
}

.article-layout {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.38fr);
  margin-top: 18px;
}

.article-layout article {
  max-width: 760px;
}

.note-panel {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px 22px;
}

.note-panel ul {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  padding-left: 18px;
}

.hunting-photo-array {
  margin-top: 18px;
}

.caption-note {
  color: var(--clay);
  margin: 16px auto 0;
  max-width: 720px;
  text-align: center;
}

.history-index {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  columns: 1;
  margin-top: 18px;
  max-width: 640px;
  padding: 22px 28px;
}

.history-story {
  scroll-margin-top: 92px;
}

.history-story > p,
.history-story > blockquote,
.history-quote {
  max-width: 900px;
}

.history-story blockquote {
  border-left: 5px solid var(--gold);
  color: var(--forest);
  font-size: 1.16rem;
  font-style: italic;
  line-height: 1.65;
  margin: 22px 0;
  padding: 4px 0 4px 20px;
}

.history-photo-array {
  margin-top: 24px;
}

.painters-hero > img {
  aspect-ratio: auto;
  height: auto;
  object-fit: contain;
}

.memorial {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  max-width: 720px;
  padding: 24px 28px;
}

.memorial h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin: 0 0 8px;
}

.memorial blockquote {
  color: var(--forest);
  font-size: 1.08rem;
  font-style: italic;
  line-height: 1.72;
  margin: 20px 0 0;
}

.letter {
  background: rgba(255, 250, 240, 0.62);
  border: 1px solid var(--line);
  border-radius: 8px;
  max-width: 900px;
  padding: 22px 26px;
}

.letter p:first-child,
.letter p:last-child {
  color: var(--forest);
  font-weight: 700;
}

.painters-photo-array,
.painters-document-array {
  margin-top: 18px;
}

.painters-hero ~ .history-story .section-heading h2 {
  white-space: normal;
}

.painters-registry-section .section-heading h2 {
  white-space: normal;
}

.silviculture-hero > img {
  aspect-ratio: auto;
  height: auto;
  object-fit: contain;
}

.silviculture-photo-array,
.stewardship-photo-array {
  margin-top: 18px;
}

.stewardship-photo-array {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1100px;
}

.silviculture-hero ~ .section .section-heading h2 {
  white-space: normal;
}

.poetry-hero > img {
  aspect-ratio: auto;
  height: auto;
  object-fit: contain;
}

.poetry-section .section-heading h2 {
  white-space: normal;
}

.verse-card {
  background: rgba(255, 250, 240, 0.68);
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  max-width: 900px;
  padding: 24px 28px;
}

.verse-card p:first-child {
  margin-top: 0;
}

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

.verse-lines {
  color: var(--forest);
  font-size: 1.08rem;
  font-style: italic;
  line-height: 1.72;
}

.compact-verse {
  max-width: 760px;
}

.speech-text blockquote {
  border-left: 4px solid var(--clay);
  color: var(--forest);
  font-size: 1.12rem;
  font-style: italic;
  line-height: 1.65;
  margin: 22px 0;
  padding: 3px 0 3px 18px;
}

.text-link {
  color: var(--forest);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.apps-hero > img {
  aspect-ratio: auto;
  height: auto;
  object-fit: contain;
}

.resource-index {
  background: rgba(255, 250, 240, 0.58);
  border: 1px solid var(--line);
  border-radius: 8px;
  columns: 1;
  margin-top: 18px;
  max-width: 680px;
  padding: 22px 28px 22px 42px;
}

.resource-section {
  scroll-margin-top: 92px;
}

.resource-section .section-heading h2 {
  white-space: normal;
}

.resource-panel {
  background: rgba(255, 250, 240, 0.68);
  border: 1px solid var(--line);
  border-radius: 8px;
  max-width: 880px;
  padding: 22px 26px;
}

.resource-panel h3 {
  font-size: 1.6rem;
  margin: 0 0 12px;
}

.resource-panel p:first-child {
  margin-top: 0;
}

.resource-panel p:last-child,
.resource-links:last-child {
  margin-bottom: 0;
}

.resource-photo-array {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 20px;
  max-width: 900px;
}

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

.resource-links {
  line-height: 1.55;
  padding-left: 20px;
}

.resource-links li {
  margin-bottom: 9px;
}

.resource-links a {
  color: var(--forest);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.feature-figure {
  margin: 22px auto;
  max-width: 720px;
}

.feature-figure img {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  height: auto;
  width: 100%;
}

.feature-figure figcaption {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 10px;
  text-align: center;
}

.wide-figure {
  max-width: 980px;
}

.small-figure {
  max-width: 360px;
}

.download-callout {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-top: 24px;
  max-width: 680px;
  padding: 22px;
}

.download-callout h3 {
  font-size: 1.6rem;
  margin: 0 0 8px;
}

.lightbox {
  background: transparent;
  border: 0;
  margin: auto;
  max-height: 92vh;
  max-width: 92vw;
  overflow: visible;
  padding: 0;
}

.lightbox::backdrop {
  background: rgba(20, 28, 18, 0.82);
}

.lightbox img {
  background: var(--paper-2);
  border: 8px solid var(--paper-2);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  max-height: 88vh;
  max-width: 88vw;
  object-fit: contain;
}

.lightbox-close {
  align-items: center;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font-size: 2rem;
  height: 44px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: -18px;
  top: -18px;
  width: 44px;
}

.farm-index {
  background: rgba(255, 250, 240, 0.58);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px 26px;
}

.feature-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.1fr 0.9fr;
  margin-top: 30px;
}

.feature-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: inherit;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  min-height: 210px;
  overflow: hidden;
  text-decoration: none;
}

.feature-card.large {
  grid-row: span 2;
  grid-template-columns: 1fr;
}

.feature-card img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.feature-card.large img {
  aspect-ratio: 16 / 10;
  height: auto;
}

.feature-card div {
  padding: 20px;
}

.feature-card span {
  color: var(--clay);
  display: block;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.feature-card h3 {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.05;
  margin: 0 0 10px;
}

.feature-card p {
  margin: 0;
}

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

.gallery-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(36, 31, 24, 0.07);
  overflow: hidden;
}

.gallery-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.gallery-card div {
  padding: 18px;
}

.gallery-card h3 {
  font-size: 1.35rem;
  margin: 0 0 8px;
}

.status {
  color: var(--clay);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.calculator {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.98), rgba(246, 240, 223, 0.98)),
    var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 18px;
  max-width: 760px;
  padding: 24px;
}

.calculator-hero > img {
  aspect-ratio: auto;
  height: auto;
  object-fit: contain;
}

.calculator-index {
  background: rgba(255, 250, 240, 0.58);
  border: 1px solid var(--line);
  border-radius: 8px;
  columns: 1;
  max-width: 640px;
  padding: 22px 28px 22px 42px;
}

.calculator-section {
  scroll-margin-top: 92px;
}

.calculator-section .section-heading h2 {
  white-space: normal;
}

.calculation-details {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 16px 18px;
}

.calculation-details h3 {
  margin-top: 0;
}

.calculation-details ol,
.guidance-list {
  line-height: 1.65;
  padding-left: 22px;
}

.reading-width {
  max-width: 900px;
}

.notebook-hero > img {
  aspect-ratio: auto;
  height: auto;
  object-fit: contain;
}

.notebook-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.notebook-grid .directory-card {
  min-height: 175px;
}

.notebook-coming-soon {
  opacity: 0.76;
}

.notebook-section .section-heading h2 {
  white-space: normal;
}

.notebook-section > p {
  max-width: 920px;
}

.notebook-links {
  max-width: 900px;
}

.notebook-photo-array {
  margin-top: 18px;
}

.notebook-motto {
  border-left: 5px solid var(--gold);
  color: var(--forest);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.65;
  margin: 22px 0;
  padding: 5px 0 5px 20px;
}

.chapter-pagination {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.video-hero > img {
  aspect-ratio: auto;
  height: auto;
  object-fit: contain;
}

.instructional-hero > img {
  aspect-ratio: auto;
  height: auto;
  object-fit: contain;
}

.instructional-section {
  scroll-margin-top: 92px;
}

.instructional-section .section-heading h2 {
  white-space: normal;
}

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

.video-grid figure {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(36, 31, 24, 0.1);
  margin: 0;
  overflow: hidden;
}

.video-grid video {
  background: #1f281f;
  display: block;
  max-height: 340px;
  width: 100%;
}

.video-grid figcaption {
  color: var(--forest);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-weight: 800;
  padding: 12px 14px 14px;
}

.video-feature {
  max-width: 900px;
}

.video-feature iframe {
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
  width: 100%;
}

.video-links {
  margin-top: 24px;
  max-width: 860px;
}

.field-group {
  display: grid;
  gap: 8px;
}

label {
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-weight: 700;
}

input {
  border: 1px solid #b7bda8;
  border-radius: 6px;
  font: inherit;
  padding: 12px;
  width: 100%;
}

.result {
  background: var(--field);
  border-left: 5px solid var(--forest);
  border-radius: 6px;
  font-size: 1.22rem;
  font-weight: 700;
  padding: 16px;
}

.resource-list {
  background: rgba(255, 252, 242, 0.74);
  border: 1px solid var(--line);
  border-radius: 6px;
  line-height: 1.55;
  margin: 0;
  max-width: 920px;
  padding: 18px 24px 18px 44px;
}

.resource-list li + li {
  margin-top: 8px;
}

@media (max-width: 850px) {
  .site-header,
  .page-hero,
  .split {
    grid-template-columns: 1fr;
  }

  .site-header {
    align-items: flex-start;
    display: grid;
  }

  nav {
    justify-content: flex-start;
  }

  .directory-grid,
  .gallery-grid,
  .feature-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .photo-array {
    grid-template-columns: 1fr;
  }

  .album-list {
    grid-template-columns: 1fr;
  }

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

  .reading-groups,
  .resource-photo-array,
  .stewardship-photo-array,
  .notebook-grid {
    grid-template-columns: 1fr;
  }

  .chapter-pagination {
    align-items: flex-start;
    flex-direction: column;
  }

  .feature-card {
    grid-template-columns: 1fr;
  }

  .feature-card img {
    aspect-ratio: 16 / 10;
    height: auto;
  }

  .page-hero .hero-collage {
    grid-template-columns: 1fr;
  }

  .page-hero .hero-collage img:first-child {
    grid-row: auto;
  }

  .link-list {
    columns: 1;
  }

  .section-heading h2 {
    white-space: normal;
  }

  .hero {
    min-height: 680px;
  }

}
