@font-face {
  font-family: "Golos Text";
  src: url("../fonts/golos-text-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 900;
  font-display: block;
  unicode-range: U+0400-052F, U+2DE0-2DFF, U+A640-A69F, U+1C80-1C8F;
}

@font-face {
  font-family: "Golos Text";
  src: url("../fonts/golos-text-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 900;
  font-display: block;
  unicode-range: U+0000-024F, U+1E00-1EFF;
}

@font-face {
  font-family: "CFM Inter";
  src: url("../fonts/cfm-inter-cyrillic-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  unicode-range: U+0400-052F, U+2DE0-2DFF, U+A640-A69F, U+1C80-1C8F;
}

@font-face {
  font-family: "CFM Inter";
  src: url("../fonts/cfm-inter-latin-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  unicode-range: U+0000-024F, U+1E00-1EFF;
}

@font-face {
  font-family: "CFM Inter";
  src: url("../fonts/cfm-inter-cyrillic-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  unicode-range: U+0400-052F, U+2DE0-2DFF, U+A640-A69F, U+1C80-1C8F;
}

@font-face {
  font-family: "CFM Inter";
  src: url("../fonts/cfm-inter-latin-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  unicode-range: U+0000-024F, U+1E00-1EFF;
}

@font-face {
  font-family: "CFM Inter";
  src: url("../fonts/cfm-inter-cyrillic-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  unicode-range: U+0400-052F, U+2DE0-2DFF, U+A640-A69F, U+1C80-1C8F;
}

@font-face {
  font-family: "CFM Inter";
  src: url("../fonts/cfm-inter-latin-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  unicode-range: U+0000-024F, U+1E00-1EFF;
}

@font-face {
  font-family: "CFM Inter";
  src: url("../fonts/cfm-inter-cyrillic-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  unicode-range: U+0400-052F, U+2DE0-2DFF, U+A640-A69F, U+1C80-1C8F;
}

@font-face {
  font-family: "CFM Inter";
  src: url("../fonts/cfm-inter-latin-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  unicode-range: U+0000-024F, U+1E00-1EFF;
}

:root {
  --cfm-font: "Golos Text", Arial, sans-serif;
  --cfm-canvas: #f8f8f8;
  --cfm-surface: #ffffff;
  --cfm-ink: #151515;
  --cfm-text: #292929;
  --cfm-muted: #696969;
  --cfm-faint: #b7b7b7;
  --cfm-line: #e4e4e4;
  --cfm-green: #22d5a1;
  --cfm-green-dark: #159a71;
  --cfm-green-deep: #0b664c;
  --cfm-green-soft: #e4f8f1;
  --cfm-night: #151515;
  --cfm-link: #1769d2;
  --cfm-radius: 20px;
  --cfm-control-radius: 12px;
  --cfm-max: 1200px;
  --cfm-page-start: 20px;
  --cfm-sticky-offset: 20px;
  --cfm-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  font-family: var(--cfm-font);
  background: var(--cfm-canvas);
}

body.cfm-v4-site {
  min-width: 0;
  margin: 0;
  overflow: visible;
  background: var(--cfm-canvas);
  color: var(--cfm-text);
  font-family: var(--cfm-font);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.cfm-v4-site button,
body.cfm-v4-site input,
body.cfm-v4-site textarea,
body.cfm-v4-site select {
  font-family: var(--cfm-font);
  letter-spacing: 0;
}

body.cfm-v4-site a {
  color: inherit;
  text-decoration: none;
}

/* Replace ColorMag's dotted focus outline and show a ring only for Tab navigation. */
body.cfm-v4-site :focus {
  outline: 0;
}

html.cfm-v4-keyboard-focus body.cfm-v4-site :focus-visible {
  outline: 2px solid var(--cfm-green-dark);
  outline-offset: 3px;
}

body.cfm-v4-site img {
  display: block;
  max-width: 100%;
}

body.cfm-v4-site h1,
body.cfm-v4-site h2,
body.cfm-v4-site h3,
body.cfm-v4-site h4,
body.cfm-v4-site p {
  margin-top: 0;
}

body.cfm-v4-site h1,
body.cfm-v4-site h2,
body.cfm-v4-site h3,
body.cfm-v4-site h4,
body.cfm-v4-site h5,
body.cfm-v4-site h6 {
  font-family: var(--cfm-font);
}

.cfm-v4-container {
  width: min(100%, var(--cfm-max));
  margin-inline: auto;
  padding-inline: 10px;
}

.cfm-v4-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.cfm-v4-skip-link:focus {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  background: #fff;
  color: #111;
}

/* Header */

.cfm-v4-header {
  position: relative;
  z-index: 100;
  width: 100%;
  height: 80px;
  background: var(--cfm-canvas);
}

.cfm-v4-header-inner {
  display: grid;
  grid-template-columns: 190px 190px minmax(160px, 1fr) auto;
  align-items: center;
  gap: 24px;
  width: min(100%, var(--cfm-max));
  height: 80px;
  margin-inline: auto;
  padding-inline: 10px;
}

.cfm-v4-logo {
  display: flex;
  align-items: center;
  width: 190px;
  height: 40px;
  outline: 0;
  -webkit-tap-highlight-color: transparent;
}

.cfm-v4-logo img {
  width: 180px;
  height: 36px;
  object-fit: contain;
  object-position: left center;
}

.cfm-v4-logo:focus {
  outline: 0;
}

.cfm-v4-logo:focus-visible {
  outline: 0;
  box-shadow: inset 0 -2px 0 var(--cfm-green-dark);
}

.cfm-v4-sections {
  position: relative;
  min-width: 0;
}

.cfm-v4-section-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 180px;
  height: 40px;
  margin: 0;
  padding: 0 14px;
  border: 0;
  border-radius: var(--cfm-control-radius);
  background: var(--cfm-green-soft);
  box-shadow: none;
  color: var(--cfm-ink);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  white-space: nowrap;
  cursor: pointer;
  transform: none;
  transition: background-color 180ms ease-out, color 180ms ease-out, box-shadow 180ms ease-out;
}

.cfm-v4-section-trigger:hover,
.cfm-v4-section-trigger:focus {
  background: #d9f4eb;
  color: var(--cfm-ink);
  box-shadow: none;
  transform: none;
}

.cfm-v4-sections.is-open .cfm-v4-section-trigger {
  background: #d1f2e7;
  color: var(--cfm-ink);
  box-shadow: none;
}

.cfm-v4-section-trigger .cfm-v4-icon {
  width: 18px;
  height: 18px;
  transition: transform 320ms var(--cfm-ease);
}

.cfm-v4-sections.is-open .cfm-v4-section-trigger .cfm-v4-icon {
  transform: rotate(180deg);
}

.cfm-v4-primary-nav a:focus-visible,
.cfm-v4-mobile-actions button:focus-visible {
  outline: 2px solid var(--cfm-green-dark);
  outline-offset: 3px;
}

.cfm-v4-section-trigger:focus-visible {
  outline: 0;
  box-shadow: none;
}

.cfm-v4-sections-panel {
  position: absolute;
  z-index: 120;
  top: 59px;
  left: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: 32px;
  width: min(840px, calc(100vw - 230px));
  padding: 26px 28px 28px;
  visibility: hidden;
  opacity: 0;
  border: 1px solid var(--cfm-line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 24px 64px rgb(0 0 0 / 14%);
  pointer-events: none;
  transform: translateY(-8px);
  transform-origin: top left;
  transition: opacity 190ms ease-out, transform 280ms var(--cfm-ease), visibility 0s linear 280ms;
  will-change: opacity, transform;
}

.cfm-v4-sections-close {
  display: none;
}

.cfm-v4-sections.is-open .cfm-v4-sections-panel {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}

.cfm-v4-sections-panel > * {
  opacity: 0;
  transform: none;
  transition: opacity 180ms ease-out;
}

.cfm-v4-sections.is-open .cfm-v4-sections-primary {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 70ms;
}

.cfm-v4-sections.is-open .cfm-v4-sections-tasks {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 110ms;
}

.cfm-v4-sections-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  min-height: 44px;
  margin-bottom: 16px;
}

.cfm-v4-sections-heading > div {
  display: grid;
  gap: 2px;
}

.cfm-v4-sections-heading span {
  color: var(--cfm-muted);
  font-size: 12px;
  font-weight: 500;
}

.cfm-v4-sections-heading strong {
  color: var(--cfm-ink);
  font-size: 19px;
  font-weight: 620;
  line-height: 1.2;
}

.cfm-v4-sections-heading > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--cfm-green-dark);
  font-size: 13px;
  font-weight: 600;
}

.cfm-v4-sections-heading > a .cfm-v4-icon {
  width: 16px;
  height: 16px;
}

.cfm-v4-menu-feed-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 42px;
  margin-top: 14px;
  padding: 9px 13px;
  border-radius: var(--cfm-control-radius);
  background: var(--cfm-green-soft);
  color: var(--cfm-ink);
  font-size: 14px;
  font-weight: 620;
  transition: background-color 180ms ease-out, color 180ms ease-out;
}

.cfm-v4-menu-feed-link .cfm-v4-icon {
  width: 16px;
  height: 16px;
  transition: transform 220ms var(--cfm-ease);
}

.cfm-v4-menu-feed-link:hover,
.cfm-v4-menu-feed-link:focus-visible {
  background: #d9f4eb;
  color: var(--cfm-green-dark);
}

.cfm-v4-menu-feed-link:hover .cfm-v4-icon,
.cfm-v4-menu-feed-link:focus-visible .cfm-v4-icon {
  transform: translateX(3px);
}

.cfm-v4-sections-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 22px;
}

.cfm-v4-sections-grid a,
.cfm-v4-sections-tasks nav a {
  min-width: 0;
  border-radius: 0;
  color: var(--cfm-ink);
  transition: color 160ms ease-out;
}

.cfm-v4-sections-grid a {
  display: flex;
  align-items: center;
  min-height: 43px;
  padding: 9px 0;
  border-bottom: 1px solid var(--cfm-line);
  font-size: 15px;
  font-weight: 560;
  line-height: 1.25;
}

.cfm-v4-sections-grid a:hover,
.cfm-v4-sections-grid a:focus-visible,
.cfm-v4-sections-tasks nav a:hover,
.cfm-v4-sections-tasks nav a:focus-visible {
  background: transparent;
  color: var(--cfm-green-dark);
}

.cfm-v4-sections-grid .cfm-v4-menu-feed-link {
  justify-content: space-between;
  min-height: 35px;
  align-self: center;
  margin: 4px 0;
  padding: 7px 10px;
  border-bottom: 0;
  border-radius: var(--cfm-control-radius);
  background: var(--cfm-green-soft);
  color: var(--cfm-ink);
  font-size: 14px;
  font-weight: 620;
}

.cfm-v4-sections-grid .cfm-v4-menu-feed-link:hover,
.cfm-v4-sections-grid .cfm-v4-menu-feed-link:focus-visible {
  background: #d9f4eb;
  color: var(--cfm-green-dark);
}

.cfm-v4-sections-tasks {
  padding-left: 32px;
  border-left: 1px solid var(--cfm-line);
}

.cfm-v4-sections-tasks nav {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.cfm-v4-sections-tasks nav a {
  display: grid;
  gap: 1px;
  padding: 8px 0 9px;
  border-bottom: 1px solid var(--cfm-line);
}

.cfm-v4-sections-tasks nav a > span {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}

.cfm-v4-sections-tasks nav a > small {
  overflow: hidden;
  color: var(--cfm-muted);
  font-size: 11px;
  font-weight: 450;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cfm-v4-menu-navigator-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 15px;
  color: var(--cfm-green-dark);
  font-size: 13px;
  font-weight: 600;
}

.cfm-v4-menu-navigator-link .cfm-v4-icon {
  width: 16px;
  height: 16px;
  transition: transform 220ms var(--cfm-ease);
}

.cfm-v4-menu-navigator-link:hover .cfm-v4-icon,
.cfm-v4-menu-navigator-link:focus-visible .cfm-v4-icon {
  transform: translateX(3px);
}

.cfm-v4-primary-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  min-width: 0;
}

.cfm-v4-tablet-nav {
  display: none;
}

.cfm-v4-primary-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--cfm-ink);
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
}

.cfm-v4-primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--cfm-green);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 220ms ease-out;
}

.cfm-v4-primary-nav a:hover::after,
.cfm-v4-primary-nav a:focus-visible::after {
  transform: scaleX(1);
}

.cfm-v4-tablet-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--cfm-green);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 220ms ease-out;
}

.cfm-v4-tablet-nav a.is-active::after,
.cfm-v4-tablet-nav a:hover::after,
.cfm-v4-tablet-nav a:focus-visible::after {
  transform: scaleX(1);
}

.cfm-v4-header-tools {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
}

.cfm-v4-header-search {
  position: relative;
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) 32px;
  align-items: center;
  width: 230px;
  height: 40px;
  margin: 0;
  padding: 0 5px 0 10px;
  border: 0;
  border-radius: var(--cfm-control-radius);
  background: #fff;
  box-shadow: none;
  transition: background-color 160ms ease-out, box-shadow 160ms ease-out;
}

.cfm-v4-header-search:focus-within {
  background: #fff;
  box-shadow: none;
}

.cfm-v4-header-search > .cfm-v4-icon {
  width: 20px;
  height: 20px;
  color: #a7a7a7;
}

.cfm-v4-header-search input[type="search"] {
  width: 100%;
  height: 36px;
  margin: 0;
  padding: 0 8px;
  border: 0;
  border-radius: 0;
  outline: 0;
  background: transparent;
  box-shadow: none;
  color: var(--cfm-ink);
  font-size: 14px;
}

.cfm-v4-header-search input[type="search"]::placeholder {
  color: #b8b8b8;
  opacity: 1;
}

.cfm-v4-header-search > button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--cfm-ink);
  cursor: pointer;
}

.cfm-v4-header-search > button .cfm-v4-icon {
  width: 16px;
  height: 16px;
}

.cfm-v4-header-search > button:hover,
.cfm-v4-header-search > button:focus-visible {
  background: var(--cfm-green-soft);
}

.cfm-v4-header-bookmark,
.cfm-v4-mobile-actions button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: var(--cfm-control-radius);
  background: #fff;
  box-shadow: none;
  color: #20242a;
  cursor: pointer;
}

.cfm-v4-header-bookmark:focus {
  outline: 0;
}

.cfm-v4-header-bookmark:hover,
.cfm-v4-header-bookmark:focus-visible {
  outline: 0;
  background: var(--cfm-green-soft);
  box-shadow: none;
  color: var(--cfm-green-dark);
}

.cfm-v4-header-bookmark > span[data-cfm-saved-count] {
  position: absolute;
  top: -4px;
  right: -4px;
  display: none;
  place-items: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--cfm-green);
  color: #073d2e;
  font-size: 10px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  line-height: 20px;
  text-align: center;
  text-indent: 0;
}

.cfm-v4-header-bookmark > span[data-cfm-saved-count].is-visible {
  display: grid;
}

.cfm-v4-header-bookmark [data-cfm-saved-count-value] {
  display: block;
  min-width: 0;
  height: 20px;
  line-height: 20px;
  text-align: center;
  transform: none;
}

.cfm-v4-mobile-actions,
.cfm-v4-mobile-panel {
  display: none;
}

/* Inline smart search */

.cfm-search-popover {
  position: fixed;
  z-index: 180;
  display: none;
  max-height: min(620px, calc(100vh - 96px));
  padding: 14px;
  overflow-y: auto;
  border: 1px solid var(--cfm-line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 8px rgb(0 0 0 / 9%);
}

.cfm-search-popover.is-open {
  display: block;
}

.cfm-search-popover-status {
  display: block;
  padding: 2px 4px 10px;
  color: var(--cfm-muted);
  font-size: 12px;
  font-weight: 550;
}

.cfm-search-popover-results,
.cfm-smart-search-results {
  display: grid;
  gap: 4px;
}

.cfm-smart-result {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  padding: 10px;
  border-radius: 10px;
  background: #fff;
}

.cfm-smart-result:hover,
.cfm-smart-result:focus-visible {
  background: var(--cfm-canvas);
}

.cfm-smart-result-media {
  width: 72px;
  height: 58px;
  border-radius: 8px;
  background-position: center;
  background-size: cover;
}

.cfm-smart-result-copy {
  display: grid;
  align-content: center;
  min-width: 0;
}

.cfm-smart-result-meta {
  display: flex;
  align-items: center;
  gap: 7px;
  overflow: hidden;
  color: var(--cfm-muted);
  font-size: 11px;
  font-weight: 550;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cfm-smart-result-category {
  color: var(--cfm-green-dark);
  font-weight: 650;
}

.cfm-smart-result-views {
  color: #777;
  font-weight: 500;
}

.cfm-smart-result-views::before {
  margin-right: 7px;
  color: var(--cfm-faint);
  content: "·";
}

.cfm-search-popover.is-loading .cfm-search-popover-results {
  opacity: .58;
}

.cfm-smart-result-copy strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--cfm-ink);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.cfm-smart-result-copy > span:last-child:not(.cfm-smart-result-meta) {
  display: none;
}

.cfm-smart-empty {
  padding: 18px;
  color: var(--cfm-muted);
  font-size: 14px;
}

/* Page and hero */

.cfm-v4-main {
  display: block;
  width: 100%;
}

.cfm-v4-hero,
.cfm-v4-category-hero {
  display: grid;
  grid-template-columns: minmax(0, 860px) 300px;
  gap: 20px;
  margin-top: var(--cfm-page-start);
}

.cfm-v4-hero > .cfm-v4-hero-card {
  grid-column: 1;
  grid-row: 1;
}

.cfm-v4-hero > .cfm-v4-next {
  grid-column: 2;
  grid-row: 1;
}

.cfm-v4-hero-card {
  position: relative;
  height: 458px;
  overflow: hidden;
  border-radius: var(--cfm-radius);
  background: #e5e5e5;
  cursor: grab;
  isolation: isolate;
  touch-action: pan-y;
}

.cfm-v4-hero-card.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.cfm-v4-hero-card .cfm-story-title,
.cfm-v4-hero-card .cfm-story-deck {
  cursor: text;
  user-select: text;
}

.cfm-v4-hero-card a {
  -webkit-user-drag: none;
}

.cfm-v4-hero-card .cfm-story-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  background-color: #e5e5e5;
  background-position: center;
  background-size: cover;
}

.cfm-v4-hero-card .cfm-story-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(8 10 10 / 82%) 0%, rgb(8 10 10 / 58%) 44%, rgb(8 10 10 / 12%) 78%, transparent 100%);
  content: "";
}

.cfm-v4-hero-card .cfm-story-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: min(62%, 590px);
  height: 100%;
  padding: 30px;
  color: #fff;
}

.cfm-v4-hero-card .cfm-story-copy {
  width: 100%;
  min-width: 0;
}

.cfm-v4-hero-card .cfm-story-category {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 9px;
  background: #fff;
  color: var(--cfm-green-dark);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.2;
}

.cfm-v4-hero-card .cfm-story-title {
  margin: 24px 0 12px;
  color: #fff;
  font-size: 34px;
  font-weight: 650;
  line-height: 1.16;
  text-wrap: balance;
}

.cfm-v4-hero-card .cfm-story-title a {
  color: inherit;
}

.cfm-v4-hero-card .cfm-story-deck {
  display: -webkit-box;
  max-width: 550px;
  margin-bottom: 18px;
  overflow: hidden;
  color: rgb(255 255 255 / 92%);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.55;
  text-wrap: pretty;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.cfm-v4-hero-card .cfm-story-meta {
  display: none;
}

.cfm-v4-hero-card .cfm-story-open {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 46px;
  margin-top: auto;
  padding: 10px 18px;
  border-radius: 10px;
  background: var(--cfm-green);
  color: #073d2e;
  font-size: 15px;
  font-weight: 700;
}

.cfm-v4-hero-card .cfm-story-open:hover,
.cfm-v4-hero-card .cfm-story-open:focus-visible {
  background: #36dfae;
}

.cfm-v4-hero-status {
  display: none !important;
  z-index: 6;
  grid-column: 1;
  grid-row: 1;
  grid-template-columns: minmax(76px, 96px) auto;
  align-items: center;
  align-self: end;
  justify-self: end;
  gap: 11px;
  min-width: 148px;
  min-height: 38px;
  margin: 0 22px 22px 0;
  padding: 8px 11px;
  border-radius: 8px;
  background: rgb(8 10 10 / 68%);
  backdrop-filter: blur(8px);
  color: #fff;
  pointer-events: none;
}

.cfm-hero-progress {
  height: 2px;
  overflow: hidden;
  background: rgb(255 255 255 / 35%);
}

.cfm-hero-progress > span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--cfm-green);
  transform: scaleX(0);
  transform-origin: left center;
}

.cfm-v4-hero.is-progressing .cfm-hero-progress > span {
  animation: cfm-v4-hero-progress-fill 7.2s linear both;
}

.cfm-v4-hero.is-paused .cfm-hero-progress > span {
  animation-play-state: paused;
}

.cfm-v4-hero-count {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  font-weight: 650;
  line-height: 1;
  white-space: nowrap;
}

.cfm-v4-hero-count [data-cfm-hero-total] {
  color: rgb(255 255 255 / 62%);
}

.cfm-v4-next,
.cfm-v4-post-stack,
.cfm-v4-dealer-nav {
  overflow: hidden;
  border-radius: var(--cfm-radius);
  background: #fff;
}

.cfm-v4-next {
  height: 458px;
  padding: 16px 20px 8px;
}

.cfm-v4-next > h2,
.cfm-v4-post-stack > h2,
.cfm-v4-dealer-nav > h2 {
  margin: 0;
  color: var(--cfm-ink);
  font-size: 20px;
  font-weight: 650;
  line-height: 1.25;
  text-wrap: balance;
}

#dealer-navigator {
  scroll-margin-top: 24px;
}

.cfm-v4-next-list {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  height: calc(100% - 42px);
  margin-top: 8px;
}

.cfm-v4-next-story {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--cfm-line);
  background: #fff;
}

.cfm-v4-next-story:last-child {
  border-bottom: 0;
}

.cfm-v4-next-story:nth-child(n + 4) {
  display: none;
}

.cfm-v4-next-story > .cfm-story-media,
.cfm-v4-next-story .cfm-story-deck,
.cfm-v4-next-story .cfm-story-meta,
.cfm-v4-next-story .cfm-story-open {
  display: none;
}

.cfm-v4-next-story .cfm-story-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  padding: 14px 0;
}

