:root {
  --brand:    #e94e1b;
  --brand-dk: #c23f12;
  --black:    #000;
  --dark:     #333;
  --mid:      #555;
  --gray:     #888;
  --border:   #ccc;
  --bg-light: #ededed;
  --white:    #fff;
  --wrap:       970px;
  --wrap-wide:  1440px;
  --pad:        20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; font-family: "Open Sans","Open Sans-fallback",Arial,sans-serif; color: var(--dark); background: var(--white); -webkit-font-smoothing: antialiased; overflow-y: scroll; }
body { line-height: 1.5; }
a    { text-decoration: none; color: inherit; }
img  { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
h1,h2,h3,h4,h5 { font-weight: 700; }
ul, ol { list-style: none; }

.wrap      { max-width: var(--wrap);      width: calc(100% - var(--pad)*2); margin: 0 auto; }
.wrap-wide { max-width: var(--wrap-wide); width: calc(100% - var(--pad)*2); margin: 0 auto; }

#page    { display: flex; flex-direction: column; min-height: 100vh; }
#content { flex: 1; background: var(--white); }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); }

/* =============================================================
   HEADER & NAV
   ============================================================= */

.site-header {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 900;
}
.site-header.is-scrolled { box-shadow: 0 2px 8px rgba(0,0,0,.4); }

.header-inner {
  display: flex;
  align-items: center;
  height: 44px;
  max-width: var(--wrap-wide);
  width: calc(100% - var(--pad)*2);
  margin: 0 auto;
}

.site-logo { flex-shrink: 0; margin-right: 20px; }
.site-logo a { display: flex; align-items: center; }
.logo-text { font-size: 1.375rem; font-weight: 700; color: var(--white); letter-spacing: -.02em; line-height: 1; }
.logo-text .dot { color: var(--brand); }

.site-nav { flex: 1; overflow: hidden; height: 44px; display: flex; align-items: center; }

.nav-list { display: flex; align-items: center; height: 44px; list-style: none; flex-wrap: nowrap; }
.nav-list > .menu-item { position: relative; height: 100%; display: flex; align-items: center; }
.nav-list > .menu-item > a {
  font-size: .9375rem;
  color: var(--white);
  padding: 0 .9rem;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  transition: background .15s;
}
.nav-list > .menu-item > a:hover,
.nav-list > .menu-item.current-menu-item > a { background: var(--brand); }

.nav-list .sub-menu {
  position: absolute; top: 100%; left: 0;
  background: var(--dark);
  border-top: 2px solid var(--brand);
  min-width: 200px;
  list-style: none; display: none; z-index: 200;
  box-shadow: 0 4px 12px rgba(0,0,0,.35);
}
.nav-list > .menu-item:hover .sub-menu { display: block; }
.nav-list .sub-menu .menu-item a {
  display: block; padding: 9px 16px;
  font-size: .875rem; color: #ddd;
  border-bottom: 1px solid #444;
  transition: background .1s;
}
.nav-list .sub-menu .menu-item:last-child a { border-bottom: none; }
.nav-list .sub-menu .menu-item a:hover { background: var(--brand); color: var(--white); }

.header-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; flex-shrink: 0; }

