:root {
  --ink: #10201b;
  --muted: #5a6a63;
  --soft: #f3f5f1;
  --line: #dce2db;
  --green: #183f33;
  --green-2: #245849;
  --orange: #d7622a;
  --orange-2: #f08b45;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(16, 32, 27, 0.14);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 18px clamp(18px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.concept-header {
  min-height: 98px;
  align-items: center;
  padding: 18px clamp(28px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.96);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-large {
  display: grid;
  gap: 0;
  align-items: start;
}

.brand-word {
  display: block;
  font-size: 2.55rem;
  font-weight: 900;
  line-height: 0.9;
}

.brand-green {
  color: var(--green);
}

.brand-orange {
  color: #e6621f;
}

.brand-dot {
  color: var(--green);
}

.brand-tagline {
  margin-top: 6px;
  color: #202e29;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.1;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--white);
  background: var(--green);
  border-radius: 6px;
  font-size: 0.78rem;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--green);
}

.nav-cta {
  padding: 14px 20px;
  color: var(--white) !important;
  background: var(--green);
  border-radius: 6px;
}

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

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: 41.8% 58.2%;
  gap: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
}

.hero-copy,
.hero-media,
.split > *,
.story-band > *,
.submit-section > *,
.resource-grid > *,
.playbook > *,
.library-layout > *,
.admin-layout > * {
  min-width: 0;
}

.hero-copy h1,
.page-hero h1 {
  max-width: 780px;
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.9rem;
  line-height: 0.96;
  font-weight: 700;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero-copy {
  padding: 30px clamp(28px, 3.4vw, 48px) 24px;
}

.hero-kicker {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-copy h1 {
  max-width: 580px;
  font-size: 3.1rem;
  line-height: 1.03;
}

.hero-copy p,
.page-hero p {
  max-width: 660px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1.22rem;
  line-height: 1.62;
}

.hero-copy p {
  max-width: 560px;
  margin-top: 18px;
  font-size: 1rem;
  line-height: 1.48;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 17px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

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

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

.button.secondary {
  color: var(--green);
  background: var(--soft);
  border-color: var(--line);
}

.button.ghost {
  color: var(--muted);
  background: transparent;
  border-color: var(--line);
}

.hero-note {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 18px;
  max-width: 620px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.hero-note strong {
  color: var(--ink);
}

.hero-media {
  position: relative;
  margin: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 450px;
  aspect-ratio: 896 / 450;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

.hero-media figcaption {
  position: absolute;
  right: -18px;
  bottom: 22px;
  width: min(330px, calc(100% - 24px));
  padding: 18px;
  color: var(--white);
  background: var(--green);
  border-radius: var(--radius);
  box-shadow: 0 16px 45px rgba(16, 32, 27, 0.22);
}

.hero-media figcaption span {
  display: block;
  margin-bottom: 8px;
  color: #bcd9cd;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-media figcaption strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.35;
}

.need-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin: 42px 0 0;
  padding: 0;
  color: var(--ink);
  list-style: none;
}

.need-row li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding-right: 12px;
  border-right: 1px solid var(--line);
  font-size: 0.95rem;
}

.need-row li:last-child {
  border-right: 0;
}

.need-row span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--green);
  border: 2px solid var(--green);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 900;
}

.inside-section {
  width: 100%;
  padding: 18px clamp(28px, 4vw, 48px) 34px;
  border-bottom: 1px solid var(--line);
}

.inside-heading {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}

.inside-heading::after {
  display: block;
  flex: 1;
  height: 1px;
  background: #bfc8c1;
  content: "";
}

.inside-heading h2 {
  margin: 0;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.inside-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
}

.inside-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 270px;
  padding: 0 18px 0 0;
  margin-right: 18px;
  border-right: 1px solid var(--line);
}

.inside-card:last-child {
  border-right: 0;
  margin-right: 0;
}

.inside-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.inside-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.2;
}

.inside-card p {
  margin: 0;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.35;
}

.inside-card a {
  align-self: end;
  color: var(--green);
  font-size: 0.95rem;
  font-weight: 900;
  text-decoration: none;
}

.subscribe-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.7fr);
  gap: 28px;
  align-items: center;
  padding: 22px clamp(28px, 4vw, 58px);
  color: var(--white);
  background: var(--green);
}