.cfm-v4-next-story .cfm-story-category {
  margin-bottom: 8px;
  color: var(--cfm-green-dark);
  font-size: 12px;
  font-weight: 650;
}

.cfm-v4-next-story .cfm-story-title {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--cfm-ink);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.34;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.cfm-story-card--transition-copy {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  will-change: transform;
}

.cfm-v4-hero-card.is-rotating-in > .cfm-story-media {
  animation: cfm-v4-lead-media-in 640ms var(--cfm-ease) both;
}

.cfm-v4-hero-card.is-rotating-in > .cfm-story-content {
  animation: cfm-v4-lead-copy-in 520ms 80ms var(--cfm-ease) both;
}

.cfm-v4-hero-card > .cfm-story-card--transition-copy.is-rotating-away {
  animation: cfm-v4-lead-frame-out-left 640ms var(--cfm-ease) both;
}

.cfm-v4-hero-card > .cfm-story-card--transition-copy.is-rotating-away.is-rotating-back {
  animation-name: cfm-v4-lead-frame-out-right;
}

.cfm-v4-next-story.is-rotating-in > .cfm-story-content {
  animation: cfm-v4-queue-in 560ms var(--cfm-ease) both;
}

.cfm-v4-next-story > .cfm-story-card--transition-copy.is-rotating-away {
  animation: cfm-v4-queue-out 520ms var(--cfm-ease) both;
}

@keyframes cfm-v4-lead-media-in {
  from { transform: scale(1.025); }
  to { transform: scale(1); }
}

@keyframes cfm-v4-lead-copy-in {
  from { opacity: 0; transform: translateX(26px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes cfm-v4-lead-frame-out-left {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

@keyframes cfm-v4-lead-frame-out-right {
  from { transform: translateX(0); }
  to { transform: translateX(100%); }
}

@keyframes cfm-v4-hero-progress-fill {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes cfm-v4-queue-in {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes cfm-v4-queue-out {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(-100%); }
}

/* Feed cards and rails */

.cfm-v4-home-content,
.cfm-v4-category-content {
  display: grid;
  grid-template-columns: minmax(0, 860px) 300px;
  gap: 20px;
  align-items: start;
  margin-top: 20px;
}

.cfm-v4-feed-shell,
.cfm-v4-home-rail,
.cfm-v4-category-rail {
  min-width: 0;
}

.cfm-v4-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.cfm-v4-story-card {
  position: relative;
  display: grid;
  grid-template-rows: 150px minmax(204px, auto);
  min-width: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--cfm-radius);
  background: #fff;
  box-shadow: none;
}

.cfm-v4-story-card[hidden] {
  display: none;
}

.cfm-v4-story-media-wrap {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #e5e5e5;
}

.cfm-v4-story-media {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #e5e5e5;
}

.cfm-v4-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cfm-v4-story-card .cfm-v4-story-media img,
.cfm-v4-focus-story .cfm-v4-story-media img {
  display: block;
  transform: translate3d(0, 0, 0) scale(1.001);
  transform-origin: center;
  backface-visibility: hidden;
  will-change: transform;
  transition: transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) and (pointer: fine) {
  .cfm-v4-story-card:hover .cfm-v4-story-media img,
  .cfm-v4-story-card:focus-within .cfm-v4-story-media img,
  .cfm-v4-focus-story:hover .cfm-v4-story-media img,
  .cfm-v4-focus-story:focus-within .cfm-v4-story-media img {
    transform: translate3d(0, 0, 0) scale(1.035);
  }
}

.cfm-v4-story-media.is-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c2c2c2;
}

.cfm-v4-placeholder-icon {
  width: 64px;
  height: 64px;
}

.cfm-v4-bookmark {
  position: absolute;
  z-index: 3;
  top: 10px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 9px;
  background: #fff;
  box-shadow: none;
  color: #20242a;
  cursor: pointer;
}

.cfm-v4-bookmark .cfm-v4-icon {
  width: 19px;
  height: 19px;
}

.cfm-v4-bookmark:hover,
.cfm-v4-bookmark:focus-visible {
  background: #f3f5f4;
  color: var(--cfm-green-dark);
}

.cfm-v4-bookmark.is-saved {
  border-color: transparent;
  background: var(--cfm-green);
  color: #084b39;
}

.cfm-v4-bookmark.is-saved .cfm-v4-icon {
  fill: currentColor;
}

.cfm-v4-bookmark:focus-visible {
  outline: 2px solid var(--cfm-green-dark);
  outline-offset: 2px;
}

.cfm-v4-story-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 18px 20px 20px;
}

.cfm-v4-story-kicker {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.cfm-v4-story-kicker a {
  overflow: hidden;
  color: var(--cfm-green-dark);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cfm-v4-story-kicker time {
  flex: 0 0 auto;
  color: var(--cfm-faint);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.cfm-v4-story-body h2,
.cfm-v4-story-body h3 {
  display: -webkit-box;
  margin: 0 0 10px;
  overflow: hidden;
  color: var(--cfm-ink);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.38;
  text-wrap: pretty;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.cfm-v4-story-body h2 a,
.cfm-v4-story-body h3 a {
  color: inherit;
}

.cfm-v4-story-body p {
  display: -webkit-box;
  margin: auto 0 0;
  overflow: hidden;
  color: #4d4d4d;
  font-size: 13px;
  line-height: 1.5;
  text-wrap: pretty;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.cfm-v4-feed-empty,
.cfm-v4-category-empty {
  padding: 36px;
  border-radius: var(--cfm-radius);
  background: #fff;
}

.cfm-v4-feed-empty h2,
.cfm-v4-category-empty h2 {
  margin-bottom: 8px;
  color: var(--cfm-ink);
  font-size: 22px;
  font-weight: 650;
}

.cfm-v4-feed-empty p,
.cfm-v4-category-empty p {
  margin: 0;
  color: var(--cfm-muted);
}

.cfm-v4-dealer-nav {
  padding: 18px 20px 20px;
}

.cfm-v4-dealer-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.cfm-v4-dealer-list a {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 44px;
  color: var(--cfm-ink);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.25;
}

.cfm-v4-dealer-list a:hover,
.cfm-v4-dealer-list a:focus-visible {
  color: var(--cfm-green-dark);
}

.cfm-v4-dealer-list a:focus-visible {
  outline: 2px solid var(--cfm-green-dark);
  outline-offset: 3px;
}

.cfm-v4-dealer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--cfm-green-soft);
}

.cfm-v4-dealer-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  transform-origin: center;
  transition: transform 320ms var(--cfm-ease);
}

.cfm-v4-dealer-list a:hover .cfm-v4-dealer-icon img,
.cfm-v4-dealer-list a:focus-visible .cfm-v4-dealer-icon img {
  transform: translateY(-1px) rotate(-5deg) scale(1.035);
}

.cfm-v4-post-stack {
  padding: 18px 20px 8px;
}

.cfm-v4-post-stack-list {
  display: grid;
  margin-top: 10px;
}

.cfm-v4-post-stack-list > a {
  display: grid;
  gap: 8px;
  padding: 16px 0;
  border-bottom: 1px solid var(--cfm-line);
}

.cfm-v4-post-stack-list > a:last-child {
  border-bottom: 0;
}

.cfm-v4-post-stack-list span {
  color: var(--cfm-green-dark);
  font-size: 12px;
  font-weight: 650;
}

.cfm-v4-post-stack-list strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--cfm-ink);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

/* Editorial focus and popular */

.cfm-v4-focus {
  margin-top: 64px;
  padding: 30px;
  border-radius: var(--cfm-radius);
  background: var(--cfm-night);
  color: #fff;
}

.cfm-v4-focus > h2 {
  margin: 0 0 38px;
  color: var(--cfm-green);
  font-size: 20px;
  font-weight: 550;
}

.cfm-v4-focus-story--focus {
  display: grid;
  grid-template-columns: 350px minmax(0, 1fr);
  align-items: center;
  gap: 30px;
}

.cfm-v4-focus-story--focus > .cfm-v4-story-media {
  height: 210px;
  border-radius: var(--cfm-radius);
}

.cfm-v4-focus-copy h3 {
  margin: 0 0 16px;
  color: inherit;
  font-size: 30px;
  font-weight: 650;
  line-height: 1.22;
  text-wrap: balance;
}

.cfm-v4-focus-copy p {
  margin: 0;
  color: rgb(255 255 255 / 78%);
  font-size: 15px;
  line-height: 1.55;
  text-wrap: pretty;
}

.cfm-v4-focus-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgb(255 255 255 / 34%);
}

.cfm-v4-focus-story--focus-small > .cfm-v4-story-media {
  height: 132px;
  border-radius: var(--cfm-radius);
}

.cfm-v4-focus-story--focus-small .cfm-v4-focus-copy {
  padding-top: 14px;
}

.cfm-v4-focus-story--focus-small .cfm-v4-focus-copy h3 {
  display: -webkit-box;
  margin-bottom: 10px;
  overflow: hidden;
  font-size: 15px;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.cfm-v4-focus-story--focus-small .cfm-v4-focus-copy p {
  display: -webkit-box;
  overflow: hidden;
  font-size: 12px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.cfm-v4-popular {
  padding: 64px 0 72px;
}

.cfm-v4-popular-head {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 40px;
  margin-bottom: 28px;
}

.cfm-v4-popular-head h2 {
  margin: 0;
  color: var(--cfm-ink);
  font-size: 18px;
  font-weight: 650;
}

.cfm-v4-popular-head nav {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  gap: 8px;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.cfm-v4-popular-head nav::-webkit-scrollbar {
  display: none;
}

.cfm-v4-popular-head nav a,
.cfm-v4-popular-head nav button {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 7px 14px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--cfm-ink);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transform: none;
}

.cfm-v4-popular-head nav a.is-active,
.cfm-v4-popular-head nav a:hover,
.cfm-v4-popular-head nav a:focus-visible,
.cfm-v4-popular-head nav button.is-active,
.cfm-v4-popular-head nav button:hover,
.cfm-v4-popular-head nav button:focus-visible {
  background: var(--cfm-green-soft);
  color: var(--cfm-green-deep);
}

.cfm-v4-popular-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.cfm-v4-popular-grid[hidden] {
  display: none;
}

.cfm-v4-focus-story--popular {
  position: relative;
  height: 380px;
  overflow: hidden;
  border-radius: var(--cfm-radius);
  background: #333;
}

.cfm-v4-focus-story--popular > .cfm-v4-story-media {
  position: absolute;
  inset: 0;
}

.cfm-v4-focus-story--popular > .cfm-v4-story-media::after {
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(180deg, transparent, rgb(0 0 0 / 82%));
  content: "";
}

.cfm-v4-focus-story--popular .cfm-v4-focus-copy {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 24px;
  color: #fff;
}

.cfm-v4-focus-category {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 9px;
  border-radius: 8px;
  background: #fff;
  color: var(--cfm-green-dark) !important;
  font-size: 12px;
  font-weight: 650;
}

.cfm-v4-focus-story--popular .cfm-v4-focus-copy h3 {
  display: -webkit-box;
  margin-bottom: 10px;
  overflow: hidden;
  font-size: 24px;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.cfm-v4-focus-story--popular .cfm-v4-focus-copy p {
  display: -webkit-box;
  overflow: hidden;
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/* Category */

.cfm-v4-category-head {
  padding: var(--cfm-page-start) 0 10px;
}

.cfm-v4-category-head h1 {
  margin: 0 0 28px;
  color: var(--cfm-ink);
  font-size: 38px;
  font-weight: 560;
  line-height: 1.15;
}

.cfm-v4-category-tabs {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}

.cfm-v4-category-tabs::-webkit-scrollbar {
  display: none;
}

.cfm-v4-category-tabs a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 7px 14px;
  border-radius: 11px;
  color: var(--cfm-ink);
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}

.cfm-v4-category-tabs a.is-active,
.cfm-v4-category-tabs a:hover,
.cfm-v4-category-tabs a:focus-visible {
  background: var(--cfm-green-soft);
  color: var(--cfm-green-deep);
}

.cfm-v4-category-hero {
  margin-top: 20px;
}

.cfm-v4-category-next {
  height: 458px;
}

.cfm-v4-category-content {
  margin-top: 24px;
  margin-bottom: 72px;
}

/* Article */

.cfm-v4-breadcrumbs {
  min-width: 0;
  margin: 0 0 22px;
  overflow: hidden;
  color: var(--cfm-muted);
  font-size: 13px;
  line-height: 1.45;
}

.cfm-v4-breadcrumbs ol {
  display: flex;
  width: 100%;
  min-width: 0;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  list-style: none;
  white-space: nowrap;
}

.cfm-v4-breadcrumbs li {
  display: inline-flex;
  flex: 0 0 auto;
  min-width: 0;
  align-items: center;
  gap: 0;
  white-space: nowrap;
}

.cfm-v4-breadcrumbs li:last-child {
  flex: 1 1 auto;
  overflow: hidden;
}

.cfm-v4-breadcrumbs li + li::before {
  flex: 0 0 auto;
  margin: 0 9px;
  color: #949494;
  content: "/";
}

.cfm-v4-breadcrumbs a {
  color: var(--cfm-link);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.cfm-v4-breadcrumbs [aria-current="page"] {
  display: block;
  min-width: 0;
  max-width: none;
  overflow: hidden;
  color: var(--cfm-muted);
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow-wrap: normal;
}

.cfm-v4-page-layout {
  padding-top: var(--cfm-page-start);
  padding-bottom: 72px;
}

.cfm-v4-page-article {
  width: 100%;
  max-width: 800px;
  min-width: 0;
  margin: 0 auto;
}

.cfm-v4-page-header {
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--cfm-line);
}

.cfm-v4-page-header h1 {
  max-width: 18ch;
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--cfm-ink);
  font-size: 38px;
  font-weight: 620;
  line-height: 1.18;
  text-wrap: balance;
}

.cfm-v4-page-content {
  width: 100%;
  max-width: 72ch;
}

.cfm-v4-single-grid {
  display: grid;
  grid-template-columns: minmax(0, 860px) 300px;
  gap: 20px;
  align-items: start;
  padding-top: var(--cfm-page-start);
  padding-bottom: 72px;
}

.cfm-v4-article,
.cfm-v4-single-rail {
  min-width: 0;
}

.cfm-v4-article-header {
  padding-bottom: 22px;
}

.cfm-v4-article-category {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--cfm-ink);
  font-size: 14px;
  font-weight: 550;
}

.cfm-v4-article-category > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  overflow: hidden;
  border-radius: 10px;
  background: var(--cfm-green-soft);
}

.cfm-v4-article-category img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.cfm-v4-article-header h1 {
  max-width: 860px;
  margin: 0 0 22px;
  overflow-wrap: anywhere;
  color: var(--cfm-ink);
  font-size: 38px;
  font-weight: 620;
  line-height: 1.18;
  text-wrap: balance;
}

.cfm-v4-article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  row-gap: 8px;
  min-height: 36px;
  color: #4d4d4d;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}

.cfm-v4-article-meta > span {
  color: var(--cfm-muted);
}

.cfm-v4-article-updated {
  white-space: nowrap;
}

.cfm-v4-article-reading-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.cfm-v4-article-reading-time > .cfm-v4-icon {
  width: 17px;
  height: 17px;
  color: #6f6f6f;
}

.cfm-v4-article-bookmark {
  position: static;
  width: 34px;
  height: 34px;
  border: 1px solid var(--cfm-line);
  border-radius: 10px;
}

.cfm-v4-article-cover {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 880 / 458;
  overflow: hidden;
  border-radius: var(--cfm-radius);
  background: #e5e5e5;
  color: #c2c2c2;
}

.cfm-v4-article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cfm-v4-article-cover .cfm-v4-placeholder-icon {
  width: 96px;
  height: 96px;
}

.cfm-v4-article-anchors {
  margin: 22px 0 30px;
  padding: 18px 20px 16px;
  border: 0;
  border-radius: 8px;
  background: #fff;
}

.cfm-v4-article-anchors-label {
  display: block;
  margin-bottom: 12px;
  color: var(--cfm-ink);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.25;
}

.cfm-v4-article-anchors ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cfm-v4-article-anchors li {
  min-width: 0;
}

.cfm-v4-article-anchors a {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 4px 0;
  border: 0;
  color: var(--cfm-ink);
  line-height: 1.35;
  text-decoration: none;
}

.cfm-v4-article-anchors a > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--cfm-green-soft);
  color: var(--cfm-green-dark);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  font-weight: 650;
  transition: background-color 160ms ease-out, color 160ms ease-out;
}

.cfm-v4-article-anchors a > strong {
  color: inherit;
  font-size: 15px;
  font-weight: 590;
}

.cfm-v4-article-anchors a:hover,
.cfm-v4-article-anchors a:focus-visible {
  color: var(--cfm-green-dark);
}

.cfm-v4-article-anchors a:hover > span,
.cfm-v4-article-anchors a:focus-visible > span {
  background: var(--cfm-green);
  color: #073d2e;
}

.cfm-author-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  border: 0;
}

.cfm-author-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  overflow: hidden;
  border-radius: 10px;
  background: transparent;
}

.cfm-author-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cfm-author-copy {
  min-width: 0;
}

.cfm-author-name {
  color: var(--cfm-ink);
  font-size: 14px;
  font-weight: 650;
}

.cfm-author-label {
  color: var(--cfm-muted);
  font-weight: 550;
}

.cfm-author-role {
  margin-top: 2px;
  color: var(--cfm-muted);
  font-size: 12px;
}

.cfm-v4-article-content {
  max-width: none;
  color: #292929;
  font-size: 17px;
  line-height: 1.68;
}

.cfm-v4-article-content *,
.cfm-v4-article-content *::before,
.cfm-v4-article-content *::after {
  box-sizing: border-box;
}

.cfm-v4-article-content > *:first-child {
  margin-top: 0;
}

.cfm-v4-article-content p,
.cfm-v4-article-content ul,
.cfm-v4-article-content ol,
.cfm-v4-article-content blockquote,
.cfm-v4-article-content figure,
.cfm-v4-article-content table {
  margin-top: 0;
  margin-bottom: 24px;
}

.cfm-v4-article-content ul,
.cfm-v4-article-content ol {
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
  padding-inline: 1.55em 0;
  list-style-position: outside;
}

.cfm-v4-article-content ul {
  list-style-type: disc;
}

.cfm-v4-article-content ol {
  list-style-type: decimal;
}

.cfm-v4-article-content li {
  margin-bottom: 9px;
  padding-left: .22em;
  overflow-wrap: anywhere;
}

.cfm-v4-article-content li::marker {
  color: var(--cfm-green-dark);
  font-weight: 650;
}

.cfm-v4-article-content li > ul,
.cfm-v4-article-content li > ol {
  margin-top: 9px;
  margin-bottom: 0;
}

.cfm-v4-article-content h2 {
  position: relative;
  margin: 48px 0 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--cfm-line);
  scroll-margin-top: 24px;
  color: var(--cfm-ink);
  font-size: 29px;
  font-weight: 650;
  line-height: 1.25;
  text-wrap: balance;
}

.cfm-v4-article-content h2::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 46px;
  height: 2px;
  background: var(--cfm-green-dark);
  content: "";
}

.cfm-v4-article-content h3 {
  margin: 34px 0 16px;
  color: var(--cfm-ink);
  font-size: 23px;
  font-weight: 650;
  line-height: 1.3;
}