.search-toggle { display: flex; align-items: center; padding: 6px; color: #ccc; transition: color .15s; }
.search-toggle:hover { color: var(--white); }

.btn-cta {
  display: inline-block;
  background: var(--brand);
  color: var(--white);
  font-size: .8125rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em;
  padding: 6px 14px;
  transition: background .15s;
  white-space: nowrap;
}
.btn-cta:hover { background: var(--brand-dk); color: var(--white); }

.menu-toggle {
  display: none; padding: 8px 0; flex-direction: column; gap: 5px;
  margin-right: 12px; flex-shrink: 0;
}
.menu-toggle .bar { width: 20px; height: 2px; background: var(--white); display: block; }

/* Search overlay */
.search-overlay { background: var(--bg-light); border-bottom: 2px solid var(--brand); padding: 10px 0; }
.search-overlay[hidden] { display: none; }
.search-overlay .wrap-wide { display: flex; gap: 0; }

.search-field {
  flex: 1; font-family: inherit; font-size: .9375rem;
  padding: 8px 12px;
  border: 1px solid var(--border); border-right: none;
  outline: none; color: var(--dark); background: var(--white);
}
.search-field:focus { border-color: var(--brand); }

.search-submit {
  background: var(--brand); color: var(--white);
  font-family: inherit; font-weight: 700; font-size: .8125rem;
  text-transform: uppercase; letter-spacing: .05em;
  padding: 8px 18px;
  border: 1px solid var(--brand);
  transition: background .15s;
}
.search-submit:hover { background: var(--brand-dk); border-color: var(--brand-dk); }

/* =============================================================
   DARK CARDS  (hero + 3 bottom) — image on top, dark content bar below
   ============================================================= */

.card-dk { display: block; background: var(--white); }
.card-dk .card-dk__img { display: block; width: 100%; height: auto; transition: opacity .2s; }
.card-dk:hover .card-dk__img { opacity: .9; }

.card-dk--hero   .card-dk__img { aspect-ratio: 16/9; object-fit: cover; }
.card-dk--bottom .card-dk__img { aspect-ratio: 3/2;  object-fit: cover; }

.card-dk--bottom { display: flex; flex-direction: column; height: 100%; }
.card-dk--bottom .card-dk__body { flex: 1; }

.card-dk__body {
  background: var(--dark);
  padding: 14px 16px 16px;
}

.card-dk__title {
  color: var(--white);
  font-weight: 700;
  line-height: 1.25;
  transition: color .15s;
}
.card-dk:hover .card-dk__title { color: var(--brand); }
.card-dk--hero .card-dk__title  { font-size: 1.375rem; }
.card-dk--bottom .card-dk__title { font-size: 1rem; }

.card-dk__sub {
  color: rgba(255,255,255,.78);
  font-size: .875rem;
  margin-top: 6px;
  line-height: 1.4;
}

/* =============================================================
   LATEST BLOCK (homepage top)
   ============================================================= */

.latest-block { padding: 20px 0 0; }

.latest-top {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.latest-panel {
  display: flex; flex-direction: column;
  padding-left: 20px;
  border-left: 1px solid var(--border);
}

.latest-panel__head {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.latest-panel__icon {
  width: 26px; height: 26px;
  background: var(--brand); border-radius: 50%;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 900; flex-shrink: 0;
  line-height: 1;
}

.latest-panel__label {
  font-size: .875rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--dark);
}

.latest-list { flex: 1; display: flex; flex-direction: column; list-style: none; }

.latest-list__item {
  flex: 1; display: flex; align-items: stretch;
  border-bottom: 1px solid var(--border);
}
.latest-list__item:last-child { border-bottom: none; }

.latest-list__link {
  display: flex; align-items: center;
  width: 100%; padding: 7px 0;
  font-size: .9375rem; font-weight: 700;
  color: var(--dark); line-height: 1.35;
  transition: color .15s;
}
.latest-list__link:hover { color: var(--brand); }

.latest-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 0;
}

/* =============================================================
   STANDARD CARD  (.listingResult)
   ============================================================= */

.listingResult {
  position: relative; overflow: hidden;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.listingResult a { text-decoration: none; color: inherit; }
.listingResult .article-link { display: block; }

.listingResult .image { overflow: hidden; background: var(--bg-light); line-height: 0; }
.listingResult .image img { width: 100%; height: auto; display: block; transition: opacity .2s; }
.listingResult:hover .image img { opacity: .92; }

.listingResult .content { padding: 10px 0 12px; }

.article-name {
  font-size: 1.0625rem; font-weight: 700;
  line-height: 1.4; margin-bottom: 4px; color: var(--dark);
  transition: color .15s;
}
.listingResult:hover .article-name { color: var(--brand); }

.listingResult .byline { font-size: .75rem; color: var(--gray); line-height: 1.4; }

.listingResult .synopsis {
  font-size: .875rem; color: var(--dark); line-height: 1.4;
  margin-top: 6px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

.listingResult a.category-link {
  position: absolute; left: 0; top: 0; z-index: 2;
  text-transform: uppercase; font-size: .6875rem; font-weight: 700;
  padding: .5em .65em; letter-spacing: .04em;
  color: var(--white); background: var(--brand); display: block;
}
.listingResult a.category-link:hover { background: var(--brand-dk); }

/* List card (sidebar) */
.listingResult--list { border-bottom: none; }
.listingResult--list .article-link {
  display: block;
  padding: 10px 0; border-bottom: 1px solid var(--bg-light);
}
.listingResult--list:last-child .article-link { border-bottom: none; }
.listingResult--list article {
  display: flex; flex-direction: row; gap: 10px; align-items: flex-start;
}
.listingResult--list .image { width: 80px; flex-shrink: 0; }
.listingResult--list .image img { height: auto; }
.listingResult--list .content { padding: 0; flex: 1; }
.listingResult--list .article-name { font-size: .875rem; line-height: 1.3; margin-bottom: 4px; }
.listingResult--list .byline { font-size: .6875rem; }
.listingResult--list a.category-link { display: none; }

/* =============================================================
   SECTION HEADINGS
   ============================================================= */

.listingResultsWrapper { margin-bottom: 24px; }

.listingResultsWrapper > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 14px;
}

.list-title {
  font-size: 1.25rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .02em;
  color: var(--dark); line-height: 1;
  flex: 1;
  text-align: center;
}

.more-link {
  font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--brand); white-space: nowrap;
  transition: opacity .15s;
}
.more-link:hover { opacity: .75; }

/* =============================================================
   CAT SECTIONS (homepage + archive)
   ============================================================= */

.cat-section { padding: 24px 0; }
.cat-section__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cat-section__grid .listingResult { border-bottom: none; }
.cat-section__grid .listingResult .content { padding-bottom: 0; }

/* =============================================================
   ARCHIVE PAGE
   ============================================================= */

.archive-hero  { background: var(--dark); padding: 24px 0; }
.archive-eyebrow { font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--brand); display: block; margin-bottom: 6px; }
.archive-title { font-size: 2.5rem; font-weight: 700; color: var(--white); line-height: 1; }
.archive-desc  { font-size: .9375rem; color: #aaa; margin-top: 10px; max-width: 560px; }
.archive-content { padding: 24px 0 40px; }

.listingResults.cols-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.listingResults.cols-3 .listingResult { border-bottom: none; }
.listingResults.cols-3 .listingResult .content { padding-bottom: 0; }

.other-cats { padding: 32px 0 48px; border-top: 2px solid var(--dark); text-align: center; }
.other-cats__title { font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; color: var(--dark); margin-bottom: 14px; }
.other-cats__list  { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }

.btn-cat {
  display: inline-block;
  background: var(--brand); color: var(--white);
  font-size: .8125rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em;
  padding: 6px 14px;
  transition: background .15s;
  white-space: nowrap;
}
.btn-cat:hover { background: var(--brand-dk); color: var(--white); }

.pagination { display: flex; justify-content: center; gap: 3px; padding: 28px 0 40px; flex-wrap: wrap; }
.page-numbers {
  font-size: .875rem; font-weight: 700;
  min-width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); padding: 0 6px; color: var(--dark);
  transition: border-color .15s, color .15s, background .15s;
}
.page-numbers.current { background: var(--brand); color: var(--white); border-color: var(--brand); }
.page-numbers:hover:not(.current) { border-color: var(--brand); color: var(--brand); }
.page-numbers.dots { border: none; }