.subscribe-band h2 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.15;
}

.subscribe-band p {
  margin: 4px 0 0;
  color: #cfe2da;
}

.subscribe-band form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
}

.subscribe-band input {
  min-height: 44px;
  border-radius: 6px 0 0 6px;
  border-color: transparent;
}

.subscribe-band .button {
  border-radius: 0 6px 6px 0;
}

.issue-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(var(--max), calc(100% - 36px));
  margin: 26px auto 0;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.issue-strip article {
  min-height: 144px;
  padding: 24px;
  background: var(--soft);
}

.issue-strip span {
  display: block;
  margin-bottom: 14px;
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.issue-strip p {
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 750;
  line-height: 1.45;
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 92px) 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.74fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.section h2,
.resource-card h2,
.playbook h2,
.admin-side h2,
.filter-panel h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.2rem;
  line-height: 1;
  letter-spacing: 0;
}

.section h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.22;
}

.section p {
  color: var(--muted);
}

.split > div > p {
  max-width: 660px;
  margin-top: 24px;
  font-size: 1.18rem;
}

.evidence-panel,
.filter-panel,
.editor-panel,
.resource-card,
.admin-side section {
  padding: 26px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.evidence-panel h3 {
  margin-bottom: 18px;
}

.check-list,
.article-body ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.article-body li {
  position: relative;
  padding-left: 26px;
  color: var(--ink);
}

.check-list li::before,
.article-body li::before {
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--orange);
  content: "";
}