.cfm-v4-article-content a {
  color: var(--cfm-link);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cfm-v4-article-content img {
  width: auto;
  height: auto;
  border-radius: 12px;
}

.cfm-v4-article-content blockquote {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
  padding: 24px 28px 24px 64px;
  border: 0;
  border-left: 4px solid var(--cfm-green-dark);
  border-radius: 0 8px 8px 0;
  background: #fff;
  color: var(--cfm-ink);
  font-size: 19px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.cfm-v4-article-content blockquote::before {
  position: absolute;
  top: 23px;
  left: 18px;
  color: var(--cfm-green-dark);
  content: "“";
  font-family: "Golos Text", Arial, sans-serif;
  font-size: 46px;
  font-weight: 650;
  line-height: .8;
}

.cfm-v4-article-content blockquote p,
.cfm-v4-article-content .wp-block-quote p {
  padding: 0;
  font-family: inherit;
  line-height: inherit;
}

.cfm-v4-article-content blockquote p::before,
.cfm-v4-article-content .wp-block-quote p::before {
  content: none;
}

.cfm-v4-article-content blockquote > :last-child {
  margin-bottom: 0;
}

.cfm-v4-article-content blockquote cite,
.cfm-v4-article-content .wp-block-quote cite {
  display: block;
  float: none;
  margin-top: 12px;
  color: var(--cfm-muted);
  font: inherit;
  font-size: 13px;
  font-weight: 550;
  letter-spacing: 0;
}

.cfm-v4-article-content .cfm-article-table-shell,
.cfm-v4-article-content .wp-block-table {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 0 24px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
}

.cfm-v4-article-content .cfm-article-table-shell:focus-visible,
.cfm-v4-article-content .wp-block-table:focus-visible {
  outline: 2px solid var(--cfm-link);
  outline-offset: 3px;
}

.cfm-v4-article-content table {
  display: block;
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  background: #fff;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
}

.cfm-v4-article-content .cfm-article-table-shell table,
.cfm-v4-article-content .wp-block-table table {
  display: table;
  width: 100%;
  min-width: 100%;
  max-width: none;
  margin: 0;
  overflow: visible;
  table-layout: auto;
}

.cfm-v4-article-content th,
.cfm-v4-article-content td {
  min-width: 9rem;
  padding: 12px;
  border: 1px solid var(--cfm-line);
  text-align: left;
  vertical-align: top;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.cfm-v4-article-content caption,
.cfm-v4-article-content figcaption {
  color: var(--cfm-muted);
  font-size: 14px;
  line-height: 1.45;
  text-align: left;
}

.cfm-v4-article-content caption {
  padding: 0 0 10px;
  caption-side: top;
}

.cfm-v4-article-content .wp-block-table figcaption {
  margin: 9px 0 0;
}

.cfm-v4-article-content strong {
  font-weight: 650;
}

.cfm-article-cta {
  position: relative;
  min-height: 280px;
  margin-top: 52px;
  overflow: hidden;
  border-radius: var(--cfm-radius);
  background: #c9f3e5;
}

.cfm-article-cta::after {
  position: absolute;
  top: -80px;
  right: -34px;
  width: 280px;
  height: 280px;
  border-radius: 58px;
  background: rgb(255 255 255 / 20%);
  content: "";
  transform: rotate(42deg);
}

.cfm-article-cta-copy {
  position: relative;
  z-index: 2;
  width: 66%;
  padding: 32px;
}

.cfm-article-cta h2 {
  margin: 0 0 16px;
  color: var(--cfm-ink);
  font-size: 30px;
  font-weight: 650;
  line-height: 1.25;
  text-wrap: balance;
}

.cfm-article-cta p {
  margin: 0 0 22px;
  color: #48625a;
  font-size: 15px;
  line-height: 1.55;
}

.cfm-article-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 20px;
  border-radius: 10px;
  background: var(--cfm-night);
  color: #fff !important;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none !important;
}

.cfm-article-cta-mascot {
  position: absolute;
  z-index: 1;
  right: 8px;
  bottom: -18px;
  width: 310px;
  height: auto;
}

.cfm-v4-reaction-section {
  margin-top: 24px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--cfm-line);
}

.cfm-v4-reaction-section > h2 {
  margin: 0 0 14px;
  color: var(--cfm-ink);
  font-size: 18px;
  font-weight: 650;
}

.cfm-reactions {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  width: min(100%, 340px);
}

.cfm-reaction,
.cfm-reaction:hover,
.cfm-reaction:focus,
.cfm-reaction:active {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: 100%;
  height: 44px;
  min-height: 44px;
  margin: 0;
  padding: 4px 2px;
  overflow: visible;
  border: 0;
  border-radius: 8px;
  outline: 0;
  background: transparent;
  box-shadow: none;
  color: var(--cfm-ink);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transform: none;
  transition: color 160ms ease-out, opacity 160ms ease-out;
}

.cfm-reaction:focus-visible {
  outline: 0;
  color: var(--cfm-green-dark);
  box-shadow: inset 0 -2px 0 var(--cfm-green-dark);
}

.cfm-reaction[data-loading="true"] {
  cursor: wait;
  opacity: .58;
}

.cfm-reaction-emoji {
  display: block;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  transform-origin: center;
}

.cfm-reaction-emoji img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cfm-reaction-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.cfm-reaction strong {
  display: block;
  min-width: 12px;
  height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #747b78;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  text-align: left;
  font-variant-numeric: tabular-nums;
}

.cfm-reaction.is-active {
  background: transparent;
  color: var(--cfm-green-dark);
}

.cfm-reaction.is-active strong {
  color: var(--cfm-green-dark);
}

.cfm-reaction-burst {
  position: fixed;
  z-index: 9999;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  font-size: 24px;
  line-height: 1;
  pointer-events: none;
  animation: cfm-v4-reaction-burst 900ms cubic-bezier(.2, .78, .25, 1) forwards;
}

.cfm-reaction-burst img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cfm-reaction-burst--left {
  animation-name: cfm-v4-reaction-burst-left;
}

.cfm-reaction-burst--right {
  animation-name: cfm-v4-reaction-burst-right;
}

.cfm-reaction.is-popping .cfm-reaction-emoji {
  animation: cfm-v4-reaction-emoji-pop 620ms cubic-bezier(.2, .9, .2, 1);
}

@keyframes cfm-v4-reaction-emoji-pop {
  0% { transform: scale(1) rotate(0deg); }
  36% { transform: scale(1.55) rotate(-9deg); }
  64% { transform: scale(.92) rotate(7deg); }
  100% { transform: scale(1) rotate(0deg); }
}

@keyframes cfm-v4-reaction-burst {
  0% { opacity: 0; transform: translate(-50%, 0) scale(.5) rotate(0deg); }
  15% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, -58px) scale(1.45) rotate(10deg); }
}

@keyframes cfm-v4-reaction-burst-left {
  0% { opacity: 0; transform: translate(-50%, 0) scale(.45) rotate(0deg); }
  15% { opacity: 1; }
  100% { opacity: 0; transform: translate(calc(-50% - 28px), -48px) scale(1.05) rotate(-18deg); }
}

@keyframes cfm-v4-reaction-burst-right {
  0% { opacity: 0; transform: translate(-50%, 0) scale(.45) rotate(0deg); }
  15% { opacity: 1; }
  100% { opacity: 0; transform: translate(calc(-50% + 28px), -50px) scale(1.05) rotate(18deg); }
}

.cfm-v4-related {
  padding-top: 46px;
}

.cfm-v4-related > h2 {
  margin: 0 0 22px;
  color: var(--cfm-ink);
  font-size: 21px;
  font-weight: 650;
}

.cfm-v4-single-rail {
  display: grid;
  gap: 20px;
}

.cfm-v4-single-rail .cfm-v4-post-stack,
.cfm-v4-single-rail .cfm-v4-dealer-nav {
  width: 100%;
}

.cfm-article-progress {
  position: fixed;
  z-index: 150;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: transparent;
  pointer-events: none;
}

.cfm-article-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--cfm-green);
  transform: scaleX(0);
  transform-origin: left center;
}

/* Search page */

.cfm-v4-search-head {
  padding: var(--cfm-page-start) 0 36px;
}

.cfm-v4-search-head > span {
  color: var(--cfm-green-dark);
  font-size: 14px;
  font-weight: 650;
}

.cfm-v4-search-head h1 {
  margin: 8px 0 24px;
  color: var(--cfm-ink);
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  text-wrap: balance;
}

.cfm-v4-search-head form {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  width: min(720px, 100%);
  height: 54px;
  padding: 0 6px 0 16px;
  border: 1px solid var(--cfm-line);
  border-radius: 14px;
  background: #fff;
}

.cfm-v4-search-head input {
  width: 100%;
  height: 52px;
  padding: 0 10px;
  border: 0;
  outline: 0;
  background: transparent;
}

body.cfm-v4-site .cfm-v4-search-head input[type="search"]:focus,
body.cfm-v4-site .cfm-v4-search-head input[type="search"]:focus-visible {
  border: 0;
  outline: 0;
  box-shadow: none;
}

body.cfm-v4-site .cfm-smart-search-form input[type="search"]:focus,
body.cfm-v4-site .cfm-smart-search-form input[type="search"]:focus-visible {
  border: 1px solid var(--cfm-line);
  outline: 0;
  box-shadow: none;
}

.cfm-v4-search-head button {
  min-height: 42px;
  padding: 8px 18px;
  border: 0;
  border-radius: 10px;
  background: var(--cfm-green);
  color: #073d2e;
  font-weight: 650;
}

.cfm-v4-search-layout {
  display: grid;
  grid-template-columns: minmax(0, 860px) 300px;
  gap: 20px;
  align-items: start;
  padding-bottom: 72px;
}

.navigation.pagination {
  margin-top: 28px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.nav-links .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 10px;
  background: #fff;
}

.nav-links .page-numbers.current {
  background: var(--cfm-green);
}

.cfm-v4-category-pagination {
  grid-column: 1 / -1;
}

/* Footer */

.cfm-v4-not-found-layout {
  display: grid;
  grid-template-columns: minmax(0, 860px) 300px;
  gap: 20px;
  align-items: start;
  min-height: 680px;
  padding-top: 88px;
  padding-bottom: 96px;
}

.cfm-v4-not-found {
  max-width: 720px;
}

.cfm-v4-not-found > span {
  color: var(--cfm-green-dark);
  font-size: 14px;
  font-weight: 650;
}

.cfm-v4-not-found h1 {
  margin: 14px 0 20px;
  color: var(--cfm-ink);
  font-size: 52px;
  font-weight: 620;
  line-height: 1.08;
}

.cfm-v4-not-found > p {
  max-width: 650px;
  margin: 0 0 30px;
  color: var(--cfm-muted);
  font-size: 18px;
  line-height: 1.55;
}

.cfm-v4-not-found form {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  width: min(100%, 650px);
  min-height: 58px;
  padding: 7px 7px 7px 16px;
  border: 1px solid var(--cfm-line);
  border-radius: 14px;
  background: #fff;
}

.cfm-v4-not-found form .cfm-v4-icon {
  color: var(--cfm-faint);
}

.cfm-v4-not-found form input {
  min-width: 0;
  height: 42px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  box-shadow: none;
}

.cfm-v4-not-found form button,
.cfm-v4-not-found-home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 9px 18px;
  border: 0;
  border-radius: 10px;
  background: var(--cfm-green);
  color: #073d2e;
  font-size: 14px;
  font-weight: 650;
}

.cfm-v4-not-found-home {
  margin-top: 14px;
  background: transparent;
  color: var(--cfm-ink);
}

.cfm-v4-footer {
  padding: 52px 0 22px;
  background: var(--cfm-night);
  color: #fff;
}

.cfm-v4-footer-inner {
  --cfm-footer-columns: 280px minmax(0, 1fr);
  --cfm-footer-column-gap: 70px;
  display: grid;
  grid-template-columns: var(--cfm-footer-columns);
  gap: 44px var(--cfm-footer-column-gap);
}

.cfm-v4-footer-brand > a {
  display: inline-block;
  width: 180px;
  height: 40px;
}

.cfm-v4-footer-brand img {
  width: 180px;
  height: 40px;
  border-radius: 0;
  object-fit: contain;
}

.cfm-v4-footer-logo:focus {
  outline: 0;
}

.cfm-v4-footer-logo:focus-visible {
  outline: 0;
  box-shadow: inset 0 -2px 0 var(--cfm-green);
}

.cfm-v4-footer-brand > p {
  margin: 20px 0;
  color: rgb(255 255 255 / 66%);
  font-size: 13px;
  line-height: 1.55;
}

.cfm-v4-footer-socials {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.cfm-v4-footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  box-sizing: border-box;
  text-decoration: none;
  transition: transform 180ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

@media (hover: hover) and (pointer: fine) {
  .cfm-v4-footer-social:hover {
    transform: translateY(-2px);
  }
}

a.cfm-v4-footer-social:focus-visible,
html.cfm-v4-keyboard-focus body.cfm-v4-site a.cfm-v4-footer-social:focus-visible {
  outline: 0;
  outline-offset: 0;
}

a.cfm-v4-footer-social:focus-visible img {
  filter:
    drop-shadow(0 0 1px rgb(255 255 255 / 95%))
    drop-shadow(0 0 5px var(--cfm-green));
}

.cfm-v4-footer-socials img {
  display: block;
  width: 30px;
  height: 30px;
  object-fit: contain;
  flex: 0 0 30px;
  pointer-events: none;
}

.cfm-v4-footer-social--max img {
  width: 32px;
  height: 32px;
  flex-basis: 32px;
}

.cfm-v4-footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.cfm-v4-footer-nav > div {
  display: grid;
  align-content: start;
  gap: 8px;
}

.cfm-v4-footer-nav h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 15px;
  font-weight: 650;
}

.cfm-v4-footer-nav a {
  color: rgb(255 255 255 / 66%);
  font-size: 13px;
  line-height: 1.35;
}

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

.cfm-v4-footer-bottom {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: var(--cfm-footer-columns);
  gap: 20px var(--cfm-footer-column-gap);
  align-items: center;
  margin-top: 4px;
  padding-top: 18px;
  border-top: 1px solid rgb(255 255 255 / 16%);
  color: rgb(255 255 255 / 48%);
  font-size: 12px;
}

.cfm-v4-footer-bottom p {
  margin: 0;
  line-height: 1.35;
}

.cfm-v4-footer-bottom a {
  color: inherit;
}

/* Lower-row tracks mirror the category and editorial columns above. */
.cfm-v4-footer-partners {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 20px 28px;
  min-width: 0;
}

.cfm-v4-footer-contact {
  grid-column: span 2;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  line-height: 1.35;
}

.cfm-v4-footer-contact > * {
  white-space: nowrap;
}

.cfm-v4-footer-support {
  display: flex;
  align-items: center;
  justify-self: start;
  width: 100px;
  max-width: 100%;
  min-height: 44px;
  border-radius: 0;
  transition: none;
}

.cfm-v4-footer-support img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  transition: none;
}

body.cfm-v4-site .cfm-v4-footer-support:focus-visible {
  outline: 2px solid var(--cfm-green);
  outline-offset: 5px;
}

@media (min-width: 900px) and (max-width: 1099px) {
  .cfm-v4-footer-inner {
    --cfm-footer-columns: 220px minmax(0, 1fr);
    --cfm-footer-column-gap: 48px;
  }
}

@media (min-width: 481px) and (max-width: 899px) {
  .cfm-v4-footer-bottom {
    grid-template-columns: minmax(0, 1fr) 112px;
    gap: 3px 16px;
  }

  .cfm-v4-footer-bottom > p {
    grid-column: 1;
    grid-row: 1;
  }

  .cfm-v4-footer-partners {
    display: contents;
  }

  .cfm-v4-footer-contact {
    grid-column: 1;
    grid-row: 2;
  }

  .cfm-v4-footer-support {
    grid-column: 2;
    grid-row: 1 / span 2;
    width: 112px;
  }
}

@media (max-width: 480px) {
  .cfm-v4-footer-partners {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .cfm-v4-footer-contact {
    grid-column: auto;
  }

  .cfm-v4-footer-support {
    width: 148px;
  }
}

/* Saved materials page */

.cfm-v4-saved-page-head {
  padding: 0 0 34px;
}

.cfm-v4-saved-page-head > span {
  color: var(--cfm-green-dark);
  font-size: 13px;
  font-weight: 650;
}

.cfm-v4-saved-page-head h1 {
  margin: 8px 0 14px;
  color: var(--cfm-ink);
  font-size: 38px;
  font-weight: 600;
  line-height: 1.15;
}

.cfm-v4-saved-page-head p {
  max-width: 650px;
  margin: 0;
  color: var(--cfm-muted);
  font-size: 16px;
  line-height: 1.55;
}

.cfm-v4-saved-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 860px) 300px;
  gap: 20px;
  align-items: start;
  min-height: 440px;
  padding: var(--cfm-page-start) 0 76px;
}

.cfm-v4-saved-page-main,
.cfm-v4-saved-page-content,
.cfm-v4-saved-page-rail {
  min-width: 0;
}

.cfm-v4-saved-page-rail {
  display: grid;
  align-self: start;
  gap: 20px;
}

@media (min-width: 900px) {
  .cfm-v4-home-rail,
  .cfm-v4-category-rail,
  .cfm-v4-search-rail {
    position: sticky;
    top: var(--cfm-sticky-offset);
    align-self: start;
  }

  .cfm-v4-single-rail,
  .cfm-v4-saved-page-rail {
    display: flex;
    flex-direction: column;
    align-self: stretch;
  }

  .cfm-v4-single-rail {
    margin-bottom: -72px;
  }

  .cfm-v4-single-rail .cfm-v4-post-stack,
  .cfm-v4-saved-page-rail .cfm-v4-post-stack {
    position: sticky;
    top: var(--cfm-sticky-offset);
    align-self: stretch;
  }
}

.cfm-v4-saved-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cfm-v4-saved-card {
  transition: opacity 220ms ease-out, transform 260ms var(--cfm-ease);
}

.cfm-v4-saved-card.is-removing {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(.985);
}

.cfm-v4-saved-card .cfm-v4-story-body h2 {
  display: -webkit-box;
  margin: 0 0 12px;
  overflow: hidden;
  color: var(--cfm-ink);
  font-size: 19px;
  font-weight: 620;
  line-height: 1.28;
  text-wrap: balance;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.cfm-v4-saved-page-loading {
  padding: 32px 0;
  color: var(--cfm-muted);
  font-size: 14px;
}

.cfm-v4-saved-page-empty {
  display: grid;
  justify-items: start;
  max-width: 620px;
  padding: 42px 0;
  border-top: 1px solid var(--cfm-line);
  border-bottom: 1px solid var(--cfm-line);
}

.cfm-v4-saved-page-empty > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border-radius: 12px;
  background: var(--cfm-green-soft);
  color: var(--cfm-green-dark);
}

.cfm-v4-saved-page-empty h2 {
  margin: 0 0 10px;
  color: var(--cfm-ink);
  font-size: 25px;
  font-weight: 620;
}

.cfm-v4-saved-page-empty p {
  margin: 0 0 22px;
  color: var(--cfm-muted);
  font-size: 15px;
}

.cfm-v4-saved-page-empty > a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 16px;
  border-radius: 10px;
  background: var(--cfm-green);
  color: #073d2e;
  font-size: 14px;
  font-weight: 650;
}

/* Saved panel and mobile search modal */

.cfm-v4-saved-open,
.cfm-modal-open {
  overflow: hidden;
}

.cfm-v4-saved-overlay,
.cfm-overlay {
  position: fixed;
  z-index: 300;
  inset: 0;
  display: grid;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition-property: opacity, visibility;
  transition-duration: 160ms;
  transition-timing-function: ease-out;
}

.cfm-v4-saved-overlay.is-open,
.cfm-overlay.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.cfm-v4-saved-backdrop,
.cfm-overlay-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgb(0 0 0 / 68%);
  backdrop-filter: blur(5px);
}

.cfm-v4-saved-panel,
.cfm-overlay-panel {
  position: relative;
  z-index: 1;
  width: min(620px, calc(100vw - 32px));
  max-height: min(760px, calc(100vh - 48px));
  padding: 24px;
  overflow-y: auto;
  border-radius: 16px;
  background: #fff;
  color: var(--cfm-ink);
}

.cfm-v4-saved-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.cfm-v4-saved-head h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 650;
}

.cfm-v4-saved-head button,
.cfm-overlay-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: var(--cfm-canvas);
  color: var(--cfm-ink);
}

.cfm-v4-saved-list {
  display: grid;
}

.cfm-v4-saved-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--cfm-line);
}

.cfm-v4-saved-row > a {
  color: var(--cfm-ink);
  font-weight: 600;
  line-height: 1.35;
}

.cfm-v4-saved-row > button {
  min-height: 36px;
  padding: 7px 10px;
  border: 0;
  border-radius: 9px;
  background: var(--cfm-canvas);
  color: var(--cfm-muted);
  font-size: 12px;
}

.cfm-v4-saved-empty {
  margin: 0;
  padding: 28px 0;
  color: var(--cfm-muted);
}

.cfm-search-panel > .cfm-overlay-kicker {
  color: var(--cfm-green-dark);
  font-size: 13px;
  font-weight: 650;
}

.cfm-search-panel > h2 {
  margin: 8px 52px 20px 0;
  color: var(--cfm-ink);
  font-size: 28px;
  font-weight: 650;
  line-height: 1.2;
}

.cfm-search-panel .cfm-overlay-close {
  position: absolute;
  top: 18px;
  right: 18px;
  cursor: pointer;
}

