:root {
  --bg: #f5f7f8;
  --surface: #ffffff;
  --surface-strong: #ffffff;
  --ink: #17181b;
  --muted: #616975;
  --line: #d9dee5;
  --brand: #1f5f8b;
  --brand-dark: #17496a;
  --accent: #a33228;
  --accent-dark: #7c231d;
  --max: 1120px;
  --article: 780px;
  --heading-font: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif; }

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  margin: 0; }

h1,
h2,
h3,
h4 {
  font-family: var(--heading-font);
  font-weight: 600;
  letter-spacing: 0;
  text-wrap: balance; }

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

a {
  color: var(--brand);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em; }

a:focus,
a:hover {
  color: var(--brand-dark); }

.site-shell {
  margin: 0 auto;
  max-width: var(--max);
  padding: 0 1.25rem; }

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  -webkit-box-shadow: 0 1px 0 rgba(17, 24, 39, 0.02);
          box-shadow: 0 1px 0 rgba(17, 24, 39, 0.02);
  position: sticky;
  top: 0;
  z-index: 10; }

.site-header__inner {
  align-items: center;
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  min-height: 68px; }

.site-logo {
  display: inline-flex;
  flex: 0 0 auto;
  text-decoration: none; }

.site-logo img {
  display: block;
  height: 40px;
  width: auto; }

.site-nav {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  position: relative; }

.site-nav__mobile {
  display: block; }

.site-nav__toggle {
  display: none; }

.site-nav__links {
  align-items: center;
  display: flex;
  gap: 0.4rem 1.25rem; }

.site-nav a,
.site-nav__button {
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  list-style: none;
  padding: 0;
  text-decoration: none; }

.site-nav__button::-webkit-details-marker {
  display: none; }

.site-nav__button {
  align-items: center;
  display: inline-flex;
  gap: 0.3rem; }

.site-nav__group {
  position: relative; }

.site-nav__caret {
  fill: currentColor;
  flex: 0 0 auto;
  height: 0.85rem;
  width: 0.85rem;
  -webkit-transition: -webkit-transform 0.18s ease;
  transition: -webkit-transform 0.18s ease;
  transition: transform 0.18s ease;
  transition: transform 0.18s ease, -webkit-transform 0.18s ease; }

.site-nav__group[open] .site-nav__caret {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg); }

.site-nav__menu {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 6px;
  -webkit-box-shadow: 0 18px 40px rgba(24, 22, 20, 0.1);
          box-shadow: 0 18px 40px rgba(24, 22, 20, 0.1);
  display: none;
  min-width: 245px;
  padding: 0.55rem;
  position: absolute;
  right: 0;
  top: calc(100% + 0.65rem);
  z-index: 20; }

.site-nav__group[open] .site-nav__menu {
  display: -ms-grid;
  display: grid;
  gap: 0.2rem; }

.site-nav__menu a {
  border-radius: 5px;
  display: block;
  padding: 0.55rem 0.65rem;
  white-space: nowrap; }

.site-nav__menu a:hover {
  background: var(--bg); }

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  margin-top: 4rem;
  padding: 2rem 0; }

.site-footer__links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 0.75rem; }

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem; }

.site-footer__nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none; }

.site-footer__nav a:hover,
.site-footer__nav a:focus {
  color: var(--brand); }

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-left: auto; }

.site-footer__social a {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  display: inline-flex;
  height: 2.25rem;
  justify-content: center;
  -webkit-transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
  width: 2.25rem; }

.site-footer__social svg {
  fill: currentColor;
  height: 1rem;
  width: 1rem; }

.site-footer__social a:hover,
.site-footer__social a:focus {
  background: var(--bg);
  border-color: var(--brand);
  color: var(--brand); }

.eyebrow {
  color: var(--brand);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin: 0 0 0.55rem;
  text-transform: uppercase; }

.breadcrumbs {
  align-items: center;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.8rem;
  font-weight: 700;
  gap: 0.45rem;
  line-height: 1.4;
  margin-bottom: 1rem; }

.breadcrumbs a {
  color: var(--muted);
  text-decoration: none; }

.breadcrumbs a:hover {
  color: var(--brand); }

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem; }

.button {
  border-radius: 5px;
  display: inline-block;
  font-weight: 800;
  line-height: 1.2;
  padding: 0.85rem 1rem;
  text-decoration: none; }