/* =============================================================
   ARTICLE PAGE
   ============================================================= */

.article-page {}
.article-wrap { max-width: 1200px; width: calc(100% - var(--pad)*2); margin: 0 auto; }

.article-layout-wrap { display: flex; gap: 0; align-items: flex-start; }

.article-main {
  flex: 0 0 auto; width: calc(100% / 3 * 2);
  padding-right: 28px; border-right: 1px solid var(--border);
}

.article-sidebar {
  flex: 0 0 auto; width: calc(100% / 3);
  padding-left: 24px;
  position: sticky; top: 60px; align-self: start;
}

.article-header { padding: 20px 0 0; }

.breadcrumb { font-size: .8125rem; color: var(--gray); margin-bottom: 14px; }
.breadcrumb ol { display: flex; align-items: center; flex-wrap: wrap; gap: 4px; list-style: none; }
.breadcrumb li { display: flex; align-items: center; gap: 4px; }
.breadcrumb li:not(:last-child)::after { content: "›"; color: var(--border); }
.breadcrumb a { color: var(--brand); transition: opacity .15s; }
.breadcrumb a:hover { opacity: .75; }

.article-title {
  font-size: 1.75rem; font-weight: 700;
  line-height: 1.25; color: #1b1b1b; margin-bottom: 12px;
}