.cfm-search-panel .cfm-overlay-close::before,
.cfm-search-panel .cfm-overlay-close::after {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.cfm-search-panel .cfm-overlay-close::before {
  transform: rotate(45deg);
}

.cfm-search-panel .cfm-overlay-close::after {
  transform: rotate(-45deg);
}

.cfm-smart-search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.cfm-smart-search-form input {
  min-width: 0;
  height: 48px;
  padding: 0 14px;
  border: 1px solid var(--cfm-line);
  border-radius: 11px;
  outline: 0;
}

.cfm-smart-search-form button {
  min-height: 48px;
  padding: 9px 18px;
  border: 0;
  border-radius: 11px;
  background: var(--cfm-green);
  color: #073d2e;
  font-weight: 650;
}

.cfm-smart-search {
  margin-top: 18px;
}

.cfm-smart-search-head {
  margin-bottom: 8px;
  color: var(--cfm-muted);
  font-size: 12px;
}

.cfm-search-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.cfm-search-suggestions button {
  min-height: 34px;
  padding: 6px 10px;
  border: 0;
  border-radius: 9px;
  background: var(--cfm-green-soft);
  color: var(--cfm-green-dark);
  font-size: 12px;
  font-weight: 600;
}

/* Responsive */

@media (max-width: 1099px) {
  .cfm-v4-header-inner {
    grid-template-columns: 160px 182px minmax(130px, 1fr) auto;
    gap: 16px;
  }

  .cfm-v4-logo,
  .cfm-v4-logo img {
    width: 160px;
    height: auto;
  }

  .cfm-v4-section-trigger {
    width: 182px;
  }

  .cfm-v4-primary-nav {
    gap: 22px;
  }

  .cfm-v4-header-search {
    width: 210px;
  }

  .cfm-v4-hero,
  .cfm-v4-category-hero,
  .cfm-v4-home-content,
  .cfm-v4-category-content,
  .cfm-v4-single-grid,
  .cfm-v4-search-layout,
  .cfm-v4-saved-page-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
  }

  .cfm-v4-story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cfm-v4-focus-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 899px) {
  .cfm-v4-container {
    padding-inline: 12px;
  }

  .cfm-v4-header {
    height: 64px;
    background: #fff;
  }

  .cfm-v4-header-inner {
    display: flex;
    justify-content: space-between;
    height: 64px;
    padding-inline: 12px;
  }

  .cfm-v4-logo,
  .cfm-v4-logo img {
    width: 144px;
    height: 32px;
  }

  .cfm-v4-sections,
  .cfm-v4-primary-nav,
  .cfm-v4-header-tools {
    display: none;
  }

  .cfm-v4-mobile-actions {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .cfm-v4-mobile-actions button {
    width: 40px;
    height: 40px;
    background: var(--cfm-canvas);
  }

  .cfm-v4-mobile-menu-button .is-close-icon {
    display: none;
  }

  .cfm-v4-mobile-menu-button[aria-expanded="true"] .is-menu-icon {
    display: none;
  }

  .cfm-v4-mobile-menu-button[aria-expanded="true"] .is-close-icon {
    display: inline-flex;
  }

  .cfm-v4-mobile-panel {
    position: fixed;
    z-index: 115;
    top: 64px;
    right: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 24px;
    bottom: 0;
    max-height: none;
    padding: 20px 12px 28px;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    border-top: 1px solid var(--cfm-line);
    background: #fff;
    pointer-events: none;
    transition-property: opacity, visibility;
    transition-duration: 140ms;
  }

  .cfm-v4-mobile-panel[aria-hidden="false"] {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .cfm-v4-mobile-panel > nav {
    display: grid;
    align-content: start;
  }

  .cfm-v4-mobile-panel > nav a {
    padding: 10px 8px;
    border-bottom: 1px solid var(--cfm-line);
    color: var(--cfm-ink);
    font-weight: 600;
  }

  .cfm-v4-mobile-topics > strong {
    display: block;
    margin-bottom: 8px;
    color: var(--cfm-ink);
    font-size: 14px;
  }

  .cfm-v4-mobile-topics > div {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }

  .cfm-v4-mobile-topics a {
    display: inline-flex;
    min-height: 34px;
    padding: 6px 10px;
    border-radius: 9px;
    background: var(--cfm-green-soft);
    color: var(--cfm-ink);
    font-size: 12px;
  }

  .cfm-v4-mobile-open {
    overflow: hidden;
  }

  .cfm-v4-hero,
  .cfm-v4-category-hero,
  .cfm-v4-home-content,
  .cfm-v4-category-content,
  .cfm-v4-single-grid,
  .cfm-v4-search-layout,
  .cfm-v4-saved-page-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .cfm-v4-hero {
    gap: 12px;
    margin-top: 12px;
  }

  .cfm-v4-hero > .cfm-v4-next {
    grid-column: 1;
    grid-row: 2;
  }

  .cfm-v4-hero-card {
    height: 480px;
  }

  .cfm-v4-hero-card .cfm-story-content {
    width: min(82%, 600px);
    padding: 28px;
  }

  .cfm-v4-next {
    height: auto;
    min-height: 340px;
  }

  .cfm-v4-next-list {
    min-height: 286px;
  }

  .cfm-v4-home-content,
  .cfm-v4-category-content {
    gap: 20px;
    margin-top: 20px;
  }

  .cfm-v4-story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .cfm-v4-focus-story--focus {
    grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
  }

  .cfm-v4-popular-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cfm-v4-popular-grid > :last-child {
    grid-column: 1 / -1;
  }

  .cfm-v4-category-head {
    padding-top: 44px;
  }

  .cfm-v4-category-head h1 {
    margin-bottom: 28px;
    font-size: 34px;
  }

  .cfm-v4-category-hero {
    gap: 12px;
  }

  .cfm-v4-single-grid {
    gap: 28px;
    padding-top: 28px;
  }

  .cfm-v4-single-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cfm-v4-footer-inner {
    --cfm-footer-columns: minmax(0, 1fr);
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cfm-v4-not-found-layout {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
    padding-top: 54px;
  }

  .cfm-v4-not-found-layout > .cfm-v4-dealer-nav {
    display: none;
  }

  .cfm-v4-footer-bottom {
    grid-column: auto;
  }
}

@media (max-width: 480px) {
  .cfm-v4-mobile-panel {
    grid-template-columns: 1fr;
  }

  .cfm-v4-mobile-topics {
    padding-top: 4px;
  }

  .cfm-v4-hero-card {
    height: 440px;
  }

  .cfm-v4-hero-card .cfm-story-media::after {
    background: linear-gradient(0deg, rgb(8 10 10 / 88%) 0%, rgb(8 10 10 / 54%) 58%, rgb(8 10 10 / 10%) 100%);
  }

  .cfm-v4-hero-card .cfm-story-content {
    justify-content: flex-end;
    width: 100%;
    padding: 22px;
  }

  .cfm-v4-hero-card .cfm-story-category {
    margin-bottom: auto;
  }

  .cfm-v4-hero-card .cfm-story-title {
    margin: 18px 0 10px;
    font-size: 27px;
    line-height: 1.18;
  }

  .cfm-v4-hero-card .cfm-story-deck {
    font-size: 15px;
    line-height: 1.45;
    -webkit-line-clamp: 2;
  }

  .cfm-v4-hero-card .cfm-story-open {
    min-width: 164px;
    min-height: 44px;
    margin-top: 8px;
  }

  .cfm-v4-hero-status {
    grid-template-columns: 56px auto;
    gap: 8px;
    min-width: 120px;
    margin: 0 16px 17px 0;
    padding: 8px 9px;
  }

  .cfm-v4-story-grid,
  .cfm-v4-focus-grid,
  .cfm-v4-popular-grid,
  .cfm-v4-single-rail,
  .cfm-v4-dealer-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .cfm-v4-popular-grid > :last-child {
    grid-column: auto;
  }

  .cfm-v4-story-card {
    grid-template-rows: minmax(190px, 52vw) minmax(190px, auto);
  }

  .cfm-v4-focus {
    margin-top: 44px;
    padding: 22px;
  }

  .cfm-v4-focus > h2 {
    margin-bottom: 24px;
  }

  .cfm-v4-focus-story--focus {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .cfm-v4-focus-story--focus > .cfm-v4-story-media {
    height: 210px;
  }

  .cfm-v4-focus-copy h3 {
    font-size: 24px;
  }

  .cfm-v4-focus-story--focus-small > .cfm-v4-story-media {
    height: 190px;
  }

  .cfm-v4-popular {
    padding: 44px 0 52px;
  }

  .cfm-v4-popular-head {
    display: grid;
    gap: 10px;
  }

  .cfm-v4-popular-head nav {
    max-width: 100%;
    overflow-x: auto;
  }

  .cfm-v4-focus-story--popular {
    height: 390px;
  }

  .cfm-v4-category-head {
    padding-top: 36px;
  }

  .cfm-v4-category-head h1 {
    font-size: 31px;
  }

  .cfm-v4-category-tabs {
    margin-right: -12px;
    padding-right: 12px;
  }

  .cfm-v4-category-tabs a {
    min-height: 40px;
    padding: 8px 12px;
    font-size: 14px;
  }

  .cfm-v4-article-header h1 {
    font-size: 30px;
    line-height: 1.2;
  }

  .cfm-v4-article-meta {
    gap: 12px;
  }

  .cfm-v4-article-cover {
    aspect-ratio: 16 / 10;
  }

  .cfm-v4-article-content {
    font-size: 16px;
    line-height: 1.65;
  }

  .cfm-v4-article-content blockquote {
    padding: 22px 20px 22px 54px;
  }

  .cfm-v4-article-content blockquote::before {
    left: 15px;
  }

  .cfm-v4-article-content h2 {
    margin-top: 38px;
    font-size: 25px;
  }

  .cfm-v4-article-anchors ol {
    grid-template-columns: minmax(0, 1fr);
  }

  .cfm-article-cta {
    min-height: 0;
  }

  .cfm-article-cta-copy {
    width: 100%;
    padding: 24px 24px 0;
  }

  .cfm-article-cta h2 {
    font-size: 26px;
  }

  .cfm-article-cta-mascot {
    position: relative;
    right: auto;
    bottom: auto;
    display: block;
    width: 260px;
    margin: 8px auto -44px;
    transform: none;
  }

  .cfm-reactions {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 4px;
    width: 100%;
  }

  .cfm-reaction,
  .cfm-reaction:hover,
  .cfm-reaction:focus,
  .cfm-reaction:active {
    display: flex;
    grid-template-columns: none;
    justify-items: initial;
    gap: 2px;
    height: 44px;
    min-width: 0;
    min-height: 44px;
    padding: 4px 1px;
  }

  .cfm-reaction strong {
    min-width: 10px;
    height: auto;
    padding-inline: 0;
    font-size: 11px;
    line-height: 1;
  }

  .cfm-reaction-emoji {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
  }

  .cfm-v4-search-head {
    padding-top: 38px;
  }

  .cfm-v4-saved-page-layout {
    padding-top: 38px;
  }

  .cfm-v4-saved-page-head h1 {
    font-size: 30px;
  }

  .cfm-v4-saved-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .cfm-v4-not-found-layout {
    padding-top: 48px;
    padding-bottom: 64px;
  }

  .cfm-v4-not-found h1 {
    font-size: 38px;
  }

  .cfm-v4-not-found > p {
    font-size: 16px;
  }

  .cfm-v4-not-found form {
    grid-template-columns: 22px minmax(0, 1fr);
    padding: 8px 10px;
  }

  .cfm-v4-not-found form button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .cfm-v4-search-head h1 {
    font-size: 29px;
  }

  .cfm-v4-search-head form {
    grid-template-columns: 24px minmax(0, 1fr);
  }

  .cfm-v4-search-head form button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .cfm-v4-search-head form {
    height: auto;
    padding: 8px;
  }

  .cfm-v4-footer-nav {
    grid-template-columns: 1fr 1fr;
  }

  .cfm-v4-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .cfm-smart-search-form {
    grid-template-columns: minmax(0, 1fr);
  }

  .cfm-smart-result {
    grid-template-columns: 60px minmax(0, 1fr);
  }

  .cfm-smart-result-media {
    width: 60px;
    height: 52px;
  }
}

/* Tablet composition: compact bridge from 481px through the 768px designer layout. */
@media (min-width: 481px) and (max-width: 899px) {
  :root {
    --cfm-tablet-section-gap: 24px;
    --cfm-tablet-major-gap: 40px;
  }

  .cfm-v4-container {
    padding-inline: 32px;
  }

  .cfm-v4-header {
    height: 136px;
    border: 0;
    background: var(--cfm-canvas);
    box-shadow: none;
  }

  .cfm-v4-header::after {
    display: none;
  }

  .cfm-v4-header-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: clamp(168px, 25vw, 217px) minmax(0, 1fr) 40px;
    grid-template-rows: repeat(2, 68px);
    align-items: center;
    column-gap: 12px;
    row-gap: 0;
    width: 100%;
    height: 136px;
    padding-inline: 32px;
  }

  .cfm-v4-logo,
  .cfm-v4-logo img {
    grid-column: 1;
    grid-row: 1;
    width: 182px;
    height: 40px;
  }

  .cfm-v4-sections {
    grid-column: 1;
    grid-row: 2;
    display: block;
  }

  .cfm-v4-section-trigger {
    gap: 8px;
    width: min(180px, 100%);
    height: 38px;
    padding: 0 14px;
    font-size: 15px;
  }

  .cfm-v4-section-trigger .cfm-v4-icon {
    position: static;
    flex: 0 0 auto;
  }

  .cfm-v4-primary-nav,
  .cfm-v4-mobile-actions {
    display: none;
  }

  .cfm-v4-tablet-nav {
    grid-column: 2 / 4;
    grid-row: 2;
    display: flex;
    align-items: center;
    gap: 27px;
    min-width: 0;
    min-height: 44px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .cfm-v4-tablet-nav::-webkit-scrollbar {
    display: none;
  }

  .cfm-v4-tablet-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: var(--cfm-ink);
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
  }

  .cfm-v4-tablet-nav a.is-active,
  .cfm-v4-tablet-nav a:hover,
  .cfm-v4-tablet-nav a:focus-visible {
    color: var(--cfm-green-dark);
  }

  .cfm-v4-header-tools {
    grid-column: 2 / 4;
    grid-row: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 40px;
    align-items: center;
    justify-self: stretch;
    gap: 10px;
    width: auto;
    margin-left: 45px;
  }

  .cfm-v4-header-search {
    grid-template-columns: 26px minmax(0, 1fr);
    width: 100%;
    height: 38px;
    border: 1px solid var(--cfm-line);
    border-radius: 10px;
  }

  .cfm-v4-header-search > button {
    display: none;
  }

  .cfm-v4-header-bookmark {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .cfm-v4-sections-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: auto;
    left: 0;
    width: min(840px, calc(100vw - 64px));
    max-height: calc(100vh - 190px);
    overflow-y: auto;
  }

  .cfm-v4-sections-close {
    position: absolute;
    z-index: 2;
    top: 14px;
    right: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 10px;
    background: #f0f1f0;
    color: var(--cfm-ink);
    opacity: 1;
    cursor: pointer;
    transform: none;
  }

  .cfm-v4-sections-close:hover,
  .cfm-v4-sections-close:focus-visible {
    outline: 0;
    background: var(--cfm-green-soft);
    color: var(--cfm-green-dark);
  }

  .cfm-v4-sections-close .cfm-v4-icon {
    width: 21px;
    height: 21px;
  }

  .cfm-v4-hero,
  .cfm-v4-category-hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    margin-top: var(--cfm-tablet-section-gap);
  }

  .cfm-v4-hero-card {
    height: 400px;
  }

  .cfm-v4-hero-card .cfm-story-content {
    width: min(62%, 420px);
    padding: 30px;
  }

  .cfm-v4-hero-card .cfm-story-title {
    margin: 20px 0 10px;
    font-size: 30px;
    line-height: 1.14;
  }

  .cfm-v4-hero-card .cfm-story-deck {
    font-size: 15px;
    line-height: 1.5;
    -webkit-line-clamp: 2;
  }

  .cfm-v4-hero-card .cfm-story-open {
    min-width: 180px;
    min-height: 46px;
  }

  .cfm-v4-hero-status {
    margin: 0 18px 18px 0;
  }

  .cfm-v4-next {
    height: 290px;
    min-height: 0;
    padding: 16px 20px 14px;
  }

  .cfm-v4-next-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
    height: calc(100% - 33px);
    min-height: 0;
    margin-top: 8px;
  }

  .cfm-v4-next-story,
  .cfm-v4-next-story:nth-child(n + 4) {
    display: block;
    border-bottom: 0;
  }

  .cfm-v4-next-story:nth-child(-n + 2) {
    border-bottom: 1px solid var(--cfm-line);
  }

  .cfm-v4-next-story .cfm-story-content {
    padding: 9px 0;
  }

  .cfm-v4-next-story .cfm-story-category {
    margin-bottom: 7px;
  }

  .cfm-v4-next-story .cfm-story-title {
    font-size: 14px;
    line-height: 1.35;
    -webkit-line-clamp: 3;
  }

  .cfm-v4-home-content,
  .cfm-v4-category-content,
  .cfm-v4-single-grid,
  .cfm-v4-search-layout,
  .cfm-v4-saved-page-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--cfm-tablet-section-gap);
    margin-top: var(--cfm-tablet-section-gap);
  }

  .cfm-v4-story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .cfm-v4-story-card {
    grid-template-rows: 184px minmax(172px, auto);
  }

  .cfm-v4-story-body {
    padding: 16px 20px 18px;
  }

  .cfm-v4-story-kicker {
    margin-bottom: 10px;
  }

  .cfm-v4-story-body h2,
  .cfm-v4-story-body h3 {
    margin-bottom: 9px;
    -webkit-line-clamp: 3;
  }

  .cfm-v4-story-body p {
    margin-top: auto;
    -webkit-line-clamp: 2;
  }

  .cfm-v4-dealer-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 24px;
  }

  .cfm-v4-focus {
    margin-top: var(--cfm-tablet-major-gap);
    margin-inline: -32px;
    padding: 40px 32px 48px;
    border-radius: 0;
  }

  .cfm-v4-focus > h2 {
    margin-bottom: 36px;
  }

  .cfm-v4-focus-story--focus {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .cfm-v4-focus-story--focus > .cfm-v4-story-media {
    height: auto;
    aspect-ratio: 704 / 402;
  }

  .cfm-v4-focus-story--focus .cfm-v4-focus-copy {
    padding-top: 32px;
  }

  .cfm-v4-focus-copy h3 {
    font-size: 28px;
  }

  .cfm-v4-focus-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 20px;
    margin-top: 34px;
    padding-top: 40px;
  }

  .cfm-v4-focus-story--focus-small {
    padding-bottom: 28px;
    border-bottom: 1px solid rgb(255 255 255 / 34%);
  }

  .cfm-v4-focus-story--focus-small > .cfm-v4-story-media {
    height: 184px;
  }

  .cfm-v4-focus-story--focus-small .cfm-v4-focus-copy h3 {
    font-size: 16px;
  }

  .cfm-v4-focus-story--focus-small .cfm-v4-focus-copy p {
    font-size: 13px;
  }

  .cfm-v4-popular {
    padding: 40px 0 56px;
  }

  .cfm-v4-popular-head {
    margin-bottom: 24px;
  }

  .cfm-v4-popular-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .cfm-v4-popular-grid > :last-child {
    grid-column: auto;
  }

  .cfm-v4-focus-story--popular {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: 184px;
    background: #fff;
  }

  .cfm-v4-focus-story--popular > .cfm-v4-story-media {
    position: relative;
    inset: auto;
    min-height: 184px;
  }

  .cfm-v4-focus-story--popular > .cfm-v4-story-media::after {
    display: none;
  }

  .cfm-v4-focus-story--popular .cfm-v4-focus-copy {
    position: relative;
    inset: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 18px 28px;
    color: var(--cfm-ink);
  }

  .cfm-v4-focus-category {
    margin-bottom: 9px;
    padding: 0;
    background: transparent;
  }

  .cfm-v4-focus-story--popular .cfm-v4-focus-copy h3 {
    margin-bottom: 8px;
    color: var(--cfm-ink);
    font-size: 17px;
    line-height: 1.3;
    -webkit-line-clamp: 3;
  }

  .cfm-v4-focus-story--popular .cfm-v4-focus-copy p {
    color: #4d4d4d;
    font-size: 13px;
    line-height: 1.45;
    -webkit-line-clamp: 2;
  }

  .cfm-v4-category-head {
    padding-top: var(--cfm-tablet-section-gap);
  }

  .cfm-v4-single-grid {
    gap: 30px;
    padding-top: 0;
  }

  .cfm-v4-search-head {
    padding-top: var(--cfm-tablet-section-gap);
  }

  .cfm-v4-saved-page-layout {
    padding-top: 0;
  }

  .cfm-v4-article-header h1 {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    font-size: 36px;
  }

  .cfm-v4-single-rail,
  .cfm-v4-saved-page-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cfm-v4-single-rail .cfm-v4-dealer-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .cfm-v4-single-rail .cfm-v4-dealer-list a {
    overflow-wrap: normal;
    word-break: normal;
  }

  .cfm-v4-saved-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile composition derived from the same editorial system, through 480px. */
@media (max-width: 480px) {
  :root {
    --cfm-page-start: 12px;
  }

  .cfm-v4-container {
    padding-right: max(12px, env(safe-area-inset-right));
    padding-left: max(12px, env(safe-area-inset-left));
  }

  .cfm-v4-header-inner {
    padding-right: max(12px, env(safe-area-inset-right));
    padding-left: max(12px, env(safe-area-inset-left));
  }

  .cfm-v4-tablet-nav {
    display: none;
  }

  .cfm-v4-mobile-panel {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    padding: 18px max(12px, env(safe-area-inset-right)) max(28px, calc(18px + env(safe-area-inset-bottom))) max(12px, env(safe-area-inset-left));
    transform: translateY(-8px);
    transition: opacity 180ms ease-out, transform 260ms var(--cfm-ease), visibility 0s linear 260ms;
  }

  .cfm-v4-mobile-panel[aria-hidden="false"] {
    transform: translateY(0);
    transition-delay: 0s;
  }

  .cfm-v4-mobile-panel > nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 14px;
  }

  .cfm-v4-mobile-panel > nav a {
    min-height: 44px;
    padding: 10px 4px;
    font-size: 14px;
  }

  .cfm-v4-mobile-panel > nav a:nth-child(-n + 3) {
    grid-column: 1 / -1;
    min-height: 48px;
    font-size: 17px;
  }

  .cfm-v4-mobile-topics > div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .cfm-v4-mobile-topics a {
    align-items: center;
    min-height: 42px;
    padding: 8px 10px;
    background: #f2f3f2;
    color: var(--cfm-ink);
    line-height: 1.25;
  }

  .cfm-v4-hero-card {
    height: 430px;
  }

  .cfm-v4-hero-card .cfm-story-content {
    padding: 20px;
  }

  .cfm-v4-hero-card .cfm-story-title {
    margin: 16px 0 9px;
    font-size: 26px;
    line-height: 1.18;
  }

  .cfm-v4-hero-card .cfm-story-deck {
    font-size: 14px;
    line-height: 1.45;
  }

  .cfm-v4-hero-card .cfm-story-open {
    min-width: 158px;
    min-height: 44px;
    padding-inline: 16px;
    font-size: 14px;
  }

  .cfm-v4-next {
    min-height: 0;
    padding: 16px 18px 14px;
  }

  .cfm-v4-next-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(118px, auto));
    gap: 0 14px;
    height: auto;
    min-height: 0;
    margin-top: 8px;
  }

  .cfm-v4-next-story,
  .cfm-v4-next-story:nth-child(n + 4) {
    display: block;
    min-height: 118px;
    border-bottom: 0;
  }

  .cfm-v4-next-story:nth-child(-n + 2) {
    border-bottom: 1px solid var(--cfm-line);
  }

  .cfm-v4-next-story .cfm-story-content {
    min-height: 118px;
    padding: 10px 0;
  }

  .cfm-v4-next-story .cfm-story-category {
    margin-bottom: 7px;
    font-size: 11px;
  }

  .cfm-v4-next-story .cfm-story-title {
    overflow-wrap: anywhere;
    font-size: 13px;
    line-height: 1.35;
    -webkit-line-clamp: 4;
  }

  .cfm-v4-home-content,
  .cfm-v4-category-content {
    margin-top: 16px;
  }

  .cfm-v4-story-card {
    grid-template-rows: minmax(190px, 52vw) minmax(184px, auto);
  }

  .cfm-v4-story-body {
    padding: 17px 18px 19px;
  }

  .cfm-v4-story-body h2,
  .cfm-v4-story-body h3 {
    font-size: 17px;
    line-height: 1.34;
    -webkit-line-clamp: 3;
  }

  .cfm-v4-story-body p {
    font-size: 13px;
    -webkit-line-clamp: 2;
  }

  .cfm-v4-dealer-nav {
    padding-inline: 16px;
  }

  .cfm-v4-dealer-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .cfm-v4-dealer-list a {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 8px;
    min-height: 46px;
    font-size: 13px;
  }

  .cfm-v4-dealer-icon {
    width: 40px;
    height: 40px;
  }

  .cfm-v4-dealer-icon img {
    width: 32px;
    height: 32px;
  }

  .cfm-v4-focus {
    margin-top: 44px;
    margin-inline: -12px;
    padding: 36px 12px 42px;
    border-radius: 0;
  }

  .cfm-v4-focus > h2 {
    margin-bottom: 28px;
  }

  .cfm-v4-focus-story--focus > .cfm-v4-story-media {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .cfm-v4-focus-story--focus .cfm-v4-focus-copy {
    padding-top: 20px;
  }

  .cfm-v4-focus-copy h3 {
    font-size: 24px;
    line-height: 1.2;
  }

  .cfm-v4-focus-copy p {
    font-size: 14px;
  }

  .cfm-v4-focus-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    margin-top: 28px;
    padding-top: 0;
  }

  .cfm-v4-focus-story--focus-small {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid rgb(255 255 255 / 28%);
  }

  .cfm-v4-focus-story--focus-small > .cfm-v4-story-media {
    height: 90px;
    border-radius: 12px;
  }

  .cfm-v4-focus-story--focus-small .cfm-v4-focus-copy {
    min-width: 0;
    padding-top: 0;
  }

  .cfm-v4-focus-story--focus-small .cfm-v4-focus-copy h3 {
    margin-bottom: 6px;
    font-size: 14px;
    line-height: 1.35;
    -webkit-line-clamp: 3;
  }

  .cfm-v4-focus-story--focus-small .cfm-v4-focus-copy p {
    font-size: 12px;
    -webkit-line-clamp: 2;
  }

  .cfm-v4-popular {
    padding: 40px 0 52px;
  }

  .cfm-v4-popular-head {
    gap: 12px;
    margin-bottom: 22px;
  }

  .cfm-v4-popular-head nav {
    gap: 4px;
  }

  .cfm-v4-popular-head nav a,
  .cfm-v4-popular-head nav button {
    min-height: 34px;
    padding: 6px 11px;
    font-size: 13px;
  }

  .cfm-v4-popular-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .cfm-v4-focus-story--popular {
    display: grid;
    grid-template-columns: 108px minmax(0, 1fr);
    min-height: 116px;
    height: auto;
    border-radius: 14px;
    background: #fff;
  }

  .cfm-v4-focus-story--popular > .cfm-v4-story-media {
    position: relative;
    inset: auto;
    min-height: 116px;
  }

  .cfm-v4-focus-story--popular > .cfm-v4-story-media::after {
    display: none;
  }

  .cfm-v4-focus-story--popular .cfm-v4-focus-copy {
    position: relative;
    inset: auto;
    min-width: 0;
    padding: 12px;
    color: var(--cfm-ink);
  }

  .cfm-v4-focus-story--popular .cfm-v4-focus-category {
    margin-bottom: 6px;
    padding: 0;
    background: transparent;
    font-size: 11px;
  }

  .cfm-v4-focus-story--popular .cfm-v4-focus-copy h3 {
    margin: 0;
    color: var(--cfm-ink);
    font-size: 14px;
    line-height: 1.32;
    -webkit-line-clamp: 3;
  }

  .cfm-v4-focus-story--popular .cfm-v4-focus-copy p {
    display: none;
  }

  .cfm-v4-category-head {
    padding-top: var(--cfm-page-start);
  }

  .cfm-v4-category-head h1 {
    margin-bottom: 20px;
    font-size: 30px;
  }

  .cfm-v4-single-grid {
    padding-top: var(--cfm-page-start);
    padding-bottom: 56px;
  }

  .cfm-v4-search-head,
  .cfm-v4-saved-page-layout {
    padding-top: var(--cfm-page-start);
  }

  .cfm-v4-article-header h1 {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    font-size: 29px;
  }

  .cfm-v4-article-anchors {
    padding-inline: 16px;
  }

  .cfm-v4-footer {
    padding-bottom: max(22px, env(safe-area-inset-bottom));
  }
}