.button--primary {
  background: var(--accent);
  color: #fff; }

.button--primary:focus,
.button--primary:hover {
  background: var(--accent-dark);
  color: #fff; }

.button--secondary {
  border: 1px solid var(--line);
  color: var(--ink); }

.text-link {
  color: #0074db;
  display: inline-block;
  font-weight: 400;
  text-decoration: none; }

.text-link:hover,
.text-link:focus {
  color: #0074db;
  text-decoration: underline; }

.home-page {
  overflow-x: clip; }

.home-hero.home-hero--live {
  color: #fff;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 54px), 50% 100%, 0 calc(100% - 54px));
  display: block;
  margin-top: 0;
  overflow: hidden;
  padding: 7.25rem 0 7.75rem;
  position: relative; }

.home-hero__image {
  height: 100%;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 58%;
     object-position: center 58%;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0; }

.home-hero.home-hero--live::before {
  background: rgba(22, 22, 22, 0.66);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1; }

.home-hero.home-hero--live::after {
  display: none; }

.home-hero__inner {
  margin: 0 auto;
  max-width: 800px;
  position: relative;
  text-align: center;
  z-index: 2; }

.home-hero.home-hero--live h1 {
  font-size: 3rem;
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0;
  max-width: none;
  text-shadow: 1px 1px 5px #000; }

.home-hero.home-hero--live p {
  color: #fff;
  font-size: 1rem;
  margin: 1rem auto 0;
  max-width: 640px;
  text-shadow: 1px 1px 5px #000; }

.home-band {
  padding-top: 2.75rem; }

.home-band:first-of-type {
  padding-top: 3rem; }

.section-heading {
  margin-bottom: 1rem;
  text-align: center; }

.section-heading--split {
  display: block; }

.section-heading h2,
.page-heading h1 {
  font-size: 2rem;
  line-height: 1.15;
  margin: 0; }

.section-heading .text-link {
  margin-top: 0.15rem; }

.home-posts {
  display: -ms-grid;
  display: grid;
  gap: 1.15rem;
  -ms-grid-columns: (minmax(0, 1fr))[3];
  grid-template-columns: repeat(3, minmax(0, 1fr)); }

.home-post {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden; }

.home-post__image {
  display: block; }

.home-post__image img {
  aspect-ratio: 4 / 3;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%; }

.home-post__body {
  padding: 1rem 1rem 1.1rem; }

.home-post__body h3 {
  font-size: 1rem;
  line-height: 1.2;
  margin: 0 0 0.5rem; }

.home-post__body h3 a {
  color: var(--ink);
  text-decoration: none; }

.home-post__body p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0; }

.topic-grid {
  display: -ms-grid;
  display: grid;
  gap: 0.75rem;
  -ms-grid-columns: (minmax(0, 1fr))[4];
  grid-template-columns: repeat(4, minmax(0, 1fr)); }

.topic-link {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  font-weight: 800;
  padding: 1rem;
  text-decoration: none; }

.topic-link:focus,
.topic-link:hover {
  border-color: var(--brand);
  color: var(--brand); }

.article-grid {
  display: -ms-grid;
  display: grid;
  gap: 1rem;
  -ms-grid-columns: (minmax(0, 1fr))[4];
  grid-template-columns: repeat(4, minmax(0, 1fr)); }

.article-card,
.blog-list__item {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden; }

.article-card__image,
.blog-list__image {
  display: block; }

.article-card__image img,
.blog-list__image img {
  aspect-ratio: 4 / 3;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%; }

.article-card__body,
.blog-list__body {
  padding: 1rem; }

.article-card h3,
.blog-list h2 {
  font-size: 1.02rem;
  line-height: 1.2;
  margin: 0 0 0.5rem; }

.article-card h3 a,
.blog-list h2 a {
  color: var(--ink);
  text-decoration: none; }

.article-card time,
.blog-list time,
.article-meta {
  color: var(--muted);
  font-size: 0.84rem; }

.article-card p,
.blog-list p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0; }

.page-heading {
  max-width: 760px;
  padding: 2.25rem 0 1.4rem; }

.page-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1rem; }

.blog-list {
  display: -ms-grid;
  display: grid;
  gap: 1rem; }

.blog-list__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 240px 1fr;
  grid-template-columns: 240px 1fr; }

.standard-page {
  margin: 0 auto;
  max-width: var(--article);
  padding: 2.5rem 1.25rem 0; }

.standard-page h1:first-child,
.standard-page h2:first-child,
.standard-page p:first-child {
  margin-top: 0; }

.contact-form {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 6px;
  display: -ms-grid;
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
  padding: 1.25rem; }