.article-meta-row {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 10px; margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.article-cat-chip {
  display: inline-block;
  background: var(--brand); color: var(--white);
  font-size: .75rem; font-weight: 700;
  padding: 3px 8px;
  text-transform: uppercase; letter-spacing: .04em;
  flex-shrink: 0;
}
.article-cat-chip:hover { background: var(--brand-dk); }

.article-byline { font-size: .8125rem; color: var(--dark); display: flex; align-items: center; flex-wrap: wrap; gap: 6px; }
.article-byline a { color: var(--brand); }
.article-byline__sep { color: var(--border); }

.article-toc {
  border: 1px solid var(--border);
  border-top: 3px solid var(--brand);
  background: var(--bg-light);
  padding: 16px 20px;
  margin: 20px 0 24px;
}
.article-toc__title {
  font-size: .8125rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--dark); margin-bottom: 10px;
}
.article-toc__list { list-style: none; counter-reset: toc; }
.article-toc__list li {
  counter-increment: toc;
  display: flex; align-items: baseline; gap: 8px;
  padding: 5px 0; border-bottom: 1px solid var(--border);
}
.article-toc__list li:last-child { border-bottom: none; }
.article-toc__list li::before {
  content: counter(toc) ".";
  font-size: .75rem; font-weight: 700;
  color: var(--brand); flex-shrink: 0; min-width: 18px;
}
.article-toc__list a {
  font-size: .9375rem; color: var(--dark); line-height: 1.4;
  transition: color .15s;
}
.article-toc__list a:hover { color: var(--brand); }

@media (max-width: 700px) {
  .article-toc { margin: 16px 0 20px; }
  .article-toc__list a { font-size: .875rem; }
}

.article-hero-img {
  width: 100%; height: auto; display: block;
  margin-bottom: 20px;
}

