:root {
  --ink: #171717;
  --charcoal: #262726;
  --paper: #f4f1e9;
  --white: #ffffff;
  --rule: #cbc5b8;
  --orange: #b64b24;
  --orange-dark: #7f3017;
  --green: #355b47;
  --blue: #315f7d;
  --muted: #6b6a65;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: #dedbd4;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

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

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid #e7a33c;
  outline-offset: 3px;
}

.utility-bar {
  min-height: 32px;
  background: var(--orange);
  color: #fff;
  font: 700 11px/32px Verdana, Arial, sans-serif;
  text-transform: uppercase;
}

.utility-inner,
.masthead-inner,
.primary-nav-inner,
.section-inner,
.footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.utility-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.utility-bar span:last-child {
  opacity: .82;
}

.masthead {
  border-bottom: 1px solid #3c3e3d;
  background: var(--charcoal);
  color: #fff;
}

.masthead-inner {
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
}

.brand-name {
  font: 800 46px/1 Arial, Helvetica, sans-serif;
}

.brand-name .brand-two {
  color: #f07838;
}

.brand-name .brand-tips {
  color: #b9c2c5;
  font-weight: 400;
}

.brand-tagline {
  margin-top: 7px;
  color: #e6e2d9;
  font: 700 12px/1.2 Verdana, Arial, sans-serif;
  text-transform: uppercase;
}

.masthead-note {
  max-width: 330px;
  padding-left: 24px;
  border-left: 4px solid var(--orange);
  color: #d2d0cb;
  font: italic 16px/1.45 Georgia, "Times New Roman", serif;
  text-align: right;
}

.primary-nav {
  background: #101111;
  color: #fff;
}

.primary-nav-inner {
  display: flex;
  min-height: 46px;
  align-items: stretch;
}

.primary-nav a {
  display: flex;
  align-items: center;
  padding: 0 18px;
  border-right: 1px solid #343535;
  font: 700 12px/1 Verdana, Arial, sans-serif;
  text-transform: uppercase;
}

.primary-nav a:first-child {
  border-left: 1px solid #343535;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  background: var(--orange);
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  background: #202322;
}

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

.hero-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 28px max(20px, calc((100vw - 1180px) / 2));
  border-top: 5px solid var(--orange);
  background: rgba(18, 19, 18, .88);
  color: #fff;
}

.hero-kicker,
.section-kicker {
  display: block;
  margin: 0 0 7px;
  color: #f08a50;
  font: 700 12px/1.2 Verdana, Arial, sans-serif;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 800px;
  margin: 0;
  font: 700 42px/1.06 Georgia, "Times New Roman", serif;
}

.hero p {
  max-width: 760px;
  margin: 10px 0 0;
  color: #e8e5dd;
  font: 16px/1.5 Arial, Helvetica, sans-serif;
}

section[data-na-home-articles] {
  width: 100%;
  margin: 0;
  padding: 34px 0 38px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #bcb6aa;
  background: var(--paper);
  color: var(--ink);
}

section[data-na-home-articles] > [data-na-home-published-list] {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

section[data-na-home-articles] .reading-stack {
  width: 100%;
}

section[data-na-home-articles] .reading-stack-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 20px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 5px solid var(--charcoal);
}

section[data-na-home-articles] .reading-stack-label {
  margin: 0;
  font: 700 32px/1.05 Georgia, "Times New Roman", serif;
}

section[data-na-home-articles] .reading-stack-intro {
  max-width: 410px;
  margin: 0;
  color: var(--muted);
  font: 13px/1.45 Verdana, Arial, sans-serif;
  text-align: right;
}

section[data-na-home-articles] .reading-stack-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--rule);
}

section[data-na-home-articles] .reading-sheet {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 16px;
  min-width: 0;
  align-items: start;
  gap: 10px;
  padding: 13px 12px 13px 0;
  border-bottom: 1px solid var(--rule);
  color: #242424;
}

section[data-na-home-articles] .reading-sheet:nth-child(odd) {
  padding-right: 22px;
  border-right: 1px solid var(--rule);
}