.source-line {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.section-heading p {
  max-width: 500px;
  margin: 0;
}

.section-heading a,
.text-link {
  color: var(--orange);
  font-weight: 900;
  text-decoration: none;
}

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

.article-card,
.article-row {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.article-card a,
.article-row a {
  display: grid;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.article-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.article-card .card-body,
.article-row .card-body {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.card-meta,
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.article-card h3,
.article-row h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.3rem;
  line-height: 1.14;
}

.article-card p,
.article-row p {
  margin: 0;
}

.scorecard {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.scorecard-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.scorecard-grid article {
  min-height: 280px;
  padding: 24px;
  background: var(--white);
}

.scorecard-grid span {
  display: block;
  margin-bottom: 55px;
  color: var(--orange);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  line-height: 1;
}

.scorecard-grid p {
  margin-bottom: 0;
}

.story-band {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.story-band img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.story-band p {
  font-size: 1.15rem;
}

.submit-section {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(340px, 0.85fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  padding-bottom: clamp(70px, 8vw, 110px);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green-2);
  box-shadow: 0 0 0 3px rgba(36, 88, 73, 0.14);
}

.resource-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 34px clamp(18px, 4vw, 48px);
  color: #dce8e2;
  background: var(--green);
}

.site-footer p {
  max-width: 410px;
  margin: 12px 0 0;
  color: #bcd9cd;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  font-weight: 800;
}

.footer-brand {
  color: var(--white);
}

.footer-brand .brand-mark {
  color: var(--green);
  background: var(--white);
}

.page-hero {
  position: relative;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 58px 0 52px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.page-hero::after {
  position: absolute;
  right: 0;
  top: 58px;
  width: min(430px, 36%);
  height: 240px;
  background: url("images/hero-truck-stop.png") center / cover no-repeat;
  content: "";
}

.page-hero h1,
.page-hero p {
  position: relative;
  z-index: 1;
  max-width: min(720px, 58%);
}

.page-hero.compact h1 {
  font-size: 4.2rem;
}

.library-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.filter-panel {
  position: sticky;
  top: 94px;
  display: grid;
  gap: 24px;
}

.filter-panel h2 {
  margin-bottom: 14px;
  font-size: 1.4rem;
}

.topic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.topic-list button,
.tag-cloud li {
  min-height: 36px;
  padding: 8px 11px;
  color: var(--green);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
}

.topic-list button.active {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.library-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.library-toolbar p {
  margin: 0;
  font-weight: 800;
}

.article-list {
  display: grid;
  gap: 14px;
}

.article-row a {
  grid-template-columns: 220px minmax(0, 1fr);
}

.article-row img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
}

.article-shell {
  width: min(900px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(44px, 7vw, 82px) 0 20px;
}

.article-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.6rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.article-hero .deck {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.25rem;
}

.article-hero img {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: 34px;
  object-fit: cover;
  border-radius: var(--radius);
}

.article-body {
  max-width: 720px;
  margin: 36px auto 0;
}

.article-body p {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: 1.1rem;
}

.article-body h2 {
  margin: 42px 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.6rem;
  line-height: 1.05;
}

.article-sources {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.article-sources h2 {
  margin: 0 0 12px;
  font-family: inherit;
  font-size: 1rem;
}

.article-sources a {
  display: inline-flex;
  margin: 0 12px 10px 0;
  color: var(--orange);
  font-weight: 900;
}

.resource-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.7fr);
  gap: 18px;
}

.resource-card {
  display: grid;
  align-content: start;
  gap: 18px;
}

.resource-card.dark {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.resource-card.dark p {
  color: #c9ddd5;
}

.resource-card.dark a {
  color: var(--white);
  font-weight: 900;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.playbook {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1fr);
  gap: 32px;
}

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

.playbook-list article {
  padding: 22px;
  background: var(--white);
}

.playbook-list p {
  margin-bottom: 0;
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.editor-panel {
  display: grid;
  gap: 16px;
}

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

.editor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-side {
  display: grid;
  gap: 18px;
}

.admin-side h2 {
  margin-bottom: 16px;
  font-size: 1.4rem;
}

.admin-list {
  display: grid;
  gap: 10px;
}

.admin-item {
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.admin-item h3 {
  margin: 0 0 6px;
  font-size: 0.95rem;
}

.admin-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

@media (max-width: 980px) {
  .page-hero {
    padding: 46px 0 42px;
  }

  .page-hero::after {
    width: 32%;
    height: 190px;
  }

  .page-hero h1,
  .page-hero p {
    max-width: 62%;
  }

  .hero-copy h1,
  .page-hero h1,
  .page-hero.compact h1 {
    font-size: 4.2rem;
  }

  .article-hero h1 {
    font-size: 3.8rem;
  }

  .section h2,
  .resource-card h2,
  .playbook h2 {
    font-size: 2.8rem;
  }

  .hero,
  .split,
  .story-band,
  .submit-section,
  .resource-grid,
  .playbook,
  .library-layout,
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .hero-media {
    max-width: 680px;
  }

  .issue-strip,
  .article-grid,
  .scorecard-grid {
    grid-template-columns: 1fr;
  }

  .scorecard-grid article {
    min-height: auto;
  }

  .scorecard-grid span {
    margin-bottom: 22px;
  }

  .filter-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .concept-header {
    min-height: 78px;
    padding: 16px 22px;
  }

  .brand-large {
    max-width: calc(100vw - 92px);
    overflow: hidden;
  }

  .brand-word {
    font-size: 1.75rem;
    line-height: 0.95;
  }

  .brand-tagline {
    overflow: hidden;
    font-size: 0.75rem;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 75px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .hero {
    width: 100%;
    padding-top: 0;
  }

  .section,
  .page-hero,
  .issue-strip {
    width: calc(100% - 48px);
  }

  .page-hero {
    padding: 34px 0 30px;
  }

  .page-hero::after {
    display: none;
  }

  .hero-copy {
    padding: 50px 28px 28px;
  }

  .hero-copy h1,
  .page-hero h1,
  .page-hero.compact h1 {
    max-width: 300px;
    font-size: 2rem;
    line-height: 1.02;
  }

  .hero-copy p,
  .page-hero p {
    max-width: 318px;
    font-size: 1rem;
  }

  .hero-note {
    max-width: 318px;
  }

  .button {
    padding: 11px 13px;
    font-size: 0.9rem;
  }

  .article-hero h1 {
    font-size: 3rem;
  }

  .article-body h2,
  .section h2,
  .resource-card h2,
  .playbook h2 {
    font-size: 2.25rem;
  }

  .hero-note,
  .article-row a,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-media figcaption {
    position: static;
    width: 100%;
    margin-top: 10px;
  }

  .hero-media img {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .inside-section {
    padding: 20px 24px 30px;
  }

  .inside-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .inside-card {
    min-height: 0;
    padding: 0 0 18px;
    margin: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .subscribe-band {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .subscribe-band form {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .subscribe-band input,
  .subscribe-band .button {
    border-radius: 6px;
  }

  .article-row img {
    min-height: 220px;
  }

  .section-heading,
  .library-toolbar,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

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