.article-content { font-size: 1rem; line-height: 1.7; color: var(--dark); }
.article-content h2 { font-size: 1.375rem; font-weight: 700; color: #1b1b1b; margin: 30px 0 12px; line-height: 1.25; scroll-margin-top: 60px; }
.article-content h3 { font-size: 1.1875rem; font-weight: 700; color: #1b1b1b; margin: 24px 0 10px; }
.article-content h4 { font-size: 1rem; font-weight: 700; color: #1b1b1b; margin: 20px 0 8px; }
.article-content p  { margin-bottom: 18px; }
.article-content a  { color: var(--brand); text-decoration: underline; transition: opacity .15s; }
.article-content a:hover { opacity: .75; }
.article-content ul, .article-content ol { padding-left: 24px; margin-bottom: 18px; list-style: initial; }
.article-content li { margin-bottom: 8px; line-height: 1.6; }
.article-content img { width: 100%; margin: 24px 0; }
.article-content figure { margin: 24px 0; }
.article-content figcaption { font-size: .8125rem; color: var(--gray); margin-top: 6px; }
.article-content blockquote { border-left: 4px solid var(--brand); padding: 10px 16px; margin: 24px 0; font-size: 1.0625rem; font-style: italic; color: var(--mid); background: #fff8f3; }

.article-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 28px; padding-top: 18px; border-top: 1px solid var(--border); }
.tag-pill { font-size: .75rem; border: 1px solid var(--border); padding: 4px 10px; color: var(--mid); transition: border-color .15s, color .15s; }
.tag-pill:hover { border-color: var(--brand); color: var(--brand); }

.sidebar-heading { font-size: .8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--dark); padding: 14px 0 8px; border-bottom: 2px solid var(--dark); margin-bottom: 0; }

/* Author bio */
.author-bio {
  border-top: 3px solid var(--brand); background: var(--bg-light);
  padding: 16px; margin-top: 32px;
  display: flex; gap: 14px; align-items: flex-start;
}
.author-bio__avatar { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; flex-shrink: 0; background: var(--border); display: block; }
.author-bio__info { flex: 1; }
.author-bio__name { font-size: 1rem; font-weight: 700; color: #1b1b1b; display: block; margin-bottom: 2px; }
.author-bio__role { font-size: .75rem; color: var(--brand); font-weight: 700; margin-bottom: 8px; display: block; text-transform: uppercase; letter-spacing: .04em; }
.author-bio__text { font-size: .875rem; line-height: 1.6; color: var(--mid); }

/* Related section */
.related-section { max-width: 1200px; width: calc(100% - var(--pad)*2); margin: 32px auto 48px; }
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.related-grid .listingResult { border-bottom: none; }
.related-grid .listingResult .content { padding-bottom: 0; }
.related-grid .listingResult .image img { aspect-ratio: 3/2; object-fit: cover; }

/* =============================================================
   404 PAGE
   ============================================================= */

.page-404 { padding: 60px 0 48px; }
.page-404__eyebrow { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--brand); display: block; margin-bottom: 8px; }
.page-404__code { font-size: 8rem; font-weight: 700; color: #1b1b1b; line-height: 1; margin-bottom: 12px; }
.page-404__code span { color: var(--brand); }
.page-404__title { font-size: 2rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.page-404__text  { font-size: 1rem; color: var(--gray); margin-bottom: 36px; max-width: 480px; }
.page-404__cats  { margin-bottom: 40px; }
.page-404__sect-title { font-size: .875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--dark); margin-bottom: 12px; }
.page-404__latest-title { font-size: 1.5rem; font-weight: 700; color: var(--dark); margin-bottom: 16px; }
.page-404__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.page-404__grid .listingResult { border-bottom: none; }
.page-404__grid .listingResult .content { padding-bottom: 0; }

/* =============================================================
   SEARCH / STATIC PAGES
   ============================================================= */

.search-results { padding: 28px 0 56px; }
.search-title { font-size: 1.75rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.search-count { font-size: .875rem; color: var(--gray); margin-bottom: 24px; display: block; }
.search-grid  { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.search-grid .listingResult { border-bottom: none; }
.search-grid .listingResult .content { padding-bottom: 0; }
.search-none  { font-size: 1rem; color: var(--gray); padding: 32px 0; }

.page-content { padding: 36px 0 64px; }
.page-wrap { max-width: 660px; width: calc(100% - var(--pad)*2); margin: 0 auto; }
.page-title { font-size: 2rem; font-weight: 700; color: var(--dark); margin-bottom: 24px; line-height: 1.15; }
.page-body  { font-size: 1rem; line-height: 1.7; color: var(--dark); }
.page-body h2 { font-size: 1.375rem; font-weight: 700; margin: 28px 0 10px; }
.page-body p  { margin-bottom: 16px; }
.page-body a  { color: var(--brand); text-decoration: underline; }

/* =============================================================
   FOOTER
   ============================================================= */

.site-footer { background: var(--dark); color: #aaa; padding: 20px 0; margin-top: auto; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-logo { font-size: 1.25rem; font-weight: 700; color: var(--white); letter-spacing: -.02em; }
.footer-logo .dot { color: var(--brand); }
.footer-copy { font-size: .8125rem; color: #888; }

/* =============================================================
   MOBILE NAV DRAWER extras
   ============================================================= */

.nav-drawer-search {
  display: none;
  padding: 14px var(--pad);
  border-bottom: 1px solid #444;
}
.nav-drawer-search form { display: flex; gap: 0; }
.nav-drawer-search .search-field { font-size: .9375rem; padding: 8px 10px; border: 1px solid #555; border-right: none; background: #222; color: var(--white); flex: 1; outline: none; }
.nav-drawer-search .search-field::placeholder { color: #888; }
.nav-drawer-search .search-submit { background: var(--brand); color: var(--white); font-size: .8125rem; font-weight: 700; padding: 8px 14px; border: 1px solid var(--brand); text-transform: uppercase; letter-spacing: .04em; }

.nav-drawer-cta {
  display: none;
  padding: 14px var(--pad);
}
.nav-drawer-cta .btn-cta { width: 100%; text-align: center; padding: 10px; font-size: .9375rem; }

/* =============================================================
   RESPONSIVE
   ============================================================= */

@media (min-width: 1574px) {
  :root { --wrap: 1200px; }
}

@media (max-width: 1100px) {
  .latest-panel__label { font-size: .8125rem; }
  .latest-list__link { font-size: .875rem; }
}

@media (max-width: 900px) {
  .latest-top { grid-template-columns: 1fr; }
  .latest-panel { padding-left: 0; border-left: none; border-top: 1px solid var(--border); padding-top: 16px; margin-top: 4px; }
  .latest-bottom { grid-template-columns: repeat(2,1fr); }
  .cat-section__grid { grid-template-columns: repeat(2,1fr); }
  .listingResults.cols-3 { grid-template-columns: repeat(2,1fr); }
  .article-layout-wrap { flex-direction: column; }
  .article-main { width: 100%; padding-right: 0; border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 24px; margin-bottom: 24px; }
  .article-sidebar { width: 100%; padding-left: 0; position: static; }
  .related-grid { grid-template-columns: repeat(2,1fr); }
  .search-grid { grid-template-columns: repeat(2,1fr); }
  .page-404__grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 700px) {
  :root { --pad: 14px; }
  .menu-toggle { display: flex; }
  .header-actions .btn-cta  { display: none; }
  .header-actions .search-toggle { display: none; }
  .site-nav {
    display: none;
    position: fixed; top: 44px; left: 0; right: 0; bottom: 0;
    background: var(--dark); z-index: 850; overflow-y: auto; height: auto;
  }
  .site-nav.is-open { display: block; }
  .nav-list { flex-direction: column; height: auto; padding: 8px 0; width: 100%; }
  .nav-list > .menu-item { height: auto; width: 100%; border-bottom: 1px solid #444; }
  .nav-list > .menu-item > a { height: auto; padding: 12px var(--pad); font-size: .9375rem; width: 100%; }
  .nav-list .sub-menu { position: static; border-top: none; box-shadow: none; display: none; background: #222; }
  .nav-list > .menu-item.is-open .sub-menu { display: block; }
  .nav-list > .menu-item:hover .sub-menu { display: none; }
  .nav-drawer-search { display: block; }
  .nav-drawer-cta    { display: block; }
  .cat-section__grid { grid-template-columns: 1fr; }
  .listingResults.cols-3 { grid-template-columns: 1fr; }
  .article-title { font-size: 1.375rem; }
  .archive-title { font-size: 1.75rem; }
}

@media (max-width: 575px) {
  .latest-bottom { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .search-grid { grid-template-columns: 1fr; }
  .page-404__grid { grid-template-columns: 1fr; }
  .page-404__code { font-size: 5rem; }
}