section[data-na-home-articles] .reading-sheet:nth-child(even) {
  padding-left: 22px;
}

section[data-na-home-articles] .reading-sheet::after {
  content: ">";
  color: var(--orange);
  font: 700 13px/1.4 Verdana, Arial, sans-serif;
}

section[data-na-home-articles] .reading-sheet:hover .sheet-title {
  color: var(--orange-dark);
  text-decoration: underline;
}

section[data-na-home-articles] .sheet-number {
  padding-top: 2px;
  color: var(--orange);
  font: 700 10px/1.3 Verdana, Arial, sans-serif;
}

section[data-na-home-articles] .sheet-title {
  min-width: 0;
  font: 700 14px/1.38 Arial, Helvetica, sans-serif;
  overflow-wrap: anywhere;
}

section[data-na-home-articles] .reading-stack-more {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

section[data-na-home-articles] details {
  border: 1px solid #bcb6aa;
  background: #fff;
}

section[data-na-home-articles] summary {
  padding: 12px 14px;
  color: var(--orange-dark);
  font: 700 12px/1.3 Verdana, Arial, sans-serif;
  text-transform: uppercase;
  cursor: pointer;
}

section[data-na-home-articles] details .reading-stack-list {
  grid-template-columns: 1fr;
  margin: 0 14px 14px;
}

section[data-na-home-articles] details .reading-sheet,
section[data-na-home-articles] details .reading-sheet:nth-child(odd),
section[data-na-home-articles] details .reading-sheet:nth-child(even) {
  padding: 11px 0;
  border-right: 0;
}

.section-band {
  background: #fff;
}

.section-band.alt {
  border-top: 1px solid #c7c2b8;
  border-bottom: 1px solid #c7c2b8;
  background: #e8e4dc;
}

.feature-row {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  min-height: 430px;
}

.feature-row.reverse {
  grid-template-columns: .92fr 1.08fr;
}

.feature-media {
  min-height: 430px;
  overflow: hidden;
}

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

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px clamp(30px, 5vw, 78px);
}

.feature-copy h2,
.archive-head h2 {
  margin: 0;
  font: 700 36px/1.08 Georgia, "Times New Roman", serif;
}

.feature-copy p {
  margin: 16px 0 0;
  color: #4f504d;
}

.feature-copy blockquote {
  margin: 24px 0 0;
  padding: 4px 0 4px 18px;
  border-left: 4px solid var(--green);
  color: #303732;
  font: italic 18px/1.5 Georgia, "Times New Roman", serif;
}

.text-link {
  display: inline-block;
  align-self: flex-start;
  margin-top: 24px;
  padding-bottom: 4px;
  border-bottom: 3px solid var(--orange);
  color: var(--orange-dark);
  font: 700 12px/1.3 Verdana, Arial, sans-serif;
  text-transform: uppercase;
}

.text-link:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.ride-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  background: #bdb8ae;
  border: 1px solid #bdb8ae;
}

.ride-group {
  min-width: 0;
  padding: 14px;
  background: #f8f6f1;
}

.ride-group strong {
  display: block;
  font: 700 13px/1.25 Verdana, Arial, sans-serif;
}

.ride-group span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font: 11px/1.35 Verdana, Arial, sans-serif;
}

.archive-section {
  padding: 52px 0 58px;
  background: var(--charcoal);
  color: #fff;
}

.archive-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 22px;
}

.archive-head p {
  max-width: 500px;
  margin: 0;
  color: #c8c8c5;
  font: 13px/1.5 Verdana, Arial, sans-serif;
  text-align: right;
}

.archive-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid #5d5f5d;
  border-left: 1px solid #5d5f5d;
}

.archive-item {
  min-width: 0;
  min-height: 148px;
  padding: 20px;
  border-right: 1px solid #5d5f5d;
  border-bottom: 1px solid #5d5f5d;
}

.archive-item time,
.archive-item span {
  display: block;
  margin-bottom: 10px;
  color: #e0824d;
  font: 700 10px/1.2 Verdana, Arial, sans-serif;
  text-transform: uppercase;
}