/* Product campaigns: rotating branded artwork with stable responsive formats. */
.cfm-v4-product-campaigns {
  display: grid;
  gap: 20px;
  width: 100%;
  margin-top: 20px;
}

body.cfm-v4-site .cfm-banner-slot {
  --campaign-radius: 10px;
  --campaign-surface: #eaf6f1;
  --campaign-ink: #10251f;
  --campaign-muted: #4f665e;
  --campaign-accent: #11b58a;
  --campaign-accent-ink: #071d16;
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  contain: paint;
  isolation: isolate;
  border-radius: var(--campaign-radius);
  clip-path: inset(0 round var(--campaign-radius));
  background: var(--campaign-surface);
  background-clip: padding-box;
  color: var(--campaign-ink);
}

body.cfm-v4-site .cfm-house-banner--carflow {
  --campaign-surface: #eaf6f1;
  --campaign-ink: #10251f;
  --campaign-muted: #4f665e;
  --campaign-accent: #11b58a;
  --campaign-accent-ink: #071d16;
}

body.cfm-v4-site .cfm-house-banner--invision {
  --campaign-surface: #090c0a;
  --campaign-ink: #f7fff1;
  --campaign-muted: #bdc9b8;
  --campaign-accent: #8cff18;
  --campaign-accent-ink: #091205;
}

body.cfm-v4-site .cfm-house-banner--dialector {
  --campaign-surface: #071523;
  --campaign-ink: #f4f9ff;
  --campaign-muted: #b8c9d8;
  --campaign-accent: #3097ff;
  --campaign-accent-ink: #06111e;
  font-family: var(--cfm-font);
}

.cfm-house-banner--dialector strong,
.cfm-house-banner--dialector .cfm-house-banner__action {
  font-weight: 600;
}

.cfm-house-banner--dialector .cfm-house-banner__kicker {
  font-weight: 500;
}

.cfm-house-banner,
.cfm-house-banner strong,
.cfm-house-banner__kicker,
.cfm-house-banner__description,
.cfm-house-banner__action {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.cfm-house-banner > a {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border-radius: inherit;
  clip-path: inset(0 round var(--campaign-radius));
  background: var(--campaign-surface);
  background-clip: padding-box;
  color: inherit;
  text-decoration: none;
  isolation: isolate;
}

.cfm-house-banner > a::after {
  display: none;
}

.cfm-house-banner > a:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 3px var(--campaign-accent);
}

.cfm-house-banner__media,
.cfm-house-banner__content {
  position: relative;
  min-width: 0;
  min-height: 0;
  background-clip: padding-box;
}

.cfm-house-banner__media {
  z-index: 0;
  display: block;
  overflow: hidden;
  background: color-mix(in srgb, var(--campaign-surface) 82%, var(--campaign-ink));
}