.contact-form p {
  margin: 0; }

.contact-form label {
  color: var(--ink);
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
  margin-bottom: 0.35rem; }

.contact-form input,
.contact-form textarea {
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--ink);
  display: block;
  font: inherit;
  padding: 0.75rem 0.85rem;
  width: 100%; }

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--brand);
  -webkit-box-shadow: 0 0 0 3px rgba(31, 95, 139, 0.14);
          box-shadow: 0 0 0 3px rgba(31, 95, 139, 0.14);
  outline: 0; }

.contact-form__hidden {
  height: 1px;
  margin: -1px;
  overflow: hidden;
  position: absolute;
  width: 1px; }

.contact-form__status {
  margin: 0; }

.contact-form__status.is-error {
  color: #a61b1b; }

.contact-form__status.is-success {
  color: #176b38; }

.article-shell {
  margin: 0 auto;
  max-width: var(--article);
  padding: 2.5rem 1.25rem 0; }

.article-hero {
  margin-bottom: 2rem; }

.article-hero h1 {
  font-size: 2.55rem;
  letter-spacing: 0;
  line-height: 1.1;
  margin: 0 0 0.9rem; }

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-bottom: 1rem; }

.article-dek {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55; }

.article-featured-image {
  margin: 2rem 0 0; }

.article-featured-image img {
  border-radius: 8px;
  display: block;
  width: 100%; }

.article-content {
  font-size: 1.02rem; }

.article-content h2 {
  font-size: 1.45rem;
  line-height: 1.2;
  margin: 2rem 0 0.7rem; }

.article-content h3 {
  font-size: 1.12rem;
  line-height: 1.3;
  margin: 1.7rem 0 0.55rem; }

.article-content p,
.article-content ul,
.article-content ol {
  margin: 0 0 1.25rem; }

.article-content h2,
.article-content h3 {
  scroll-margin-top: 92px; }

.article-content table {
  border-collapse: collapse;
  display: block;
  margin: 1.35rem 0 1.5rem;
  overflow-x: auto;
  width: 100%; }

.article-content th,
.article-content td {
  border: 1px solid var(--line);
  padding: 0.75rem 0.85rem;
  text-align: left;
  vertical-align: top; }

.article-content th {
  background: #edf2f7;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0; }

.article-content td {
  background: #fff;
  color: var(--ink);
  font-size: 0.94rem; }

.article-content tbody tr:nth-child(even) td {
  background: #f8fafc; }

.article-content table p {
  margin: 0; }

.chassis-jump {
  display: -ms-grid;
  display: grid;
  gap: 0.75rem;
  -ms-grid-columns: (minmax(0, 1fr))[4];
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 1.1rem 0 1.45rem; }

.chassis-jump__item {
  align-content: space-between;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  display: -ms-grid;
  display: grid;
  gap: 0.65rem;
  min-height: 168px;
  padding: 0.95rem;
  text-decoration: none; }

.chassis-jump__item:hover,
.chassis-jump__item:focus {
  border-color: var(--accent);
  -webkit-box-shadow: 0 8px 20px rgba(17, 24, 39, 0.08);
          box-shadow: 0 8px 20px rgba(17, 24, 39, 0.08);
  color: var(--ink); }

.chassis-jump__code,
.chassis-jump__body,
.chassis-jump__body strong,
.chassis-jump__body span {
  display: block; }

.chassis-jump__code {
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.1; }

.chassis-jump__body strong {
  font-size: 0.98rem;
  line-height: 1.2; }

.chassis-jump__body span {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
  margin-top: 0.35rem; }

.chassis-jump__cta {
  align-items: center;
  background: var(--accent);
  border-radius: 6px;
  color: #fff;
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 800;
  justify-content: center;
  line-height: 1.1;
  padding: 0.62rem 0.75rem;
  width: 100%; }

.chassis-jump__item:hover .chassis-jump__cta,
.chassis-jump__item:focus .chassis-jump__cta {
  background: var(--accent-dark); }

.quick-picks {
  display: -ms-grid;
  display: grid;
  gap: 0.7rem;
  margin: 1.1rem 0 1.45rem; }

.quick-pick {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  display: -ms-grid;
  display: grid;
  gap: 0.9rem;
  -ms-grid-columns: 1fr auto;
  grid-template-columns: 1fr auto;
  padding: 0.9rem 0.95rem;
  text-decoration: none; }

.quick-pick:hover,
.quick-pick:focus {
  border-color: var(--accent);
  -webkit-box-shadow: 0 8px 20px rgba(17, 24, 39, 0.08);
          box-shadow: 0 8px 20px rgba(17, 24, 39, 0.08);
  color: var(--ink); }

.quick-pick__body {
  display: -ms-grid;
  display: grid;
  gap: 0.2rem;
  min-width: 0; }

.quick-pick__label {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase; }

.quick-pick__title {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.25; }

.quick-pick__description {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.35; }

.quick-pick__cta {
  background: var(--accent);
  border-radius: 6px;
  color: #fff;
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.1;
  padding: 0.68rem 0.82rem;
  white-space: nowrap; }

.quick-pick:hover .quick-pick__cta,
.quick-pick:focus .quick-pick__cta {
  background: var(--accent-dark); }

.product-specs {
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 6px;
  display: -ms-grid;
  display: grid;
  gap: 0.45rem 0.9rem;
  -ms-grid-columns: (minmax(0, 1fr))[2];
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 1rem 0 1.2rem;
  padding: 0.85rem 0.95rem; }

.product-specs span {
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.4; }

.product-specs strong {
  color: var(--muted);
  font-weight: 800; }

.product-sentiment {
  background: #fff;
  border-left: 3px solid var(--brand);
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
  margin: 0 0 1.35rem;
  padding: 0.65rem 0 0.65rem 0.9rem; }

.article-content hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 2rem 0; }

.article-content blockquote {
  border-left: 4px solid var(--brand);
  color: var(--muted);
  margin: 2rem 0;
  padding-left: 1rem; }

.article-content > img,
.article-content p > img {
  border-radius: 8px; }

.product-card {
  align-items: center;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 6px;
  display: -ms-grid;
  display: grid;
  gap: 1.25rem;
  -ms-grid-columns: minmax(130px, 190px) 1fr;
  grid-template-columns: minmax(130px, 190px) 1fr;
  margin: 1.5rem 0;
  padding: 1rem; }

.product-card--featured {
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#fbfcfe));
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  border-color: #cfd7e2;
  -webkit-box-shadow: 0 12px 28px rgba(17, 24, 39, 0.07);
          box-shadow: 0 12px 28px rgba(17, 24, 39, 0.07);
  gap: 1.4rem;
  padding: 1.15rem; }

.product-card__image-link {
  display: block; }

.product-card__image {
  display: block;
  max-height: 180px;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%; }

.article-content .product-card--featured .product-card__image {
  max-height: 210px; }

.product-card__body {
  -ms-grid-row-align: start;
      align-self: start;
  display: flex;
  flex-direction: column;
  gap: 0; }

.article-content .product-card__prefix {
  align-items: center;
  background: #eaf1f8;
  border: 1px solid #d5e2ee;
  border-radius: 999px;
  color: var(--brand-dark);
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 800;
  gap: 0.35rem;
  letter-spacing: 0.04em;
  line-height: 1;
  margin: 0 0 0.55rem;
  padding: 0.4rem 0.7rem;
  text-transform: uppercase;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content; }

.article-content .product-card--featured .product-card__prefix {
  background: #dfeaf6;
  border-color: #c7d9ea; }

.product-card__prefix {
  margin: 0; }

.article-content .product-card__title {
  font-size: 1.32rem;
  line-height: 1.14;
  margin: 0; }

.product-card__title {
  margin: 0; }

.article-content .product-card__button {
  margin-top: 0.7rem; }

.product-card__button {
  background: var(--accent);
  border-radius: 6px;
  color: #fff;
  display: inline-block;
  font-weight: 800;
  line-height: 1.2;
  padding: 0.7rem 0.95rem;
  text-decoration: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content; }

.article-content .product-card--featured .product-card__button {
  padding-left: 1.05rem;
  padding-right: 1.05rem; }

.product-card__button:focus,
.product-card__button:hover {
  background: var(--accent-dark);
  color: #fff; }

@media (max-width: 860px) {
  .home-posts,
  .article-grid,
  .topic-grid {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr; }
  .home-hero.home-hero--live {
    padding-bottom: 4.75rem;
    padding-top: 3.75rem; }
  .home-hero.home-hero--live h1 {
    font-size: 2.6rem; }
  .blog-list__item {
    -ms-grid-columns: 180px 1fr;
    grid-template-columns: 180px 1fr; } }

@media (max-width: 620px) {
  body {
    font-size: 16px; }
  .site-header__inner {
    min-height: 64px; }
  .site-nav {
    flex: 0 0 auto; }
  .site-nav__mobile {
    display: block; }
  .site-nav__toggle {
    align-items: center;
    background: transparent;
    border: 0;
    color: var(--ink);
    cursor: pointer;
    display: inline-flex;
    height: 2.5rem;
    justify-content: center;
    padding: 0.5rem;
    width: 2.5rem; }
  .site-nav__hamburger-box {
    display: block;
    height: 1rem;
    position: relative;
    width: 1.35rem; }
  .site-nav__hamburger-inner,
  .site-nav__hamburger-inner::before,
  .site-nav__hamburger-inner::after {
    background-color: currentColor;
    border-radius: 2px;
    height: 2px;
    position: absolute;
    width: 100%; }
  .site-nav__hamburger-inner {
    display: block;
    margin-top: -1px;
    top: 50%;
    -webkit-transition-duration: 75ms;
            transition-duration: 75ms;
    -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .site-nav__hamburger-inner::before,
  .site-nav__hamburger-inner::after {
    content: "";
    display: block; }
  .site-nav__hamburger-inner::before {
    top: -0.42rem;
    -webkit-transition: top 75ms 120ms ease, opacity 75ms ease;
    transition: top 75ms 120ms ease, opacity 75ms ease; }
  .site-nav__hamburger-inner::after {
    bottom: -0.42rem;
    -webkit-transition: bottom 75ms 120ms ease, -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 75ms 120ms ease, -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 75ms 120ms ease, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 75ms 120ms ease, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .site-nav__toggle.is-active .site-nav__hamburger-inner {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transition-delay: 120ms;
            transition-delay: 120ms;
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .site-nav__toggle.is-active .site-nav__hamburger-inner::before {
    opacity: 0;
    top: 0;
    -webkit-transition: top 75ms ease, opacity 75ms 120ms ease;
    transition: top 75ms ease, opacity 75ms 120ms ease; }
  .site-nav__toggle.is-active .site-nav__hamburger-inner::after {
    bottom: 0;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    -webkit-transition: bottom 75ms ease, -webkit-transform 75ms 120ms cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 75ms ease, -webkit-transform 75ms 120ms cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 75ms ease, transform 75ms 120ms cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 75ms ease, transform 75ms 120ms cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 75ms 120ms cubic-bezier(0.215, 0.61, 0.355, 1); }
  .site-nav__links {
    background: var(--surface-strong);
    border: 1px solid var(--line);
    border-radius: 6px;
    -webkit-box-shadow: 0 18px 40px rgba(24, 22, 20, 0.12);
            box-shadow: 0 18px 40px rgba(24, 22, 20, 0.12);
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 0.45rem;
    position: absolute;
    right: 0;
    top: calc(100% + 0.55rem);
    width: calc(100vw - 2.5rem);
    max-width: 18rem;
    z-index: 20; }
  .site-nav__mobile.is-open .site-nav__links {
    display: flex; }
  .site-nav__links > a,
  .site-nav__button {
    border-radius: 5px;
    display: flex;
    padding: 0.65rem;
    width: 100%; }
  .site-nav__links > a:hover,
  .site-nav__links > a:focus,
  .site-nav__button:hover,
  .site-nav__button:focus {
    background: var(--bg); }
  .site-nav__group {
    width: 100%; }
  .site-nav__button {
    justify-content: space-between; }
  .site-nav__menu {
    -webkit-box-shadow: none;
            box-shadow: none;
    margin-top: 0.2rem;
    min-width: 0;
    position: static;
    width: 100%; }
  .home-posts,
  .article-grid,
  .topic-grid,
  .blog-list__item,
  .product-card {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr; }
  .product-specs {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr; }
  .quick-pick {
    align-items: stretch;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr; }
  .quick-pick__cta {
    justify-content: center;
    width: 100%; }
  .chassis-jump {
    -ms-grid-columns: (minmax(0, 1fr))[2];
    grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .chassis-jump__item {
    min-height: 0; }
  .home-hero.home-hero--live {
    padding-bottom: 4rem;
    padding-top: 3.25rem; }
  .home-hero.home-hero--live h1 {
    font-size: 2.2rem; }
  .section-heading h2,
  .page-heading h1 {
    font-size: 1.75rem; }
  .article-hero h1 {
    font-size: 2.1rem; }
  .article-content {
    font-size: 1rem; }
  .article-content h2 {
    font-size: 1.35rem; }
  .article-content h3 {
    font-size: 1.08rem; }
  .article-shell {
    padding-top: 2rem; } }