.archive-item strong {
  display: block;
  font: 700 16px/1.35 Georgia, "Times New Roman", serif;
}

.archive-item:hover {
  background: #343735;
}

.channel-strip {
  padding: 28px 0;
  border-bottom: 5px solid var(--orange);
  background: #fff;
}

.channel-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.channel-list a {
  min-width: 0;
  padding: 16px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  color: var(--blue);
  font: 700 12px/1.3 Verdana, Arial, sans-serif;
  text-align: center;
  text-transform: uppercase;
}

.channel-list a:hover {
  background: #edf2f4;
  color: #153b54;
}

.site-footer {
  padding: 32px 0 38px;
  background: #111212;
  color: #aaa;
  font: 11px/1.6 Verdana, Arial, sans-serif;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer a {
  color: #d5d5d2;
}

.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 900px) {
  .masthead-note {
    max-width: 260px;
  }

  .primary-nav a {
    padding-inline: 12px;
  }

  .feature-row,
  .feature-row.reverse {
    grid-template-columns: 1fr 1fr;
  }

  .feature-copy {
    padding: 40px 28px;
  }

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

@media (max-width: 720px) {
  .utility-inner,
  .masthead-inner,
  .section-inner,
  .footer-inner,
  section[data-na-home-articles] > [data-na-home-published-list] {
    width: min(100% - 28px, 1180px);
  }

  .utility-inner {
    justify-content: center;
  }

  .utility-bar span:last-child,
  .masthead-note,
  .primary-nav {
    display: none;
  }

  .masthead-inner {
    min-height: 92px;
  }

  .brand-name {
    font-size: 38px;
  }

  .mobile-nav {
    display: block;
    border-top: 1px solid #3c3e3d;
    background: #101111;
    color: #fff;
  }

  .mobile-nav summary {
    padding: 13px 14px;
    font: 700 12px/1.3 Verdana, Arial, sans-serif;
    text-transform: uppercase;
    cursor: pointer;
  }

  .mobile-nav-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid #343535;
  }

  .mobile-nav a {
    padding: 12px 14px;
    border-right: 1px solid #343535;
    border-bottom: 1px solid #343535;
    font: 700 11px/1.3 Verdana, Arial, sans-serif;
    text-transform: uppercase;
  }

  .hero {
    min-height: 528px;
  }

  .hero img {
    object-position: 64% center;
  }

  .hero-copy {
    padding: 22px 18px 24px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p {
    font-size: 14px;
  }

  section[data-na-home-articles] {
    padding: 28px 0 30px;
  }

  section[data-na-home-articles] .reading-stack-head {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  section[data-na-home-articles] .reading-stack-label {
    font-size: 28px;
  }

  section[data-na-home-articles] .reading-stack-intro {
    max-width: none;
    text-align: left;
  }

  section[data-na-home-articles] .reading-stack-list,
  section[data-na-home-articles] .reading-stack-more {
    grid-template-columns: 1fr;
  }

  section[data-na-home-articles] .reading-sheet,
  section[data-na-home-articles] .reading-sheet:nth-child(odd),
  section[data-na-home-articles] .reading-sheet:nth-child(even) {
    padding: 12px 0;
    border-right: 0;
  }

  .feature-row,
  .feature-row.reverse {
    grid-template-columns: 1fr;
  }

  .feature-row.reverse .feature-media {
    order: -1;
  }

  .feature-media {
    width: 100%;
    min-width: 0;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .feature-copy {
    padding: 36px 20px 40px;
  }

  .feature-copy h2,
  .archive-head h2 {
    font-size: 30px;
  }

  .ride-groups {
    grid-template-columns: 1fr;
  }

  .archive-head {
    display: block;
  }

  .archive-head p {
    margin-top: 12px;
    text-align: left;
  }

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

  .archive-item {
    min-height: 0;
  }

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

  .footer-inner {
    display: block;
  }

  .site-footer nav {
    margin-top: 18px;
  }
}

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