.cfm-house-banner__media img {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  filter: none;
  transform: scale(1.005);
  transition: transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

.cfm-house-banner:hover .cfm-house-banner__media img,
.cfm-house-banner:focus-within .cfm-house-banner__media img {
  transform: scale(1.035);
}

.cfm-house-banner__content {
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 20px;
  background: var(--campaign-surface);
  color: var(--campaign-ink);
}

.cfm-house-banner__disclosure {
  position: absolute;
  z-index: 3;
  top: 10px;
  right: 12px;
  color: var(--campaign-muted);
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  opacity: 0.86;
  pointer-events: none;
}

.cfm-house-banner__logo {
  display: block;
  flex: 0 0 auto;
  width: auto;
  max-width: 148px;
  height: auto;
  max-height: 34px;
  object-fit: contain;
  object-position: left center;
  filter: none;
}

.cfm-house-banner__copy {
  display: grid;
  gap: 7px;
  min-width: 0;
  margin-top: 18px;
}

.cfm-house-banner__kicker,
.cfm-house-banner__description,
.cfm-house-banner__action {
  display: block;
}

.cfm-house-banner__kicker {
  color: var(--campaign-muted);
  font-size: 12px;
  font-weight: 550;
  line-height: 1.3;
}

.cfm-house-banner strong {
  display: block;
  max-width: none;
  color: inherit;
  font-size: 24px;
  font-weight: 650;
  line-height: 1.14;
  text-wrap: balance;
}

.cfm-house-banner__description {
  max-width: 36ch;
  color: var(--campaign-muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.38;
}

.cfm-house-banner__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  gap: 0;
  width: max-content;
  max-width: 100%;
  min-height: 34px;
  margin-top: auto;
  padding: 8px 14px;
  border-radius: 6px;
  background: var(--campaign-accent);
  color: var(--campaign-accent-ink);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;
}

.cfm-house-banner__action > span {
  display: block;
  min-width: 0;
}

/* Compact: a stable 6:5 card with artwork above the full-width copy panel. */
.cfm-house-banner--compact {
  aspect-ratio: 6 / 5;
}

.cfm-house-banner--compact > a {
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: 38% minmax(0, 62%);
}

.cfm-house-banner--compact .cfm-house-banner__media {
  grid-column: 1;
  grid-row: 1;
}

.cfm-house-banner--compact .cfm-house-banner__content {
  grid-column: 1;
  grid-row: 2;
  padding: 12px 16px 14px;
}

.cfm-house-banner--compact .cfm-house-banner__logo {
  max-width: 108px;
  max-height: 21px;
}

.cfm-house-banner--compact .cfm-house-banner__copy {
  gap: 0;
  margin-top: 9px;
}

.cfm-house-banner--compact .cfm-house-banner__kicker,
.cfm-house-banner--compact .cfm-house-banner__description {
  display: none;
}

.cfm-house-banner--compact strong {
  font-size: 17px;
  line-height: 1.14;
}

.cfm-house-banner--compact .cfm-house-banner__action {
  min-height: 30px;
  padding: 6px 12px;
}

/* Tower: a 1:2 editorial split with enough copy depth for the long variants. */
.cfm-house-banner--tower {
  aspect-ratio: 1 / 2;
}

.cfm-house-banner--tower > a {
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: 44% minmax(0, 56%);
}

.cfm-house-banner--tower .cfm-house-banner__media {
  grid-column: 1;
  grid-row: 1;
}

.cfm-house-banner--tower .cfm-house-banner__content {
  grid-column: 1;
  grid-row: 2;
  padding: 24px 22px;
}

.cfm-house-banner--tower .cfm-house-banner__logo {
  max-width: 148px;
  max-height: 34px;
  filter: none;
}

.cfm-house-banner--tower .cfm-house-banner__copy {
  margin-top: 22px;
}

.cfm-house-banner--tower strong {
  font-size: 26px;
  line-height: 1.14;
}

.cfm-house-banner--tower .cfm-house-banner__description {
  max-width: 28ch;
  font-size: 14px;
}

/* Billboard: a stable editorial strip with a balanced offer and a generous photo. */
.cfm-house-banner--billboard {
  margin: 26px 0 42px;
}

.cfm-house-banner--billboard .cfm-house-banner__media img {
  object-position: center;
}

.cfm-house-banner--billboard .cfm-house-banner__disclosure {
  top: 6px;
  right: 8px;
  font-size: 9px;
}

.cfm-house-banner--billboard .cfm-house-banner__kicker,
.cfm-house-banner--billboard .cfm-house-banner__description {
  display: none;
}

@media (min-width: 900px) {
  .cfm-house-banner--billboard {
    height: clamp(128px, 10vw, 144px);
    aspect-ratio: auto;
  }

  .cfm-house-banner--billboard > a {
    grid-template-columns: minmax(0, 3fr) minmax(280px, 2fr);
    grid-template-rows: minmax(0, 1fr);
  }

  .cfm-house-banner--billboard .cfm-house-banner__content {
    grid-column: 1;
    grid-row: 1;
    display: grid;
    grid-template-columns: clamp(104px, 9vw, 112px) minmax(0, 1fr) max-content;
    align-items: center;
    column-gap: 16px;
    padding: 18px 20px;
  }

  .cfm-house-banner--billboard .cfm-house-banner__media {
    grid-column: 2;
    grid-row: 1;
  }

  .cfm-house-banner--billboard .cfm-house-banner__logo {
    align-self: center;
    width: 100%;
    max-width: 112px;
    max-height: 28px;
  }

  .cfm-house-banner--billboard .cfm-house-banner__copy {
    align-self: center;
    gap: 5px;
    margin: 0;
  }

  .cfm-house-banner--billboard .cfm-house-banner__kicker {
    display: none;
  }

  .cfm-house-banner--billboard strong,
  .cfm-house-banner--billboard .cfm-house-banner__description {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .cfm-house-banner--billboard strong {
    font-size: 18px;
    line-height: 1.14;
    text-wrap: pretty;
  }

  .cfm-house-banner--billboard .cfm-house-banner__description {
    max-width: none;
    color: color-mix(in srgb, var(--campaign-ink) 82%, var(--campaign-muted));
    font-size: 12.5px;
    font-weight: 450;
    line-height: 1.3;
  }

  .cfm-house-banner--billboard .cfm-house-banner__action {
    align-self: center;
    width: max-content;
    margin: 0;
  }

  .cfm-v4-article .cfm-house-banner--billboard .cfm-house-banner__content {
    grid-template-columns: 104px minmax(0, 1fr) max-content;
    column-gap: 12px;
    padding-inline: 16px;
  }

  .cfm-v4-article .cfm-house-banner--billboard .cfm-house-banner__logo {
    max-width: 104px;
    max-height: 26px;
  }

  .cfm-v4-article .cfm-house-banner--billboard strong {
    font-size: 16px;
  }

  .cfm-v4-article .cfm-house-banner--billboard .cfm-house-banner__description {
    font-size: 12px;
  }

  .cfm-v4-article .cfm-house-banner--billboard .cfm-house-banner__action {
    min-height: 32px;
    padding: 7px 12px;
    font-size: 11.5px;
  }
}

@media (min-width: 900px) and (max-width: 1100px) {
  .cfm-house-banner--billboard {
    height: 132px;
  }

  .cfm-house-banner--billboard > a {
    grid-template-columns: minmax(0, 66%) minmax(0, 34%);
  }

  .cfm-house-banner--billboard .cfm-house-banner__content,
  .cfm-v4-article .cfm-house-banner--billboard .cfm-house-banner__content {
    grid-template-columns: 96px minmax(0, 1fr) max-content;
    column-gap: 12px;
    padding-inline: 16px;
  }

  .cfm-house-banner--billboard .cfm-house-banner__logo,
  .cfm-v4-article .cfm-house-banner--billboard .cfm-house-banner__logo {
    max-width: 96px;
    max-height: 26px;
  }

  .cfm-house-banner--billboard strong,
  .cfm-v4-article .cfm-house-banner--billboard strong {
    font-size: 16px;
  }

  .cfm-house-banner--billboard .cfm-house-banner__description,
  .cfm-v4-article .cfm-house-banner--billboard .cfm-house-banner__description {
    font-size: 11.5px;
  }

  .cfm-house-banner--billboard .cfm-house-banner__action,
  .cfm-v4-article .cfm-house-banner--billboard .cfm-house-banner__action {
    min-height: 32px;
    padding: 7px 12px;
    font-size: 11.5px;
  }
}

.cfm-v4-article > .cfm-house-banner--billboard {
  margin-top: 44px;
  margin-bottom: 28px;
}

.cfm-v4-container > .cfm-banner-slot--billboard {
  margin: 26px 0 42px;
}

.cfm-v4-article > .cfm-banner-slot--billboard {
  margin-top: 44px;
  margin-bottom: 28px;
}

@media (max-width: 899px) {
  .cfm-v4-product-campaigns {
    max-width: 420px;
    margin-inline: auto;
  }

  .cfm-v4-container > .cfm-house-banner--billboard,
  .cfm-v4-container > .cfm-banner-slot--billboard {
    margin-top: 24px;
    margin-bottom: 24px;
  }

  .cfm-v4-product-campaigns--tower {
    grid-column: 1 / -1;
    max-width: none;
  }

  .cfm-house-banner--billboard,
  .cfm-house-banner--tower {
    aspect-ratio: 16 / 9;
  }

  .cfm-house-banner--billboard > a,
  .cfm-house-banner--tower > a {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: 48% minmax(0, 52%);
  }

  .cfm-house-banner--billboard .cfm-house-banner__media,
  .cfm-house-banner--tower .cfm-house-banner__media {
    grid-column: 1;
    grid-row: 1;
  }

  .cfm-house-banner--billboard .cfm-house-banner__content,
  .cfm-house-banner--tower .cfm-house-banner__content {
    grid-column: 1;
    grid-row: 2;
    display: flex;
    align-items: flex-start;
    padding: 16px 20px;
  }

  .cfm-house-banner--billboard .cfm-house-banner__logo,
  .cfm-house-banner--tower .cfm-house-banner__logo {
    width: auto;
    max-width: 128px;
    max-height: 29px;
  }

  .cfm-house-banner--billboard .cfm-house-banner__copy,
  .cfm-house-banner--tower .cfm-house-banner__copy {
    margin-top: 10px;
  }

  .cfm-house-banner--billboard strong {
    font-size: 22px;
  }

  .cfm-house-banner--tower strong {
    font-size: 23px;
  }

  .cfm-house-banner--billboard .cfm-house-banner__action {
    margin: auto 0 0;
  }
}

@media (max-width: 699px) {
  .cfm-house-banner--billboard {
    margin: 24px 0;
  }

  .cfm-v4-container > .cfm-banner-slot--billboard,
  .cfm-v4-article > .cfm-banner-slot--billboard {
    margin: 24px 0;
  }
}

@media (max-width: 480px) {
  .cfm-v4-product-campaigns {
    gap: 16px;
    max-width: none;
    margin-top: 16px;
  }

  .cfm-house-banner--billboard,
  .cfm-house-banner--compact,
  .cfm-house-banner--tower {
    aspect-ratio: 6 / 5;
  }

  .cfm-house-banner--billboard > a,
  .cfm-house-banner--compact > a,
  .cfm-house-banner--tower > a {
    grid-template-rows: 43% minmax(0, 57%);
  }

  .cfm-house-banner--billboard .cfm-house-banner__content,
  .cfm-house-banner--compact .cfm-house-banner__content,
  .cfm-house-banner--tower .cfm-house-banner__content {
    padding: 14px 16px;
  }

  .cfm-house-banner--billboard .cfm-house-banner__logo,
  .cfm-house-banner--compact .cfm-house-banner__logo,
  .cfm-house-banner--tower .cfm-house-banner__logo {
    max-width: 112px;
    max-height: 24px;
  }

  .cfm-house-banner--billboard .cfm-house-banner__copy,
  .cfm-house-banner--compact .cfm-house-banner__copy,
  .cfm-house-banner--tower .cfm-house-banner__copy {
    gap: 0;
    margin-top: 8px;
  }

  .cfm-house-banner--billboard .cfm-house-banner__kicker,
  .cfm-house-banner--billboard .cfm-house-banner__description,
  .cfm-house-banner--compact .cfm-house-banner__kicker,
  .cfm-house-banner--compact .cfm-house-banner__description,
  .cfm-house-banner--tower .cfm-house-banner__kicker,
  .cfm-house-banner--tower .cfm-house-banner__description {
    display: none;
  }

  .cfm-house-banner--billboard strong,
  .cfm-house-banner--compact strong,
  .cfm-house-banner--tower strong {
    font-size: 18px;
    line-height: 1.14;
  }

  .cfm-house-banner--billboard .cfm-house-banner__action,
  .cfm-house-banner--compact .cfm-house-banner__action,
  .cfm-house-banner--tower .cfm-house-banner__action {
    min-height: 30px;
    margin: auto 0 0;
    padding: 6px 10px;
  }
}

/* Keep the established non-mobile article sequence after the mobile-first DOM update. */
@media (min-width: 481px) {
  .cfm-v4-article {
    display: flex;
    flex-direction: column;
  }

  .cfm-v4-article > * {
    order: 5;
  }

  .cfm-v4-article > .cfm-v4-breadcrumbs {
    order: -1;
  }

  .cfm-v4-article > .cfm-v4-article-header {
    order: 0;
    padding-bottom: 0;
  }

  .cfm-v4-article > .cfm-v4-article-meta {
    order: 1;
    margin-bottom: 22px;
  }

  .cfm-v4-article > .cfm-v4-article-cover {
    order: 2;
  }

  .cfm-v4-article > .cfm-author-card {
    order: 3;
  }

  .cfm-v4-article > .cfm-v4-article-anchors {
    order: 4;
  }
}

/* Mobile editorial components: approved 390px composition, fluid from 320px through 480px. */
@media (max-width: 480px) {
  :root {
    --cfm-page-start: 16px;
    --cfm-mobile-pad-left: max(16px, env(safe-area-inset-left));
    --cfm-mobile-pad-right: max(16px, env(safe-area-inset-right));
  }

  html,
  body.cfm-v4-site {
    max-width: 100%;
    overflow-x: clip;
    background: #f8f8f8;
  }

  .cfm-v4-main,
  .cfm-v4-container,
  .cfm-v4-feed-shell,
  .cfm-v4-home-rail,
  .cfm-v4-category-rail,
  .cfm-v4-single-rail,
  .cfm-v4-saved-page-rail {
    min-width: 0;
    max-width: 100%;
  }

  .cfm-v4-container {
    padding-left: var(--cfm-mobile-pad-left);
    padding-right: var(--cfm-mobile-pad-right);
  }

  /* Header */
  .cfm-v4-header {
    z-index: 170;
    height: 80px;
    background: #f8f8f8;
  }

  .cfm-v4-header-inner {
    position: relative;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) 40px 40px;
    gap: 5px;
    width: 100%;
    height: 80px;
    padding-left: var(--cfm-mobile-pad-left);
    padding-right: var(--cfm-mobile-pad-right);
  }

  .cfm-v4-logo,
  .cfm-v4-logo img {
    width: min(170px, 100%);
    max-width: 100%;
    height: auto;
    max-height: 40px;
  }

  .cfm-v4-logo {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .cfm-v4-logo img {
    display: block;
  }

  .cfm-v4-sections,
  .cfm-v4-primary-nav,
  .cfm-v4-tablet-nav,
  .cfm-v4-header-tools {
    display: none;
  }

  .cfm-v4-mobile-actions {
    display: contents;
  }

  .cfm-v4-mobile-actions button,
  .cfm-v4-mobile-bookmark {
    position: relative;
    align-self: center;
    justify-self: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 10px;
    outline: 0;
    box-shadow: none;
    color: #343938;
  }

  .cfm-v4-mobile-menu-button {
    grid-column: 1;
    grid-row: 1;
    background: #fff !important;
    color: #343938;
  }

  .cfm-v4-mobile-search {
    grid-column: 3;
    grid-row: 1;
    background: transparent !important;
    color: #a8adab;
  }

  .cfm-v4-mobile-bookmark {
    grid-column: 4;
    grid-row: 1;
    background: transparent;
    color: #a8adab;
  }

  .cfm-v4-mobile-actions .cfm-v4-icon,
  .cfm-v4-mobile-bookmark .cfm-v4-icon {
    width: 22px;
    height: 22px;
  }

  .cfm-v4-mobile-actions button:hover,
  .cfm-v4-mobile-actions button:focus-visible,
  .cfm-v4-mobile-bookmark:hover,
  .cfm-v4-mobile-bookmark:focus-visible {
    outline: 0;
    box-shadow: none;
    color: var(--cfm-green-dark);
  }

  .cfm-v4-mobile-bookmark > span[data-cfm-saved-count] {
    position: absolute;
    top: 0;
    right: -1px;
    display: none;
    place-items: center;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 999px;
    background: var(--cfm-green);
    color: #073d2e;
    font-size: 9px;
    font-variant-numeric: tabular-nums;
    font-weight: 700;
    line-height: 1;
    text-align: center;
  }

  .cfm-v4-mobile-bookmark > span[data-cfm-saved-count].is-visible {
    display: grid;
  }

  .cfm-v4-mobile-bookmark [data-cfm-saved-count-value] {
    display: block;
    min-width: 0;
    height: auto;
    line-height: 1;
    text-align: center;
    transform: none;
  }

  .cfm-v4-mobile-panel {
    z-index: 165;
    top: 80px;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    padding: 20px var(--cfm-mobile-pad-right) max(32px, calc(20px + env(safe-area-inset-bottom))) var(--cfm-mobile-pad-left);
  }

  /* Lead story and next-material queue */
  .cfm-v4-hero,
  .cfm-v4-category-hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    width: 100%;
    margin-top: 16px;
  }

  .cfm-v4-hero > .cfm-v4-hero-card,
  .cfm-v4-category-hero > .cfm-v4-hero-card {
    grid-column: 1;
    grid-row: 1;
  }

  .cfm-v4-hero > .cfm-v4-next,
  .cfm-v4-category-hero > .cfm-v4-category-next {
    grid-column: 1;
    grid-row: 2;
  }

  .cfm-v4-hero-card {
    width: 100%;
    height: 485px;
    min-height: 485px;
    border-radius: 20px;
  }

  .cfm-v4-hero-card .cfm-story-media::after {
    background: linear-gradient(0deg, rgb(7 9 9 / 94%) 0%, rgb(7 9 9 / 70%) 46%, rgb(7 9 9 / 18%) 79%, rgb(7 9 9 / 5%) 100%);
  }

  .cfm-v4-hero-card .cfm-story-content {
    justify-content: flex-end;
    width: 100%;
    max-width: none;
    padding: 20px;
  }

  .cfm-v4-hero-card .cfm-story-category {
    min-height: 28px;
    margin-bottom: auto;
    padding: 5px 10px;
    border-radius: 9px;
    font-size: 12px;
  }

  .cfm-v4-hero-card .cfm-story-title {
    display: -webkit-box;
    margin: 18px 0 10px;
    overflow: hidden;
    font-size: 24px;
    font-weight: 650;
    line-height: 1.25;
    text-wrap: pretty;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }

  .cfm-v4-hero-card .cfm-story-deck {
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.5;
    -webkit-line-clamp: 2;
  }

  .cfm-v4-hero-card .cfm-story-open {
    width: 180px;
    min-width: 180px;
    min-height: 46px;
    margin-top: 0;
    padding: 10px 16px;
    border-radius: 9px;
    font-size: 14px;
  }

  .cfm-v4-hero-status {
    display: none;
  }

  .cfm-v4-next,
  .cfm-v4-category-next {
    width: 100%;
    padding: 20px 20px 8px;
    border-radius: 20px;
    background: #fff;
  }

  .cfm-v4-next {
    height: 468px;
    min-height: 468px;
  }

  .cfm-v4-next > h2,
  .cfm-v4-category-next > h2 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.25;
  }

  .cfm-v4-next > h2 {
    font-size: 20px;
  }

  .cfm-v4-next-list {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: repeat(4, 100px);
    height: 400px;
    min-height: 400px;
    max-height: 400px;
    margin-top: 12px;
    overflow: hidden;
  }

  .cfm-v4-next-story,
  .cfm-v4-next-story:nth-child(n + 4) {
    display: block;
    height: 100px;
    min-height: 100px;
    max-height: 100px;
    overflow: hidden;
    border-bottom: 0;
    box-shadow: inset 0 -1px 0 var(--cfm-line);
  }

  .cfm-v4-next-story:nth-child(-n + 3) {
    border-bottom: 0;
    box-shadow: inset 0 -1px 0 var(--cfm-line);
  }

  .cfm-v4-next-story:nth-child(n + 5),
  .cfm-v4-next-story:last-child:nth-child(n + 5) {
    display: none;
  }

  .cfm-v4-next-story:last-child,
  .cfm-v4-next-story:nth-child(4) {
    border-bottom: 0;
    box-shadow: none;
  }

  .cfm-v4-next-story .cfm-story-content {
    justify-content: flex-start;
    height: 100px;
    min-height: 100px;
    max-height: 100px;
    padding: 16px 0;
    overflow: hidden;
  }

  .cfm-v4-next-story .cfm-story-category {
    margin-bottom: 7px;
    font-size: 12px;
    line-height: 1.25;
  }

  .cfm-v4-next-story .cfm-story-title {
    font-size: 16px;
    line-height: 1.35;
    overflow-wrap: anywhere;
    -webkit-line-clamp: 2;
  }

  /* Reusable feed cards */
  .cfm-v4-home-content,
  .cfm-v4-category-content,
  .cfm-v4-search-layout,
  .cfm-v4-saved-page-layout,
  .cfm-v4-single-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .cfm-v4-home-content,
  .cfm-v4-category-content {
    margin-top: 20px;
  }

  .cfm-v4-story-grid,
  .cfm-v4-saved-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .cfm-v4-story-card {
    grid-template-rows: 190px minmax(0, auto);
    width: 100%;
    min-height: 0;
    border-radius: 20px;
  }

  .cfm-v4-story-media-wrap {
    min-height: 190px;
  }

  .cfm-v4-bookmark {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .cfm-v4-story-body {
    min-height: 188px;
    padding: 20px;
  }

  .cfm-v4-story-kicker {
    margin-bottom: 12px;
  }

  .cfm-v4-story-body h2,
  .cfm-v4-story-body h3 {
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 1.32;
    -webkit-line-clamp: 3;
  }

  .cfm-v4-story-body p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    -webkit-line-clamp: 2;
  }

  .cfm-v4-home-rail,
  .cfm-v4-category-rail,
  .cfm-v4-single-rail,
  .cfm-v4-saved-page-rail {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    width: 100%;
  }

  .cfm-v4-dealer-nav,
  .cfm-v4-post-stack,
  .cfm-v4-product-campaigns,
  .cfm-banner-slot {
    width: 100%;
    max-width: 100%;
  }

  /* Editorial focus */
  .cfm-v4-focus {
    width: auto;
    margin-top: 56px;
    margin-right: calc(-1 * var(--cfm-mobile-pad-right));
    margin-left: calc(-1 * var(--cfm-mobile-pad-left));
    padding: 40px var(--cfm-mobile-pad-right) 48px var(--cfm-mobile-pad-left);
    border-radius: 0;
  }

  .cfm-v4-focus > h2 {
    margin: 0 0 28px;
    font-size: 22px;
    font-weight: 550;
    line-height: 1.25;
  }

  .cfm-v4-focus-story--focus {
    display: block;
  }

  .cfm-v4-focus-story--focus > .cfm-v4-story-media {
    width: 100%;
    height: auto;
    aspect-ratio: 358 / 245;
    border-radius: 20px;
  }

  .cfm-v4-focus-story--focus .cfm-v4-focus-copy {
    padding-top: 20px;
  }

  .cfm-v4-focus-story--focus .cfm-v4-focus-copy h3 {
    margin: 0 0 12px;
    font-size: 24px;
    line-height: 1.25;
  }

  .cfm-v4-focus-story--focus .cfm-v4-focus-copy p {
    font-size: 14px;
    line-height: 1.5;
  }

  .cfm-v4-focus-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    margin-top: 24px;
    padding-top: 0;
    border-top: 0;
  }

  .cfm-v4-focus-story--focus-small {
    display: block;
    padding: 20px 0;
    border-bottom: 1px solid rgb(255 255 255 / 28%);
  }

  .cfm-v4-focus-story--focus-small:first-child {
    border-top: 1px solid rgb(255 255 255 / 28%);
  }

  .cfm-v4-focus-story--focus-small > .cfm-v4-story-media {
    display: none;
  }

  .cfm-v4-focus-story--focus-small .cfm-v4-focus-copy {
    padding: 0;
  }

  .cfm-v4-focus-story--focus-small .cfm-v4-focus-copy h3 {
    margin: 0 0 8px;
    font-size: 16px;
    line-height: 1.4;
    -webkit-line-clamp: 3;
  }

  .cfm-v4-focus-story--focus-small .cfm-v4-focus-copy p {
    font-size: 14px;
    line-height: 1.5;
    -webkit-line-clamp: 2;
  }

  /* TOP-3 */
  .cfm-v4-popular {
    padding: 48px 0 56px;
  }

  .cfm-v4-popular-head {
    display: grid;
    gap: 14px;
    margin-bottom: 24px;
  }

  .cfm-v4-popular-head h2 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.25;
  }

  .cfm-v4-popular-head nav {
    gap: 6px;
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .cfm-v4-popular-head nav::-webkit-scrollbar {
    display: none;
  }

  .cfm-v4-popular-head nav a,
  .cfm-v4-popular-head nav button {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 8px 13px;
    border-radius: 10px;
    font-size: 14px;
  }

  .cfm-v4-popular-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .cfm-v4-popular-grid > :last-child {
    grid-column: auto;
  }

  .cfm-v4-focus-story--popular {
    position: relative;
    display: block;
    width: 100%;
    height: 470px;
    min-height: 470px;
    overflow: hidden;
    border-radius: 20px;
    background: #333;
  }

  .cfm-v4-focus-story--popular > .cfm-v4-story-media {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
  }

  .cfm-v4-focus-story--popular > .cfm-v4-story-media::after {
    position: absolute;
    inset: 28% 0 0;
    display: block;
    background: linear-gradient(180deg, transparent, rgb(0 0 0 / 88%));
    content: "";
  }

  .cfm-v4-focus-story--popular .cfm-v4-focus-copy {
    position: absolute;
    z-index: 2;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 20px;
    color: #fff;
  }

  .cfm-v4-focus-story--popular .cfm-v4-focus-category {
    position: absolute;
    top: 20px;
    left: 20px;
    display: inline-flex;
    margin: 0;
    padding: 5px 10px;
    border-radius: 9px;
    background: #fff;
    font-size: 12px;
  }

  .cfm-v4-focus-story--popular .cfm-v4-focus-copy h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 24px;
    line-height: 1.25;
    -webkit-line-clamp: 4;
  }

  .cfm-v4-focus-story--popular .cfm-v4-focus-copy p {
    display: -webkit-box;
    overflow: hidden;
    color: rgb(255 255 255 / 88%);
    font-size: 14px;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  /* Category and list pages */
  .cfm-v4-category-head {
    padding: 28px 0 0;
  }

  .cfm-v4-category-head h1 {
    margin: 0 0 18px;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.25;
  }

  .cfm-v4-category-tabs {
    gap: 6px;
    margin-right: calc(-1 * var(--cfm-mobile-pad-right));
    padding-right: var(--cfm-mobile-pad-right);
  }

  .cfm-v4-category-tabs a {
    min-height: 38px;
    padding: 7px 13px;
    border-radius: 10px;
    font-size: 14px;
  }

  .cfm-v4-category-tabs a[data-mobile-label] {
    font-size: 0;
  }

  .cfm-v4-category-tabs a[data-mobile-label]::after {
    font-size: 14px;
    line-height: 1.2;
    content: attr(data-mobile-label);
  }

  .cfm-v4-category-content {
    margin-bottom: 56px;
  }

  .cfm-v4-search-head,
  .cfm-v4-saved-page-layout {
    padding-top: 28px;
  }

  .cfm-v4-search-head h1,
  .cfm-v4-saved-page-head h1 {
    font-size: 29px;
    line-height: 1.2;
  }

  /* Article */
  .cfm-v4-single-grid {
    gap: 28px;
    padding-top: 30px;
    padding-bottom: 56px;
  }

  .cfm-v4-article {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .cfm-v4-article-header {
    width: 100%;
    padding-bottom: 0;
  }

  .cfm-v4-article-category {
    margin-bottom: 18px;
    font-size: 14px;
  }

  .cfm-v4-article-header h1 {
    width: 100%;
    max-width: 100%;
    margin: 0 0 22px;
    font-size: 29px;
    font-weight: 620;
    line-height: 1.25;
    text-wrap: pretty;
  }

  .cfm-v4-article-cover {
    width: 100%;
    aspect-ratio: 3 / 2;
    border-radius: 20px;
  }

  .cfm-v4-article-meta--standalone {
    gap: 12px;
    min-height: 40px;
    margin: 16px 0 0;
    font-size: 13px;
  }

  .cfm-v4-article-bookmark {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 10px;
    background: #fff;
  }

  .cfm-v4-article-reading-time {
    display: none;
  }

  .cfm-v4-article-anchors {
    margin: 24px 0 26px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .cfm-v4-article-anchors-label,
  .cfm-v4-article-anchors a > span {
    display: none;
  }

  .cfm-v4-article-anchors ol {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    width: 100%;
  }

  .cfm-v4-article-anchors a {
    display: block;
    min-height: 0;
    padding: 7px 0;
    color: var(--cfm-green-dark);
    line-height: 1.45;
  }

  .cfm-v4-article-anchors a > strong {
    color: inherit;
    font-size: 15px;
    font-weight: 560;
    text-decoration-line: underline;
    text-decoration-style: dotted;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
  }

  .cfm-v4-article > .cfm-author-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    justify-items: start;
    gap: 10px;
    margin: 0 0 28px;
    padding: 20px 0;
    border-top: 1px solid var(--cfm-line);
    border-bottom: 1px solid var(--cfm-line);
  }

  .cfm-v4-article-content {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    font-size: 16px;
    line-height: 1.62;
    overflow-wrap: anywhere;
  }

  .cfm-v4-article-content p,
  .cfm-v4-article-content ul,
  .cfm-v4-article-content ol,
  .cfm-v4-article-content blockquote,
  .cfm-v4-article-content figure,
  .cfm-v4-article-content table {
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  .cfm-v4-article-content ul,
  .cfm-v4-article-content ol {
    padding-right: 0;
    padding-left: 1.4em;
  }

  .cfm-v4-article-content h2 {
    margin-top: 38px;
    padding-bottom: 0;
    border-bottom: 0;
    font-size: 24px;
    line-height: 1.28;
  }

  .cfm-v4-article-content h2::after {
    display: none;
  }

  .cfm-v4-article-content h3 {
    margin-top: 30px;
    font-size: 21px;
  }

  .cfm-v4-article-content img {
    max-width: 100%;
  }

  .cfm-v4-article-content blockquote {
    width: 100%;
    padding: 20px 18px 20px 46px;
    font-size: 17px;
    line-height: 1.55;
  }

  .cfm-v4-article-content blockquote::before {
    top: 20px;
    left: 13px;
    font-size: 40px;
  }

  .cfm-v4-article > .cfm-house-banner--billboard,
  .cfm-v4-article > .cfm-banner-slot--billboard,
  .cfm-article-cta,
  .cfm-v4-reaction-section,
  .cfm-v4-related {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .cfm-v4-related > h2 {
    font-size: 22px;
    line-height: 1.25;
  }
}

@media (max-width: 359px) {
  .cfm-v4-logo,
  .cfm-v4-logo img {
    width: 104px;
  }

  .cfm-v4-mobile-actions button {
    width: 40px;
    height: 40px;
  }

  .cfm-house-banner--billboard,
  .cfm-house-banner--compact,
  .cfm-house-banner--tower {
    min-height: 260px;
  }

  .cfm-house-banner--billboard > a,
  .cfm-house-banner--compact > a,
  .cfm-house-banner--tower > a {
    grid-template-rows: 40% minmax(0, 60%);
  }

  .cfm-house-banner--billboard .cfm-house-banner__content,
  .cfm-house-banner--compact .cfm-house-banner__content,
  .cfm-house-banner--tower .cfm-house-banner__content {
    padding: 12px;
  }

  .cfm-house-banner--billboard .cfm-house-banner__logo,
  .cfm-house-banner--compact .cfm-house-banner__logo,
  .cfm-house-banner--tower .cfm-house-banner__logo {
    max-width: 104px;
    max-height: 22px;
  }

  .cfm-house-banner--billboard strong,
  .cfm-house-banner--compact strong,
  .cfm-house-banner--tower strong {
    font-size: 17px;
  }

  .cfm-v4-hero-card .cfm-story-title {
    font-size: 24px;
  }

  .cfm-v4-hero-card .cfm-story-open {
    min-width: 180px;
    padding-inline: 16px;
    font-size: 14px;
  }

  .cfm-v4-hero-status {
    grid-template-columns: 42px auto;
    gap: 6px;
    min-width: 104px;
    margin-right: 10px;
    padding-inline: 8px;
  }

  .cfm-v4-next-story .cfm-story-title {
    font-size: 16px;
  }

  .cfm-v4-dealer-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .cfm-v4-footer-nav {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Responsive shell hardening: drawer, lead story, ad inventory and footer. */
@media (min-width: 900px) {
  .cfm-house-banner--billboard,
  body.cfm-v4-site .cfm-banner-slot--billboard:not(.cfm-house-banner),
  body.cfm-v4-site .cfm-banner-slot[data-banner-size="970 x 90"]:not(.cfm-house-banner) {
    height: 180px;
    min-height: 180px;
    max-height: 180px;
    aspect-ratio: auto;
  }

  .cfm-house-banner--billboard > a {
    grid-template-columns: minmax(0, 58fr) minmax(0, 42fr);
    grid-template-rows: minmax(0, 1fr);
  }

  .cfm-house-banner--billboard .cfm-house-banner__content,
  .cfm-v4-article .cfm-house-banner--billboard .cfm-house-banner__content {
    grid-column: 1;
    grid-row: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) max-content;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 8px 16px;
    align-items: center;
    padding: 18px 20px;
  }

  .cfm-house-banner--billboard .cfm-house-banner__media {
    grid-column: 2;
    grid-row: 1;
  }

  .cfm-house-banner--billboard .cfm-house-banner__logo,
  .cfm-v4-article .cfm-house-banner--billboard .cfm-house-banner__logo {
    grid-column: 1;
    grid-row: 1;
    width: auto;
    max-width: 112px;
    max-height: 28px;
  }

  .cfm-house-banner--billboard .cfm-house-banner__copy {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    gap: 5px;
    margin: 0;
  }

  .cfm-house-banner--billboard strong,
  .cfm-v4-article .cfm-house-banner--billboard strong {
    display: -webkit-box;
    overflow: hidden;
    font-size: 18px;
    line-height: 1.18;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .cfm-house-banner--billboard .cfm-house-banner__description,
  .cfm-v4-article .cfm-house-banner--billboard .cfm-house-banner__description {
    display: -webkit-box;
    max-width: none;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.3;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .cfm-house-banner--billboard .cfm-house-banner__action,
  .cfm-v4-article .cfm-house-banner--billboard .cfm-house-banner__action {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
    min-height: 34px;
    margin: 0;
    padding: 8px 14px;
    font-size: 12px;
  }

  body.cfm-v4-site .cfm-banner-slot--billboard:not(.cfm-house-banner) > a,
  body.cfm-v4-site .cfm-banner-slot[data-banner-size="970 x 90"]:not(.cfm-house-banner) > a {
    display: block;
    width: 100%;
    height: 100%;
  }

  body.cfm-v4-site .cfm-banner-slot--billboard:not(.cfm-house-banner) img,
  body.cfm-v4-site .cfm-banner-slot[data-banner-size="970 x 90"]:not(.cfm-house-banner) img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .cfm-house-banner--compact,
  body.cfm-v4-site .cfm-banner-slot[data-banner-size="300 x 250"] {
    justify-self: center;
    width: 300px;
    max-width: 100%;
    height: 250px;
    min-height: 250px;
    aspect-ratio: 6 / 5;
    margin-inline: auto;
  }

  body.cfm-v4-site .cfm-banner-slot[data-banner-size="300 x 250"]:not(.cfm-house-banner) > a {
    display: block;
    width: 100%;
    height: 100%;
  }

  body.cfm-v4-site .cfm-banner-slot[data-banner-size="300 x 250"]:not(.cfm-house-banner) img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

@media (min-width: 481px) and (max-width: 899px) {
  .cfm-v4-hero-card {
    height: 400px;
    min-height: 400px;
  }

  .cfm-v4-hero-card .cfm-story-content {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    width: min(70%, 480px);
    padding: 26px;
  }

  .cfm-v4-hero-card .cfm-story-copy {
    align-self: center;
  }

  .cfm-v4-hero-card .cfm-story-category,
  .cfm-v4-hero-card .cfm-story-open {
    justify-self: start;
    width: max-content;
  }

  .cfm-v4-hero-card .cfm-story-title {
    display: -webkit-box;
    margin: 0 0 10px;
    overflow: hidden;
    font-size: 28px;
    line-height: 1.18;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }

  .cfm-v4-hero-card .cfm-story-deck {
    margin: 0;
    font-size: 15px;
    line-height: 1.42;
    -webkit-line-clamp: 3;
  }

  .cfm-v4-hero-card .cfm-story-open {
    min-height: 44px;
    margin-top: 0;
  }

  .cfm-house-banner--billboard,
  body.cfm-v4-site .cfm-banner-slot--billboard:not(.cfm-house-banner),
  body.cfm-v4-site .cfm-banner-slot[data-banner-size="970 x 90"]:not(.cfm-house-banner) {
    width: 100%;
    height: 180px;
    min-height: 180px;
    max-height: 180px;
    aspect-ratio: auto;
  }

  .cfm-house-banner--billboard > a {
    grid-template-columns: minmax(0, 58fr) minmax(0, 42fr);
    grid-template-rows: minmax(0, 1fr);
  }

  .cfm-house-banner--billboard .cfm-house-banner__content,
  .cfm-v4-article .cfm-house-banner--billboard .cfm-house-banner__content {
    grid-column: 1;
    grid-row: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) max-content;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 7px 12px;
    align-items: center;
    padding: 16px;
  }

  .cfm-house-banner--billboard .cfm-house-banner__media {
    grid-column: 2;
    grid-row: 1;
  }

  .cfm-house-banner--billboard .cfm-house-banner__logo,
  .cfm-v4-article .cfm-house-banner--billboard .cfm-house-banner__logo {
    grid-column: 1;
    grid-row: 1;
    width: auto;
    max-width: 96px;
    max-height: 24px;
  }

  .cfm-house-banner--billboard .cfm-house-banner__copy {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    gap: 0;
    margin: 0;
  }

  .cfm-house-banner--billboard strong,
  .cfm-v4-article .cfm-house-banner--billboard strong {
    display: -webkit-box;
    overflow: hidden;
    font-size: 16px;
    line-height: 1.18;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .cfm-house-banner--billboard .cfm-house-banner__description,
  .cfm-v4-article .cfm-house-banner--billboard .cfm-house-banner__description {
    display: none;
  }

  .cfm-house-banner--billboard .cfm-house-banner__action,
  .cfm-v4-article .cfm-house-banner--billboard .cfm-house-banner__action {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
    min-height: 32px;
    margin: 0;
    padding: 7px 11px;
    font-size: 11px;
  }

  body.cfm-v4-site .cfm-banner-slot--billboard:not(.cfm-house-banner) > a,
  body.cfm-v4-site .cfm-banner-slot[data-banner-size="970 x 90"]:not(.cfm-house-banner) > a {
    display: block;
    width: 100%;
    height: 100%;
  }

  body.cfm-v4-site .cfm-banner-slot--billboard:not(.cfm-house-banner) img,
  body.cfm-v4-site .cfm-banner-slot[data-banner-size="970 x 90"]:not(.cfm-house-banner) img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .cfm-house-banner--compact,
  body.cfm-v4-site .cfm-banner-slot[data-banner-size="300 x 250"] {
    justify-self: center;
    width: 300px;
    max-width: 100%;
    height: 250px;
    min-height: 250px;
    aspect-ratio: 6 / 5;
    margin-inline: auto;
  }

  body.cfm-v4-site .cfm-banner-slot[data-banner-size="300 x 250"]:not(.cfm-house-banner) > a {
    display: block;
    width: 100%;
    height: 100%;
  }

  body.cfm-v4-site .cfm-banner-slot[data-banner-size="300 x 250"]:not(.cfm-house-banner) img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

@media (min-width: 481px) and (max-width: 699px) {
  .cfm-v4-hero-card .cfm-story-content {
    width: min(72%, 450px);
    padding: 24px;
  }

  .cfm-v4-hero-card .cfm-story-title {
    font-size: 25px;
  }

  .cfm-v4-hero-card .cfm-story-deck {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .cfm-v4-product-campaigns {
    justify-content: center;
  }

  .cfm-v4-mobile-open,
  .cfm-v4-mobile-open body {
    overflow: hidden;
    overscroll-behavior: none;
  }

  .cfm-v4-mobile-panel {
    position: fixed;
    z-index: 190;
    inset: 0;
    display: block;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    max-height: none;
    padding: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    border: 0;
    background: rgb(4 12 10 / 58%);
    backdrop-filter: blur(4px);
    pointer-events: none;
    transform: none;
    transition: opacity 260ms ease, visibility 0s linear 420ms;
  }

  .cfm-v4-mobile-panel[aria-hidden="false"] {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition-delay: 0s;
  }

  .cfm-v4-mobile-backdrop,
  .cfm-v4-mobile-panel-backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    outline: 0;
    background: transparent;
    cursor: default;
  }

  .cfm-v4-mobile-drawer {
    position: absolute;
    z-index: 1;
    inset: 0 auto 0 0;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    width: min(88vw, 340px);
    max-width: calc(100vw - 24px);
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    border-radius: 0 16px 16px 0;
    background: #fbfbfa;
    box-shadow: 20px 0 60px rgb(0 0 0 / 24%);
    transform: translate3d(-102%, 0, 0);
    transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
  }

  .cfm-v4-mobile-panel[aria-hidden="false"] .cfm-v4-mobile-drawer {
    transform: translate3d(0, 0, 0);
  }

  .cfm-v4-mobile-drawer-head,
  .cfm-v4-mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
    padding: max(16px, env(safe-area-inset-top)) 18px 14px max(20px, env(safe-area-inset-left));
    border-bottom: 1px solid var(--cfm-line);
  }

  .cfm-v4-mobile-drawer-logo {
    display: inline-flex;
    align-items: center;
    width: 142px;
    max-width: calc(100% - 56px);
  }

  .cfm-v4-mobile-drawer-logo img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 34px;
    object-fit: contain;
    object-position: left center;
  }

  .cfm-v4-mobile-drawer-close {
    display: inline-flex;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 10px;
    background: #f0f1f0;
    color: var(--cfm-ink);
  }

  .cfm-v4-mobile-drawer-close .cfm-v4-icon {
    width: 21px;
    height: 21px;
  }

  .cfm-v4-mobile-drawer-body {
    min-height: 0;
    padding: 22px max(18px, env(safe-area-inset-right)) max(30px, calc(22px + env(safe-area-inset-bottom))) max(20px, env(safe-area-inset-left));
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
  }

  .cfm-v4-mobile-drawer-body > * {
    opacity: 0;
    transform: translateX(-10px);
  }

  .cfm-v4-mobile-panel[aria-hidden="false"] .cfm-v4-mobile-drawer-body > * {
    animation: cfm-v4-drawer-item-in 380ms 90ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .cfm-v4-mobile-panel[aria-hidden="false"] .cfm-v4-mobile-drawer-body > :nth-child(2) {
    animation-delay: 135ms;
  }

  .cfm-v4-mobile-panel[aria-hidden="false"] .cfm-v4-mobile-drawer-body > :nth-child(3) {
    animation-delay: 180ms;
  }

  .cfm-v4-mobile-shortcuts,
  .cfm-v4-mobile-drawer-shortcuts {
    display: grid;
    margin: 0 0 24px;
  }

  .cfm-v4-mobile-shortcuts a,
  .cfm-v4-mobile-drawer-shortcuts a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 10px 0;
    border-bottom: 1px solid var(--cfm-line);
    color: var(--cfm-ink);
    font-size: 18px;
    font-weight: 620;
    line-height: 1.25;
  }

  .cfm-v4-mobile-drawer-section,
  .cfm-v4-mobile-section {
    margin-top: 24px;
  }

  .cfm-v4-mobile-drawer-section > h2,
  .cfm-v4-mobile-section > h2,
  .cfm-v4-mobile-topics > strong {
    display: block;
    margin: 0 0 12px;
    color: var(--cfm-muted);
    font-size: 12px;
    font-weight: 650;
    line-height: 1.3;
    text-transform: uppercase;
  }

  #cfm-v4-mobile-categories-title,
  #cfm-v4-mobile-topics-title {
    color: #0f7358;
  }

  .cfm-v4-mobile-category-grid,
  .cfm-v4-mobile-sections-grid,
  .cfm-v4-mobile-categories {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 14px;
  }

  .cfm-v4-mobile-category-grid a,
  .cfm-v4-mobile-sections-grid a,
  .cfm-v4-mobile-categories a {
    display: flex;
    align-items: center;
    min-width: 0;
    min-height: 42px;
    padding: 8px 0;
    border-bottom: 1px solid var(--cfm-line);
    border-radius: 0;
    background: transparent;
    color: var(--cfm-ink);
    font-size: 14px;
    font-weight: 520;
    line-height: 1.3;
  }

  .cfm-v4-mobile-topics {
    margin-top: 26px;
    padding: 0;
  }

  .cfm-v4-mobile-topics > div,
  .cfm-v4-mobile-topic-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 14px;
  }

  .cfm-v4-mobile-topics a,
  .cfm-v4-mobile-topic-grid a {
    display: flex;
    align-items: center;
    min-width: 0;
    min-height: 46px;
    padding: 8px 0;
    border-bottom: 1px solid var(--cfm-line);
    border-radius: 0;
    background: transparent;
    color: var(--cfm-ink);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.32;
  }

  .cfm-v4-mobile-social-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 0;
    margin-top: 28px;
    gap: 8px;
  }

  .cfm-v4-mobile-social-label {
    min-width: 0;
    color: var(--cfm-ink);
    font-size: 13px;
    font-weight: 560;
    line-height: 1.3;
    white-space: nowrap;
  }

  .cfm-v4-mobile-socials {
    flex: 0 0 auto;
    flex-wrap: nowrap;
    gap: 2px;
    margin-left: auto;
  }

  .cfm-v4-mobile-socials .cfm-v4-footer-social {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }

  .cfm-v4-mobile-socials img {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }

  .cfm-v4-mobile-socials .cfm-v4-footer-social--max img {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .cfm-v4-hero-card {
    display: grid;
    grid-template-rows: auto auto;
    width: 100%;
    height: auto;
    min-height: 0;
    overflow: hidden;
    border-radius: 20px;
    background: #101412;
  }

  .cfm-v4-hero-card .cfm-story-media {
    position: relative;
    inset: auto;
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
    background-position: center;
    background-size: cover;
  }

  .cfm-v4-hero-card .cfm-story-media::after {
    display: none;
  }

  .cfm-v4-hero-card .cfm-story-content {
    position: relative;
    inset: auto;
    grid-column: 1;
    grid-row: 2;
    justify-content: flex-start;
    width: 100%;
    max-width: none;
    height: auto;
    min-height: 312px;
    padding: 20px;
    background: #101412;
  }

  .cfm-v4-hero-card .cfm-story-category {
    min-height: 28px;
    margin: 0 0 14px;
  }

  .cfm-v4-hero-card .cfm-story-title {
    display: -webkit-box;
    margin: 0 0 10px;
    overflow: hidden;
    font-size: 24px;
    line-height: 1.24;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }

  .cfm-v4-hero-card .cfm-story-deck {
    display: -webkit-box;
    margin: 0 0 16px;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .cfm-v4-hero-card .cfm-story-open {
    width: max-content;
    min-width: 164px;
    min-height: 44px;
    margin: 0;
    padding: 9px 16px;
  }

  .cfm-v4-dealer-list {
    gap: 12px;
  }

  .cfm-v4-dealer-list a {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 10px;
    min-height: 56px;
  }

  .cfm-v4-dealer-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .cfm-v4-dealer-icon img {
    width: 40px;
    height: 40px;
  }

  body.cfm-v4-site .cfm-banner-slot.cfm-house-banner--billboard,
  body.cfm-v4-site .cfm-banner-slot--billboard:not(.cfm-house-banner),
  body.cfm-v4-site .cfm-banner-slot[data-banner-size="970 x 90"]:not(.cfm-house-banner) {
    width: calc(100% + var(--cfm-mobile-pad-left) + var(--cfm-mobile-pad-right));
    max-width: none;
    height: 100px;
    min-height: 100px;
    max-height: 100px;
    margin-right: calc(-1 * var(--cfm-mobile-pad-right));
    margin-left: calc(-1 * var(--cfm-mobile-pad-left));
    aspect-ratio: auto;
    border-radius: 8px;
  }

  .cfm-house-banner--billboard > a {
    grid-template-columns: minmax(0, 60fr) minmax(0, 40fr);
    grid-template-rows: minmax(0, 1fr);
  }

  .cfm-house-banner--billboard .cfm-house-banner__content,
  .cfm-v4-article .cfm-house-banner--billboard .cfm-house-banner__content {
    grid-column: 1;
    grid-row: 1;
    display: grid;
    grid-template-rows: 17px minmax(0, 1fr) 24px;
    align-items: start;
    padding: 9px 11px;
  }

  .cfm-house-banner--billboard .cfm-house-banner__media {
    grid-column: 2;
    grid-row: 1;
  }

  .cfm-house-banner--billboard .cfm-house-banner__logo,
  .cfm-v4-article .cfm-house-banner--billboard .cfm-house-banner__logo {
    width: auto;
    max-width: 84px;
    height: auto;
    max-height: 17px;
  }

  .cfm-house-banner--billboard .cfm-house-banner__copy {
    align-self: center;
    gap: 0;
    margin: 2px 0 0;
  }

  .cfm-house-banner--billboard .cfm-house-banner__kicker,
  .cfm-house-banner--billboard .cfm-house-banner__description {
    display: none;
  }

  .cfm-house-banner--billboard strong,
  .cfm-v4-article .cfm-house-banner--billboard strong {
    display: -webkit-box;
    overflow: hidden;
    font-size: 13px;
    line-height: 1.14;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .cfm-house-banner--billboard .cfm-house-banner__action,
  .cfm-v4-article .cfm-house-banner--billboard .cfm-house-banner__action {
    align-self: end;
    min-height: 24px;
    margin: 0;
    padding: 4px 9px;
    border-radius: 5px;
    font-size: 10px;
  }

  .cfm-house-banner--billboard .cfm-house-banner__disclosure {
    top: 5px;
    right: 6px;
    font-size: 8px;
  }

  body.cfm-v4-site .cfm-banner-slot--billboard:not(.cfm-house-banner) > a,
  body.cfm-v4-site .cfm-banner-slot[data-banner-size="970 x 90"]:not(.cfm-house-banner) > a {
    display: block;
    width: 100%;
    height: 100%;
  }

  body.cfm-v4-site .cfm-banner-slot--billboard:not(.cfm-house-banner) img,
  body.cfm-v4-site .cfm-banner-slot[data-banner-size="970 x 90"]:not(.cfm-house-banner) img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .cfm-house-banner--compact,
  body.cfm-v4-site .cfm-banner-slot[data-banner-size="300 x 250"] {
    position: relative;
    left: 50%;
    justify-self: start;
    width: min(300px, calc(100vw - 4px));
    max-width: none;
    height: auto;
    min-height: 0;
    aspect-ratio: 6 / 5;
    margin-right: 0;
    margin-left: 0;
    transform: translateX(-50%);
  }

  body.cfm-v4-site .cfm-banner-slot[data-banner-size="300 x 250"]:not(.cfm-house-banner) > a {
    display: block;
    width: 100%;
    height: 100%;
  }

  body.cfm-v4-site .cfm-banner-slot[data-banner-size="300 x 250"]:not(.cfm-house-banner) img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .cfm-v4-footer {
    padding-top: 42px;
  }

  .cfm-v4-footer-inner {
    gap: 30px;
  }

  .cfm-v4-footer-nav {
    gap: 26px 20px;
  }

  .cfm-v4-footer-nav > div {
    gap: 9px;
  }
}

@media (min-width: 360px) and (max-width: 480px) {
  .cfm-v4-footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cfm-v4-footer-nav > div:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 359px) {
  .cfm-v4-footer-nav {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }
}

/* House campaign layout contract: stable logo, copy and CTA zones by slot width. */
body.cfm-v4-site .cfm-house-banner {
  container-name: cfm-house-banner;
  container-type: inline-size;
}

body.cfm-v4-site .cfm-house-banner .cfm-house-banner__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: start;
  align-items: stretch;
  align-content: center;
  min-width: 0;
}

body.cfm-v4-site .cfm-house-banner .cfm-house-banner__logo {
  display: block;
  justify-self: start;
  align-self: center;
  min-width: 0;
  object-fit: contain;
  object-position: left center;
}

body.cfm-v4-site .cfm-house-banner .cfm-house-banner__copy {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  margin: 0;
}

body.cfm-v4-site .cfm-house-banner .cfm-house-banner__action {
  justify-self: start;
  align-self: center;
  box-sizing: border-box;
  width: max-content;
  max-width: 100%;
  margin: 0;
}

/* Billboard default: the 320px inventory uses a compact 100px strip. */
body.cfm-v4-site .cfm-house-banner--billboard > a {
  grid-template-columns: minmax(0, 60fr) minmax(0, 40fr);
  grid-template-rows: minmax(0, 1fr);
}

body.cfm-v4-site .cfm-house-banner--billboard .cfm-house-banner__media {
  grid-column: 2;
  grid-row: 1;
}

body.cfm-v4-site .cfm-house-banner--billboard .cfm-house-banner__content {
  grid-column: 1;
  grid-row: 1;
  grid-template-rows: 17px 30px 24px;
  gap: 5px;
  padding: 9px 11px;
}

body.cfm-v4-site .cfm-house-banner--billboard .cfm-house-banner__logo {
  grid-row: 1;
  width: 84px;
  max-width: 84px;
  height: 17px;
  max-height: 17px;
}

body.cfm-v4-site .cfm-house-banner--billboard .cfm-house-banner__copy {
  grid-row: 2;
  display: grid;
  grid-template-rows: minmax(0, 1fr);
  align-content: center;
  height: 30px;
  gap: 0;
}

body.cfm-v4-site .cfm-house-banner--billboard .cfm-house-banner__kicker,
body.cfm-v4-site .cfm-house-banner--billboard .cfm-house-banner__description {
  display: none;
}

body.cfm-v4-site .cfm-house-banner--billboard strong {
  display: -webkit-box;
  align-self: center;
  max-width: 100%;
  overflow: hidden;
  font-size: 13px;
  line-height: 1.14;
  text-wrap: pretty;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body.cfm-v4-site .cfm-house-banner--billboard .cfm-house-banner__action {
  grid-column: 1;
  grid-row: 3;
  height: 24px;
  min-height: 24px;
  padding: 4px 9px;
  border-radius: 5px;
  font-size: 10px;
  line-height: 1;
}

/* Compact inventory stays a true 300 x 250 card with invariant content rows. */
body.cfm-v4-site .cfm-house-banner--compact {
  width: min(300px, 100%);
  max-width: 300px;
  height: auto;
  min-height: 0;
  aspect-ratio: 6 / 5;
}

body.cfm-v4-site .cfm-house-banner--compact > a {
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: 40% minmax(0, 60%);
}

body.cfm-v4-site .cfm-house-banner--compact .cfm-house-banner__media {
  grid-column: 1;
  grid-row: 1;
}

body.cfm-v4-site .cfm-house-banner--compact .cfm-house-banner__content {
  grid-column: 1;
  grid-row: 2;
  grid-template-rows: 22px 42px 30px;
  gap: 7px;
  padding: 11px 16px;
}

body.cfm-v4-site .cfm-house-banner--compact .cfm-house-banner__logo {
  grid-row: 1;
  width: 108px;
  max-width: 108px;
  height: 22px;
  max-height: 22px;
}

body.cfm-v4-site .cfm-house-banner--compact .cfm-house-banner__copy {
  grid-row: 2;
  display: grid;
  grid-template-rows: minmax(0, 1fr);
  align-content: center;
  height: 42px;
  gap: 0;
}

body.cfm-v4-site .cfm-house-banner--compact .cfm-house-banner__kicker,
body.cfm-v4-site .cfm-house-banner--compact .cfm-house-banner__description {
  display: none;
}

body.cfm-v4-site .cfm-house-banner--compact strong {
  display: -webkit-box;
  align-self: center;
  max-width: 100%;
  overflow: hidden;
  font-size: 17px;
  line-height: 1.16;
  text-wrap: pretty;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body.cfm-v4-site .cfm-house-banner--compact .cfm-house-banner__action {
  grid-row: 3;
  height: 30px;
  min-height: 30px;
  padding: 6px 12px;
  font-size: 11px;
  line-height: 1;
}

/* Tower inventory remains a true 300 x 600 placement with deeper copy rows. */
body.cfm-v4-site .cfm-house-banner--tower {
  justify-self: center;
  width: min(300px, 100%);
  max-width: 300px;
  height: auto;
  min-height: 0;
  margin-inline: auto;
  aspect-ratio: 1 / 2;
}

body.cfm-v4-site .cfm-house-banner--tower > a {
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: 46% minmax(0, 54%);
}

body.cfm-v4-site .cfm-house-banner--tower .cfm-house-banner__media {
  grid-column: 1;
  grid-row: 1;
}

body.cfm-v4-site .cfm-house-banner--tower .cfm-house-banner__content {
  grid-column: 1;
  grid-row: 2;
  grid-template-rows: 32px 160px 34px;
  gap: 12px;
  padding: 22px;
}

body.cfm-v4-site .cfm-house-banner--tower .cfm-house-banner__logo {
  grid-row: 1;
  width: 132px;
  max-width: 132px;
  height: 32px;
  max-height: 32px;
}

body.cfm-v4-site .cfm-house-banner--tower .cfm-house-banner__copy {
  grid-row: 2;
  display: grid;
  grid-template-rows: 16px 78px 54px;
  align-content: center;
  height: 160px;
  gap: 6px;
}

body.cfm-v4-site .cfm-house-banner--tower .cfm-house-banner__kicker {
  display: -webkit-box;
  align-self: center;
  overflow: hidden;
  font-size: 11.5px;
  line-height: 1.3;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

body.cfm-v4-site .cfm-house-banner--tower strong {
  display: -webkit-box;
  align-self: center;
  max-width: 100%;
  overflow: hidden;
  font-size: 22px;
  line-height: 1.16;
  text-wrap: pretty;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

body.cfm-v4-site .cfm-house-banner--tower .cfm-house-banner__description {
  display: -webkit-box;
  align-self: center;
  max-width: 100%;
  overflow: hidden;
  font-size: 13px;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

body.cfm-v4-site .cfm-house-banner--tower .cfm-house-banner__action {
  grid-row: 3;
  height: 34px;
  min-height: 34px;
  padding: 8px 14px;
  font-size: 12px;
  line-height: 1;
}

@container cfm-house-banner (min-width: 480px) {
  body.cfm-v4-site .cfm-house-banner--billboard > a {
    grid-template-columns: minmax(0, 58fr) minmax(0, 42fr);
  }

  body.cfm-v4-site .cfm-house-banner--billboard .cfm-house-banner__content {
    grid-template-rows: 24px 40px 32px;
    gap: 8px;
    padding: 16px;
  }

  body.cfm-v4-site .cfm-house-banner--billboard .cfm-house-banner__logo {
    width: 112px;
    max-width: 112px;
    height: 24px;
    max-height: 24px;
  }

  body.cfm-v4-site .cfm-house-banner--billboard .cfm-house-banner__copy {
    grid-template-rows: minmax(0, 1fr);
    height: 40px;
  }

  body.cfm-v4-site .cfm-house-banner--billboard strong {
    font-size: 16px;
    line-height: 1.18;
    -webkit-line-clamp: 2;
  }

  body.cfm-v4-site .cfm-house-banner--billboard .cfm-house-banner__action {
    height: 32px;
    min-height: 32px;
    padding: 7px 11px;
    font-size: 11px;
  }
}

@container cfm-house-banner (min-width: 900px) {
  body.cfm-v4-site .cfm-house-banner--billboard > a {
    grid-template-columns: minmax(0, 54fr) minmax(0, 46fr);
  }

  body.cfm-v4-site .cfm-house-banner--billboard .cfm-house-banner__content {
    grid-template-rows: 28px 44px 34px;
    gap: 9px;
    padding: 18px 20px;
  }

  body.cfm-v4-site .cfm-house-banner--billboard .cfm-house-banner__logo {
    width: 128px;
    max-width: 128px;
    height: 28px;
    max-height: 28px;
  }

  body.cfm-v4-site .cfm-house-banner--billboard .cfm-house-banner__copy {
    grid-template-rows: 21px 16px;
    align-content: center;
    height: 44px;
    gap: 4px;
  }

  body.cfm-v4-site .cfm-house-banner--billboard strong {
    grid-row: 1;
    font-size: 18px;
    line-height: 1.18;
    -webkit-line-clamp: 1;
  }

  body.cfm-v4-site .cfm-house-banner--billboard .cfm-house-banner__description {
    grid-row: 2;
    display: -webkit-box;
    align-self: center;
    max-width: 100%;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.3;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }

  body.cfm-v4-site .cfm-house-banner--billboard .cfm-house-banner__action {
    height: 34px;
    min-height: 34px;
    padding: 8px 14px;
    font-size: 12px;
  }
}

@container cfm-house-banner (max-width: 279px) {
  body.cfm-v4-site .cfm-house-banner--compact .cfm-house-banner__content {
    grid-template-rows: 18px 36px 26px;
    gap: 6px;
    padding: 10px 12px;
  }

  body.cfm-v4-site .cfm-house-banner--compact .cfm-house-banner__logo {
    width: 96px;
    max-width: 96px;
    height: 18px;
    max-height: 18px;
  }

  body.cfm-v4-site .cfm-house-banner--compact .cfm-house-banner__copy {
    height: 36px;
  }

  body.cfm-v4-site .cfm-house-banner--compact strong {
    font-size: 15px;
  }

  body.cfm-v4-site .cfm-house-banner--compact .cfm-house-banner__action {
    height: 26px;
    min-height: 26px;
    padding: 5px 9px;
    font-size: 10px;
  }

  body.cfm-v4-site .cfm-house-banner--tower .cfm-house-banner__content {
    grid-template-rows: 28px 144px 32px;
    gap: 10px;
    padding: 18px;
  }

  body.cfm-v4-site .cfm-house-banner--tower .cfm-house-banner__logo {
    width: 116px;
    max-width: 116px;
    height: 28px;
    max-height: 28px;
  }

  body.cfm-v4-site .cfm-house-banner--tower .cfm-house-banner__copy {
    grid-template-rows: 15px 70px 47px;
    height: 144px;
    gap: 6px;
  }

  body.cfm-v4-site .cfm-house-banner--tower strong {
    font-size: 20px;
  }

  body.cfm-v4-site .cfm-house-banner--tower .cfm-house-banner__description {
    font-size: 12px;
  }

  body.cfm-v4-site .cfm-house-banner--tower .cfm-house-banner__action {
    height: 32px;
    min-height: 32px;
    padding: 7px 12px;
    font-size: 11px;
  }
}

/* Final responsive inventory contract: switch formats by page width, not by legacy slot geometry. */
.cfm-v4-mobile-feed-campaign {
  display: none;
}

:is(.cfm-v4-header-bookmark, .cfm-v4-mobile-bookmark) > span[data-cfm-saved-count] {
  box-sizing: border-box;
  place-items: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

:is(.cfm-v4-header-bookmark, .cfm-v4-mobile-bookmark) [data-cfm-saved-count-value] {
  display: block;
  width: auto;
  height: auto;
  min-width: 0;
  line-height: 1;
  text-align: center;
  transform: translate(0.5px, -0.5px);
}

@media (min-width: 900px) {
  .cfm-v4-product-campaigns--desktop,
  .cfm-v4-product-campaigns--tower {
    display: grid;
  }

  .cfm-v4-product-campaigns--tablet {
    display: none;
  }
}

@media (min-width: 481px) and (max-width: 899px) {
  .cfm-v4-product-campaigns--desktop,
  .cfm-v4-product-campaigns--tower {
    display: none;
  }

  .cfm-v4-product-campaigns--tablet {
    display: grid;
    width: 100%;
    max-width: none;
    margin: 24px 0 0;
  }

  .cfm-v4-product-campaigns--tablet > .cfm-house-banner--billboard,
  .cfm-v4-product-campaigns--tablet > .cfm-banner-slot--billboard {
    margin: 0;
  }

  .cfm-v4-single-rail > .cfm-v4-product-campaigns--tablet,
  .cfm-v4-saved-page-rail > .cfm-v4-product-campaigns--tablet {
    grid-column: 1 / -1;
    order: -1;
    align-self: start;
    margin: 0;
  }

  .cfm-v4-single-rail > .cfm-v4-product-campaigns--tablet > .cfm-house-banner--billboard,
  .cfm-v4-saved-page-rail > .cfm-v4-product-campaigns--tablet > .cfm-house-banner--billboard {
    margin: 0;
  }

  body.cfm-v4-site .cfm-banner-slot.cfm-house-banner--billboard,
  body.cfm-v4-site .cfm-banner-slot--billboard:not(.cfm-house-banner),
  body.cfm-v4-site .cfm-banner-slot[data-banner-size="970 x 90"]:not(.cfm-house-banner) {
    width: 100%;
    max-width: 100%;
    height: 120px;
    min-height: 120px;
    max-height: 120px;
    margin-inline: 0;
    aspect-ratio: auto;
  }

  body.cfm-v4-site .cfm-house-banner--billboard > a {
    grid-template-columns: minmax(0, 62fr) minmax(0, 38fr);
    grid-template-rows: minmax(0, 1fr);
  }

  body.cfm-v4-site .cfm-house-banner--billboard .cfm-house-banner__media {
    grid-column: 2;
    grid-row: 1;
  }

  body.cfm-v4-site .cfm-house-banner--billboard .cfm-house-banner__content,
  body.cfm-v4-site .cfm-v4-article .cfm-house-banner--billboard .cfm-house-banner__content {
    grid-column: 1;
    grid-row: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: 20px 36px 28px;
    gap: 6px;
    align-content: center;
    align-items: stretch;
    padding: 12px;
  }

  body.cfm-v4-site .cfm-house-banner--billboard .cfm-house-banner__logo,
  body.cfm-v4-site .cfm-v4-article .cfm-house-banner--billboard .cfm-house-banner__logo {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    width: 100px;
    max-width: 100px;
    height: 20px;
    max-height: 20px;
  }

  body.cfm-v4-site .cfm-house-banner--billboard .cfm-house-banner__copy {
    grid-column: 1;
    grid-row: 2;
    display: grid;
    grid-template-rows: minmax(0, 1fr);
    align-content: center;
    align-self: stretch;
    height: 36px;
    margin: 0;
  }

  body.cfm-v4-site .cfm-house-banner--billboard .cfm-house-banner__kicker,
  body.cfm-v4-site .cfm-house-banner--billboard .cfm-house-banner__description {
    display: none;
  }

  body.cfm-v4-site .cfm-house-banner--billboard strong,
  body.cfm-v4-site .cfm-v4-article .cfm-house-banner--billboard strong {
    display: -webkit-box;
    align-self: center;
    overflow: hidden;
    font-size: 15px;
    line-height: 1.16;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  body.cfm-v4-site .cfm-house-banner--billboard .cfm-house-banner__action,
  body.cfm-v4-site .cfm-v4-article .cfm-house-banner--billboard .cfm-house-banner__action {
    grid-column: 1;
    grid-row: 3;
    align-self: center;
    justify-self: start;
    box-sizing: border-box;
    height: 28px;
    min-height: 28px;
    margin: 0;
    padding: 5px 10px;
    font-size: 10.5px;
    line-height: 1;
  }
}

@media (max-width: 480px) {
  .cfm-v4-product-campaigns--desktop,
  .cfm-v4-product-campaigns--tablet,
  .cfm-v4-product-campaigns--tower {
    display: none;
  }

  .cfm-overlay.cfm-search-overlay {
    display: block;
    padding: max(12px, env(safe-area-inset-top)) 12px max(12px, env(safe-area-inset-bottom));
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior-y: contain;
    -webkit-overflow-scrolling: touch;
  }

  .cfm-search-overlay .cfm-overlay-backdrop {
    position: fixed;
  }

  .cfm-search-overlay .cfm-search-panel {
    width: 100%;
    max-width: 620px;
    max-height: none;
    margin: 0 auto;
    padding: 20px 16px;
    overflow: visible;
    border-radius: 14px;
  }

  .cfm-search-panel > h2 {
    margin-right: 46px;
    font-size: 24px;
  }

  .cfm-search-panel .cfm-overlay-close {
    top: 14px;
    right: 14px;
  }

  .cfm-v4-mobile-feed-campaign {
    display: block;
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
    margin: 6px 0 2px;
  }

  .cfm-v4-mobile-feed-campaign > .cfm-banner-slot {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .cfm-v4-mobile-feed-campaign > .cfm-banner-slot:not(.cfm-house-banner) {
    aspect-ratio: 6 / 5;
    overflow: hidden;
    border-radius: 8px;
  }

  .cfm-v4-mobile-feed-campaign > .cfm-banner-slot:not(.cfm-house-banner) > a,
  .cfm-v4-mobile-feed-campaign > .cfm-banner-slot:not(.cfm-house-banner) img {
    display: block;
    width: 100%;
    height: 100%;
  }

  .cfm-v4-mobile-feed-campaign > .cfm-banner-slot:not(.cfm-house-banner) img {
    object-fit: cover;
  }

  .cfm-v4-header-inner {
    gap: 2px;
  }

  .cfm-v4-logo {
    width: clamp(108px, 34vw, 142px);
    max-width: 142px;
  }

  .cfm-v4-logo img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .cfm-v4-mobile-menu-button > span {
    width: 40px;
    height: 40px;
    place-items: center;
    line-height: 0;
  }

  .cfm-v4-mobile-menu-button > .is-menu-icon {
    display: grid;
  }

  .cfm-v4-mobile-menu-button > .is-close-icon,
  .cfm-v4-mobile-menu-button[aria-expanded="true"] > .is-menu-icon {
    display: none;
  }

  .cfm-v4-mobile-menu-button[aria-expanded="true"] > .is-close-icon {
    display: grid;
  }

  .cfm-v4-mobile-menu-button > span > svg {
    display: block;
    width: 22px;
    height: 22px;
    margin: 0;
  }

  body.cfm-v4-site .cfm-banner-slot.cfm-house-banner--billboard,
  body.cfm-v4-site .cfm-banner-slot--billboard:not(.cfm-house-banner),
  body.cfm-v4-site .cfm-banner-slot[data-banner-size="970 x 90"]:not(.cfm-house-banner) {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    margin-right: 0;
    margin-left: 0;
    aspect-ratio: 6 / 5;
    border-radius: 8px;
  }

  body.cfm-v4-site .cfm-v4-container > .cfm-banner-slot--billboard,
  body.cfm-v4-site .cfm-v4-article > .cfm-banner-slot--billboard {
    position: relative;
    left: auto;
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
    transform: none;
  }

  body.cfm-v4-site .cfm-house-banner--billboard > a {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: 43% minmax(0, 57%);
  }

  body.cfm-v4-site .cfm-house-banner--billboard .cfm-house-banner__media {
    grid-column: 1;
    grid-row: 1;
  }

  body.cfm-v4-site .cfm-house-banner--billboard .cfm-house-banner__content,
  body.cfm-v4-site .cfm-v4-article .cfm-house-banner--billboard .cfm-house-banner__content {
    grid-column: 1;
    grid-row: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: 20px 40px 28px;
    gap: 6px;
    align-content: center;
    align-items: stretch;
    padding: 12px 14px;
  }

  body.cfm-v4-site .cfm-house-banner--billboard .cfm-house-banner__logo,
  body.cfm-v4-site .cfm-v4-article .cfm-house-banner--billboard .cfm-house-banner__logo {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    width: 104px;
    max-width: 104px;
    height: 20px;
    max-height: 20px;
  }

  body.cfm-v4-site .cfm-house-banner--billboard .cfm-house-banner__copy {
    grid-column: 1;
    grid-row: 2;
    display: grid;
    grid-template-rows: minmax(0, 1fr);
    align-content: center;
    align-self: stretch;
    width: 100%;
    height: 40px;
    margin: 0;
  }

  body.cfm-v4-site .cfm-house-banner--billboard .cfm-house-banner__kicker,
  body.cfm-v4-site .cfm-house-banner--billboard .cfm-house-banner__description {
    display: none;
  }

  body.cfm-v4-site .cfm-house-banner--billboard strong,
  body.cfm-v4-site .cfm-v4-article .cfm-house-banner--billboard strong {
    display: -webkit-box;
    align-self: center;
    overflow: hidden;
    font-size: 16px;
    line-height: 1.16;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  body.cfm-v4-site .cfm-house-banner--billboard .cfm-house-banner__action,
  body.cfm-v4-site .cfm-v4-article .cfm-house-banner--billboard .cfm-house-banner__action {
    grid-column: 1;
    grid-row: 3;
    align-self: center;
    justify-self: start;
    box-sizing: border-box;
    height: 28px;
    min-height: 28px;
    margin: 0;
    padding: 5px 10px;
    font-size: 11px;
    line-height: 1;
  }
}

/* Compact tablet bridge: preserve the tablet UI without overflow at 481-639px. */
@media (min-width: 481px) and (max-width: 639px) {
  :root {
    --cfm-page-start: 16px;
  }

  .cfm-v4-container {
    padding-inline: 16px;
  }

  .cfm-v4-header-inner {
    grid-template-columns: 168px minmax(0, 1fr) 38px;
    column-gap: 8px;
    padding-inline: 20px;
  }

  .cfm-v4-logo,
  .cfm-v4-logo img {
    width: 160px;
    height: 38px;
  }

  .cfm-v4-section-trigger {
    gap: 6px;
    width: 168px;
    padding-inline: 10px;
    font-size: 14px;
  }

  .cfm-v4-header-tools {
    gap: 8px;
    margin-left: 0;
  }

  .cfm-v4-header-search {
    grid-template-columns: 24px minmax(0, 1fr);
    padding-left: 8px;
  }

  .cfm-v4-header-search input[type="search"] {
    min-width: 0;
    font-size: 13px;
  }

  .cfm-v4-tablet-nav {
    gap: 18px;
    padding-right: 2px;
    overscroll-behavior-inline: contain;
  }

  .cfm-v4-tablet-nav a {
    font-size: 14px;
  }

  .cfm-v4-sections-panel {
    right: auto;
    left: 0;
    width: calc(100vw - 40px);
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
    padding: 22px;
  }

  .cfm-v4-sections-tasks {
    padding-top: 22px;
    padding-left: 0;
    border-top: 1px solid var(--cfm-line);
    border-left: 0;
  }

  .cfm-v4-hero,
  .cfm-v4-category-hero {
    gap: 16px;
    margin-top: 20px;
  }

  .cfm-v4-hero-card .cfm-story-content {
    width: min(82%, 360px);
    padding: 22px;
  }

  .cfm-v4-hero-card .cfm-story-title {
    margin: 0 0 8px;
    font-size: 25px;
    line-height: 1.18;
    -webkit-line-clamp: 4;
  }

  .cfm-v4-hero-card .cfm-story-deck {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    -webkit-line-clamp: 3;
  }

  .cfm-v4-hero-card .cfm-story-open {
    min-width: 160px;
    min-height: 42px;
    margin-top: 0;
  }

  .cfm-v4-story-grid {
    gap: 16px;
  }

  .cfm-v4-story-card {
    grid-template-rows: 150px minmax(196px, auto);
  }

  .cfm-v4-story-body {
    padding: 14px 14px 16px;
  }

  .cfm-v4-story-body h2,
  .cfm-v4-story-body h3 {
    font-size: 16px;
    line-height: 1.35;
  }

  .cfm-v4-story-body p {
    font-size: 13px;
    line-height: 1.45;
  }

  .cfm-v4-dealer-list {
    gap: 12px;
  }

  .cfm-v4-dealer-list a {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 9px;
    font-size: 13px;
  }

  .cfm-v4-focus {
    margin-inline: -16px;
    padding-inline: 16px;
  }

  .cfm-v4-focus-grid {
    gap: 28px 16px;
  }

  .cfm-v4-focus-story--focus-small > .cfm-v4-story-media {
    height: 150px;
  }

  .cfm-v4-focus-story--popular .cfm-v4-focus-copy {
    padding: 16px 18px;
  }

  .cfm-v4-focus-story--popular {
    grid-template-columns: minmax(0, 42fr) minmax(0, 58fr);
  }

  .cfm-v4-focus-story--popular .cfm-v4-focus-copy h3 {
    font-size: 16px;
  }

  .cfm-v4-focus-story--popular .cfm-v4-focus-copy p {
    font-size: 12.5px;
  }

  .cfm-v4-article-header h1 {
    font-size: 32px;
  }

  .cfm-v4-single-rail,
  .cfm-v4-saved-page-rail {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .cfm-v4-saved-grid {
    gap: 16px;
  }

  .cfm-reactions {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 5px;
    width: 100%;
  }
}

@media (min-width: 481px) and (max-width: 519px) {
  .cfm-v4-popular-head {
    display: grid;
    align-items: start;
    gap: 10px;
  }

  .cfm-v4-popular-head h2 {
    white-space: nowrap;
  }

  .cfm-v4-popular-head nav {
    width: 100%;
    overflow-x: auto;
  }
}

@media (max-width: 359px) {
  .cfm-v4-logo {
    width: 112px;
  }

  .cfm-v4-mobile-actions .cfm-v4-mobile-menu-button > span > svg {
    width: 20px;
    height: 20px;
  }
}

/* Preserve the designer-supplied SVG geometry in every brand placement. */
.cfm-v4-logo img,
.cfm-v4-footer-logo img,
.cfm-v4-mobile-drawer-logo img {
  display: block;
  height: auto;
  aspect-ratio: 794 / 159;
  object-fit: contain;
}

/* Keep the header mark optically centered and sampled at stable dimensions. */
.cfm-v4-logo {
  display: flex;
  align-items: center;
  overflow: visible;
}

.cfm-v4-logo img {
  flex: 0 0 auto;
  width: auto;
  height: 36px;
  max-width: 100%;
  aspect-ratio: 794 / 159;
  object-fit: contain;
  object-position: left center;
}

@media (min-width: 900px) and (max-width: 1099px) {
  .cfm-v4-logo img {
    width: auto;
    height: 32px;
  }
}

@media (min-width: 640px) and (max-width: 899px) {
  .cfm-v4-logo img {
    width: auto;
    height: 36px;
  }
}

@media (min-width: 481px) and (max-width: 639px) {
  .cfm-v4-logo img {
    width: auto;
    height: 32px;
  }
}

@media (max-width: 480px) {
  .cfm-v4-logo img {
    width: 100%;
    height: auto;
    aspect-ratio: 794 / 159;
    object-fit: contain;
  }
}

.cfm-v4-section-trigger:hover,
.cfm-v4-section-trigger:focus,
.cfm-v4-section-trigger:focus-visible,
.cfm-v4-sections.is-open .cfm-v4-section-trigger,
.cfm-v4-header-search:focus-within,
.cfm-v4-header-search input[type="search"]:focus,
.cfm-v4-header-search input[type="search"]:focus-visible,
.cfm-v4-header-bookmark:hover,
.cfm-v4-header-bookmark:focus,
.cfm-v4-header-bookmark:focus-visible {
  outline: 0;
  box-shadow: none;
}

.cfm-v4-section-trigger:hover,
.cfm-v4-section-trigger:focus,
.cfm-v4-section-trigger:focus-visible,
.cfm-v4-sections.is-open .cfm-v4-section-trigger {
  color: var(--cfm-ink);
}

html.cfm-v4-keyboard-focus body.cfm-v4-site .cfm-v4-header-bookmark:focus,
html.cfm-v4-keyboard-focus body.cfm-v4-site .cfm-v4-header-bookmark:focus-visible,
html.cfm-v4-keyboard-focus body.cfm-v4-site .cfm-v4-mobile-bookmark:focus,
html.cfm-v4-keyboard-focus body.cfm-v4-site .cfm-v4-mobile-bookmark:focus-visible {
  outline: 0 !important;
  outline-offset: 0 !important;
  box-shadow: none !important;
}

/* In-content billboard: contained by articleBody at every responsive size. */
body.cfm-v4-site .cfm-v4-article-content > .cfm-house-banner--billboard,
body.cfm-v4-site .cfm-v4-article-content > .cfm-banner-slot--billboard {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 44px 0 40px;
  padding: 0;
  overflow: hidden;
  contain: layout paint;
  isolation: isolate;
}

body.cfm-v4-site .cfm-v4-article-content > .cfm-house-banner--billboard a,
body.cfm-v4-site .cfm-v4-article-content > .cfm-banner-slot--billboard a {
  color: inherit;
  text-decoration: none;
}

body.cfm-v4-site .cfm-v4-article-content > .cfm-house-banner--billboard img,
body.cfm-v4-site .cfm-v4-article-content > .cfm-banner-slot--billboard img {
  border-radius: 0;
}

@media (min-width: 481px) and (max-width: 899px) {
  body.cfm-v4-site .cfm-v4-article-content > .cfm-house-banner--billboard,
  body.cfm-v4-site .cfm-v4-article-content > .cfm-banner-slot--billboard {
    width: 100%;
    max-width: 100%;
    margin: 36px 0 34px;
    contain: layout paint;
  }

  .cfm-v4-page-layout {
    padding-bottom: 56px;
  }

  .cfm-v4-page-header h1 {
    font-size: 34px;
  }
}

@media (max-width: 480px) {
  body.cfm-v4-site .cfm-v4-article-content > .cfm-house-banner--billboard,
  body.cfm-v4-site .cfm-v4-article-content > .cfm-banner-slot--billboard {
    width: 100%;
    max-width: 100%;
    margin: 30px 0 28px;
    contain: layout paint;
  }

  .cfm-v4-breadcrumbs {
    margin-bottom: 18px;
    font-size: 12px;
  }

  .cfm-v4-breadcrumbs [aria-current="page"] {
    max-width: none;
  }

  .cfm-v4-page-layout {
    padding-top: var(--cfm-page-start);
    padding-bottom: 44px;
  }

  .cfm-v4-page-header {
    margin-bottom: 22px;
    padding-bottom: 18px;
  }

  .cfm-v4-page-header h1 {
    max-width: none;
    font-size: 30px;
    line-height: 1.2;
  }

  .cfm-v4-page-content {
    max-width: 100%;
  }

  .cfm-v4-article-updated {
    white-space: normal;
  }
}

@keyframes cfm-v4-drawer-item-in {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (hover: none) {
  .cfm-v4-dealer-list a:hover .cfm-v4-dealer-icon img,
  .cfm-house-banner:hover .cfm-house-banner__media img,
  .cfm-house-banner:focus-within .cfm-house-banner__media img {
    transform: none;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .cfm-v4-dealer-icon img,
  .cfm-v4-dealer-list a:hover .cfm-v4-dealer-icon img,
  .cfm-v4-dealer-list a:focus-visible .cfm-v4-dealer-icon img,
  .cfm-v4-story-card .cfm-v4-story-media img,
  .cfm-v4-story-card:hover .cfm-v4-story-media img,
  .cfm-v4-story-card:focus-within .cfm-v4-story-media img,
  .cfm-v4-focus-story .cfm-v4-story-media img,
  .cfm-v4-focus-story:hover .cfm-v4-story-media img,
  .cfm-v4-focus-story:focus-within .cfm-v4-story-media img,
  .cfm-house-banner__media img,
  .cfm-house-banner:hover .cfm-house-banner__media img,
  .cfm-house-banner:focus-within .cfm-house-banner__media img {
    transform: none;
  }
}
