/* Nippon Vehicles canonical editorial presentation. Blog routes only. */
body.single-post .nv-blog-page,
body.blog .nv-blog-archive-page,
body.archive .nv-blog-archive-page,
body.search .nv-blog-archive-page,
body.nv-blog-hub .nv-blog-archive-page {
  --nv-blog-navy: #003f52;
  --nv-blog-navy-dark: #002f3d;
  --nv-blog-teal: #00657d;
  --nv-blog-gold: #f4b000;
  --nv-blog-red: #d71920;
  --nv-blog-bg: #f3f7f8;
  --nv-blog-text: #263238;
  --nv-blog-muted: #60747b;
  --nv-blog-border: #d8e3e6;
  color: var(--nv-blog-text);
  background: var(--nv-blog-bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  letter-spacing: 0;
}

body.single-post .nv-blog-page *,
body.blog .nv-blog-archive-page *,
body.archive .nv-blog-archive-page *,
body.search .nv-blog-archive-page *,
body.nv-blog-hub .nv-blog-archive-page * {
  box-sizing: border-box;
  letter-spacing: 0;
}

body.single-post .nv-blog-master {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 32px 0 56px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body.single-post .nv-blog-post-hero,
body.single-post .nv-blog-featured,
body.single-post .nv-blog-breadcrumbs,
body.single-post .nv-blog-article-layout,
body.single-post .nv-blog-related-guides,
body.single-post .nv-blog-master > .nv-blog-final-cta,
body.single-post .nv-blog-comments {
  width: min(1360px, calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
}

body.single-post .nv-blog-breadcrumbs {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  gap: 6px 9px;
  margin-bottom: 14px;
  color: var(--nv-blog-muted);
  font-size: 13px;
  line-height: 1.45;
}

body.single-post .nv-blog-breadcrumbs a {
  color: var(--nv-blog-teal);
  font-weight: 700;
  text-decoration: none;
}

body.single-post .nv-blog-breadcrumbs [aria-current="page"] {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.single-post .nv-blog-post-hero {
  overflow: hidden;
  padding: 48px 52px;
  border: 1px solid var(--nv-blog-border);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  background: #fff;
  color: var(--nv-blog-text);
  box-shadow: 0 14px 34px rgba(0, 47, 61, 0.07);
}

body.single-post .nv-blog-post-hero__inner {
  max-width: 920px;
}

body.single-post .nv-blog-post-category {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 18px;
  padding: 5px 11px;
  border-radius: 4px;
  background: var(--nv-blog-gold);
  color: var(--nv-blog-navy-dark);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  text-decoration: none;
  text-transform: uppercase;
}

body.single-post .nv-blog-post-hero h1 {
  max-width: 980px;
  margin: 0;
  color: var(--nv-blog-navy-dark);
  font-size: 44px;
  font-weight: 800;
  line-height: 1.12;
  overflow-wrap: anywhere;
  text-transform: none;
}

body.single-post .nv-blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 18px;
  color: var(--nv-blog-muted);
  font-size: 14px;
  line-height: 1.5;
}

body.single-post .nv-blog-post-excerpt {
  max-width: 820px;
  margin: 18px 0 0;
  color: #455a61;
  font-size: 18px;
  line-height: 1.65;
}

body.single-post .nv-blog-featured {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin-top: 0;
  margin-bottom: 0;
  border: 1px solid var(--nv-blog-border);
  border-top: 0;
  border-radius: 0 0 8px 8px;
  background: #dfe8ea;
  box-shadow: 0 14px 34px rgba(0, 47, 61, 0.07);
}

body.single-post .nv-blog-featured__image {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
}

body.single-post .nv-blog-article-layout {
  width: min(1288px, calc(100% - 40px));
  display: grid;
  grid-template-columns: minmax(0, 920px) 336px;
  gap: 32px;
  align-items: start;
}

body.single-post .nv-blog-content {
  width: 100%;
  min-width: 0;
  max-width: 920px;
  margin: 0;
  padding: 42px 0 10px;
  color: var(--nv-blog-text);
  font-size: 17px;
  line-height: 1.76;
}

body.single-post .nv-blog-business-sidebar {
  min-width: 0;
  padding-top: 42px;
}

body.single-post .nv-blog-business-sidebar__sticky {
  position: sticky;
  top: 108px;
  display: grid;
  max-height: calc(100vh - 128px);
  gap: 14px;
  overflow-y: auto;
  scrollbar-width: thin;
}

body.single-post .nv-blog-business-sidebar .nv-blog-sidebar-card {
  box-shadow: 0 9px 26px rgba(0, 47, 61, 0.05);
}

body.single-post .nv-blog-sidebar-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 7px;
}

body.single-post .nv-blog-sidebar-search input[type="search"] {
  width: 100%;
  min-width: 0;
  min-height: 42px;
  padding: 9px 11px;
  border: 1px solid var(--nv-blog-border);
  border-radius: 6px;
  background: #fff;
  color: var(--nv-blog-text);
  font: inherit;
  font-size: 13px;
}

body.single-post .nv-blog-sidebar-search button {
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid var(--nv-blog-navy);
  border-radius: 6px;
  background: var(--nv-blog-navy);
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

body.single-post .nv-blog-sidebar-search input:focus-visible,
body.single-post .nv-blog-sidebar-search button:focus-visible {
  outline: 3px solid rgba(244, 176, 0, 0.4);
  outline-offset: 2px;
}

body.single-post .nv-blog-sidebar-help {
  border-color: var(--nv-blog-navy-dark);
  background: var(--nv-blog-navy-dark);
  color: #fff;
}

body.single-post .nv-blog-sidebar-help > span {
  color: var(--nv-blog-gold);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

body.single-post .nv-blog-sidebar-help h2 {
  margin: 6px 0 8px;
  color: #fff;
  font-size: 20px;
}

body.single-post .nv-blog-sidebar-help p {
  margin: 0 0 15px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.55;
}

body.single-post .nv-blog-sidebar-help__actions {
  display: grid;
  gap: 8px;
}

body.single-post .nv-blog-sidebar-help__actions .nv-blog-btn {
  width: 100%;
}

body.single-post .nv-blog-content > p:first-child {
  color: var(--nv-blog-navy-dark);
  font-size: 19px;
  line-height: 1.7;
}

body.single-post .nv-blog-intro {
  margin: 0 0 30px;
  padding: 24px 26px;
  border: 1px solid var(--nv-blog-border);
  border-left: 5px solid var(--nv-blog-gold);
  border-radius: 8px;
  background: #fff;
}

body.single-post .nv-blog-intro p {
  margin: 0;
  color: var(--nv-blog-navy-dark);
  font-size: 18px;
  line-height: 1.7;
}

body.single-post .nv-blog-content p {
  margin: 0 0 20px;
}

body.single-post .nv-blog-content a {
  color: var(--nv-blog-teal);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

body.single-post .nv-blog-content a:hover,
body.single-post .nv-blog-content a:focus-visible {
  color: var(--nv-blog-red);
}

body.single-post .nv-blog-content h2,
body.single-post .nv-blog-content .nv-blog-section-title {
  scroll-margin-top: 118px;
  margin: 44px 0 18px;
  padding: 0 0 12px;
  border: 0;
  border-bottom: 3px solid var(--nv-blog-gold);
  border-radius: 0;
  background: transparent;
  color: var(--nv-blog-navy-dark);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.25;
  overflow-wrap: anywhere;
  text-transform: none;
}

body.single-post .nv-blog-content h3,
body.single-post .nv-blog-content .nv-blog-subtitle {
  margin: 32px 0 14px;
  padding: 0 0 0 12px;
  border: 0;
  border-left: 4px solid var(--nv-blog-gold);
  color: var(--nv-blog-navy);
  font-size: 23px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: none;
}

body.single-post .nv-blog-content h4 {
  margin: 26px 0 12px;
  color: var(--nv-blog-navy);
  font-size: 19px;
  line-height: 1.4;
  text-transform: none;
}

body.single-post .nv-blog-content ul,
body.single-post .nv-blog-content ol {
  margin: 0 0 24px;
  padding-left: 24px;
}

body.single-post .nv-blog-content li {
  margin-bottom: 8px;
  padding-left: 3px;
}

body.single-post .nv-blog-content li::marker {
  color: var(--nv-blog-gold);
  font-weight: 800;
}

body.single-post .nv-blog-content > ul,
body.single-post .nv-blog-content > ol,
body.single-post .nv-blog-content > div > ul,
body.single-post .nv-blog-content > div > ol,
body.single-post .nv-blog-body > ul,
body.single-post .nv-blog-body > ol {
  padding: 20px 24px 20px 44px;
  border: 1px solid var(--nv-blog-border);
  border-left: 5px solid var(--nv-blog-gold);
  border-radius: 8px;
  background: #fff;
}

body.single-post .nv-blog-content blockquote {
  margin: 28px 0;
  padding: 20px 24px;
  border: 0;
  border-left: 5px solid var(--nv-blog-gold);
  background: #fffaf0;
  color: var(--nv-blog-navy-dark);
  font-size: 18px;
  font-style: normal;
}

body.single-post .nv-blog-content img {
  max-width: 100%;
  height: auto;
}

body.single-post .nv-blog-content figure,
body.single-post .nv-blog-content .nv-blog-image {
  max-width: 100%;
  margin: 30px 0;
}

body.single-post .nv-blog-content .nv-blog-image img,
body.single-post .nv-blog-content figure img {
  display: block;
  width: 100%;
  border-radius: 8px;
}

body.single-post .nv-blog-content figcaption {
  margin-top: 8px;
  color: var(--nv-blog-muted);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

/* Flatten the legacy master wrapper already stored in some post bodies. */
body.single-post .nv-blog-content > .nv-blog-master {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body.single-post .nv-blog-content > .nv-blog-master > .nv-blog-hero {
  margin: 0 0 30px;
  padding: 24px 26px;
  border: 1px solid var(--nv-blog-border);
  border-left: 5px solid var(--nv-blog-gold);
  border-radius: 8px;
  background: #fff;
  color: var(--nv-blog-text);
  box-shadow: none;
}

body.single-post .nv-blog-content > .nv-blog-master > .nv-blog-hero > .nv-blog-label,
body.single-post .nv-blog-content > .nv-blog-master > .nv-blog-hero > h1,
body.single-post .nv-blog-content > .nv-blog-master > .nv-blog-hero > h2 {
  display: none;
}

body.single-post .nv-blog-content > .nv-blog-master > .nv-blog-hero p {
  margin: 0 0 16px;
  color: var(--nv-blog-text);
  font-size: 17px;
  line-height: 1.65;
}

body.single-post .nv-blog-content > .nv-blog-master > .nv-blog-hero p:last-child {
  margin-bottom: 0;
}

body.single-post .nv-blog-content > .nv-blog-master > .nv-blog-body {
  padding: 0;
}

body.single-post .nv-blog-summary,
body.single-post .nv-blog-toc,
body.single-post .nv-blog-checklist-panel,
body.single-post .nv-blog-note,
body.single-post .nv-blog-warning,
body.single-post .nv-blog-list {
  margin: 28px 0;
  padding: 24px;
  border: 1px solid var(--nv-blog-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
}

body.single-post .nv-blog-checklist-panel {
  border-top: 4px solid var(--nv-blog-gold);
  background: #f7fbfc;
}

body.single-post .nv-blog-checklist-panel > h2 {
  margin: 0 0 18px;
  padding: 0;
  border: 0;
  font-size: 24px;
}

body.single-post .nv-blog-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  counter-reset: nv-blog-checklist;
  list-style: none;
}

body.single-post .nv-blog-checklist li {
  position: relative;
  min-height: 62px;
  margin: 0;
  padding: 17px 16px 15px 50px;
  border: 1px solid var(--nv-blog-border);
  border-radius: 6px;
  background: #fff;
  color: var(--nv-blog-navy-dark);
  font-weight: 750;
  counter-increment: nv-blog-checklist;
}

body.single-post .nv-blog-checklist li::before {
  position: absolute;
  top: 15px;
  left: 15px;
  display: inline-flex;
  width: 25px;
  height: 25px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--nv-blog-gold);
  color: var(--nv-blog-navy-dark);
  content: counter(nv-blog-checklist);
  font-size: 12px;
  font-weight: 900;
}

body.single-post .nv-blog-checklist li::marker {
  content: "";
}

body.single-post .nv-blog-summary {
  border-top: 4px solid var(--nv-blog-teal);
  background: #f7fbfc;
}

body.single-post .nv-blog-toc {
  border-top: 4px solid var(--nv-blog-gold);
  background: #fffaf0;
}

body.single-post .nv-blog-note {
  border-left: 5px solid var(--nv-blog-teal);
  background: #f3f7f8;
}

body.single-post .nv-blog-warning {
  border-left: 5px solid var(--nv-blog-gold);
  background: #fffaf0;
}

body.single-post .nv-blog-summary h2,
body.single-post .nv-blog-toc h2 {
  margin: 0 0 16px;
  padding: 0;
  border: 0;
  color: var(--nv-blog-navy-dark);
  font-size: 23px;
}

body.single-post .nv-blog-toc ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 24px;
  margin: 0;
  padding-left: 20px;
}

body.single-post .nv-blog-toc li {
  margin: 0;
}

body.single-post .nv-blog-toc a {
  color: var(--nv-blog-navy);
  font-weight: 700;
}

body.single-post .nv-blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

body.single-post .nv-blog-grid > div {
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid var(--nv-blog-border);
  border-radius: 6px;
  background: #fff;
  color: var(--nv-blog-text);
}

body.single-post .nv-blog-grid strong {
  color: var(--nv-blog-red);
}

body.single-post .nv-blog-table-wrap {
  width: 100%;
  max-width: 100%;
  margin: 28px 0;
  overflow-x: auto;
  border: 1px solid var(--nv-blog-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 9px 26px rgba(0, 47, 61, 0.06);
  -webkit-overflow-scrolling: touch;
}

body.single-post .nv-blog-content table,
body.single-post .nv-blog-table {
  width: 100%;
  min-width: 620px;
  margin: 0;
  border: 0;
  border-collapse: collapse;
  background: #fff;
  font-size: 15px;
}

body.single-post .nv-blog-content th,
body.single-post .nv-blog-content td {
  padding: 13px 15px;
  border: 0;
  border-right: 1px solid var(--nv-blog-border);
  border-bottom: 1px solid var(--nv-blog-border);
  text-align: left;
  vertical-align: top;
}

body.single-post .nv-blog-content th:last-child,
body.single-post .nv-blog-content td:last-child {
  border-right: 0;
}

body.single-post .nv-blog-content tr:last-child td {
  border-bottom: 0;
}

body.single-post .nv-blog-content th {
  background: var(--nv-blog-navy);
  color: #fff;
  font-weight: 800;
}

body.single-post .nv-blog-content tbody tr:nth-child(even) {
  background: #f7fafb;
}

body.single-post .nv-blog-content tbody td:first-child {
  background: #f2f7f8;
  color: var(--nv-blog-navy-dark);
  font-weight: 750;
}

body.single-post .nv-blog-related {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0 34px;
}

body.single-post .nv-blog-related a {
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--nv-blog-border);
  border-radius: 8px;
  background: #fff;
  color: var(--nv-blog-navy-dark);
  box-shadow: 0 8px 24px rgba(0, 47, 61, 0.06);
  text-decoration: none;
}

body.single-post .nv-blog-related a:hover,
body.single-post .nv-blog-related a:focus-visible {
  border-color: var(--nv-blog-gold);
  color: var(--nv-blog-red);
  transform: translateY(-2px);
}

body.single-post .nv-blog-related span {
  display: block;
  margin-top: 8px;
  color: var(--nv-blog-muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}

body.single-post .nv-blog-faq {
  margin: 24px 0 36px;
}

body.single-post .nv-blog-faq details {
  overflow: hidden;
  margin: 0 0 10px;
  border: 1px solid var(--nv-blog-border);
  border-radius: 8px;
  background: #fff;
}

body.single-post .nv-blog-faq summary {
  position: relative;
  padding: 17px 48px 17px 18px;
  color: var(--nv-blog-navy-dark);
  font-weight: 800;
  line-height: 1.45;
  cursor: pointer;
  list-style: none;
}

body.single-post .nv-blog-faq summary::-webkit-details-marker {
  display: none;
}

body.single-post .nv-blog-faq summary::after {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--nv-blog-bg);
  color: var(--nv-blog-navy);
  content: "+";
  font-size: 19px;
  font-weight: 800;
  line-height: 22px;
  text-align: center;
  transform: translateY(-50%);
}

body.single-post .nv-blog-faq details[open] summary::after {
  content: "-";
}

body.single-post .nv-blog-faq details p {
  margin: 0;
  padding: 0 18px 18px;
}

body.single-post .nv-blog-faq__answer {
  padding: 0 18px 18px;
  color: var(--nv-blog-text);
}

body.single-post .nv-blog-faq__answer p:last-child {
  margin-bottom: 0;
  padding: 0;
}

body.single-post .nv-blog-hr {
  height: 1px;
  margin: 36px 0;
  border: 0;
  background: var(--nv-blog-border);
}

body.single-post .nv-blog-btn,
body.single-post .nv-blog-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 17px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
}

body.single-post .nv-blog-btn-red {
  background: var(--nv-blog-red);
  color: #fff;
}

body.single-post .nv-blog-btn-gold {
  background: var(--nv-blog-gold);
  color: var(--nv-blog-navy-dark);
}

body.single-post .nv-blog-btn-white {
  border-color: #fff;
  background: #fff;
  color: var(--nv-blog-navy-dark);
}

body.single-post .nv-blog-cta {
  margin: 38px 0;
  padding: 30px;
  border: 1px solid rgba(244, 176, 0, 0.5);
  border-radius: 8px;
  background: var(--nv-blog-navy-dark);
  color: #fff;
  text-align: left;
  box-shadow: none;
}

body.single-post .nv-blog-cta h2,
body.single-post .nv-blog-content .nv-blog-cta h2 {
  margin: 0 0 10px;
  padding: 0;
  border: 0;
  color: #fff;
  font-size: 27px;
}

body.single-post .nv-blog-cta p,
body.single-post .nv-blog-content .nv-blog-cta p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.9);
}

body.single-post .nv-blog-cta__actions,
body.single-post .nv-blog-cta p:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

body.single-post .nv-blog-master > .nv-blog-final-cta {
  max-width: 920px;
  margin-top: 34px;
  margin-bottom: 0;
}

body.single-post .nv-blog-duplicate-cta,
body.single-post .nv-page-side-cta {
  display: none !important;
}

body.single-post .nvgf-cta {
  display: none !important;
}

body.single-post .nv-blog-content .nv-blog-cta:has(~ .nv-blog-cta),
body.single-post:has(.nv-blog-content .nv-blog-cta) .nv-blog-content .nv-page-cta-wrap,
body.single-post:has(.nv-blog-content .nv-blog-cta) .nvgf-cta {
  display: none !important;
}

body.single-post .nv-blog-related-guides {
  max-width: 880px;
  padding: 34px 0 4px;
}

body.single-post .nv-blog-section-heading span {
  display: block;
  margin-bottom: 5px;
  color: var(--nv-blog-red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

body.single-post .nv-blog-section-heading h2 {
  margin: 0 0 20px;
  color: var(--nv-blog-navy-dark);
  font-size: 29px;
  line-height: 1.25;
}

body.single-post .nv-blog-comments {
  max-width: 880px;
  padding-top: 34px;
}

body.single-post .nv-blog-page-links {
  display: flex;
  gap: 8px;
  margin: 30px 0;
}

/* Archive and shared cards. */
body.blog .nv-blog-archive-page,
body.archive .nv-blog-archive-page,
body.search .nv-blog-archive-page,
body.nv-blog-hub .nv-blog-archive-page {
  padding-bottom: 60px;
}

.nv-blog-archive-container {
  width: min(1180px, calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
}

.nv-blog-archive-hero {
  padding: 56px 0;
  background: #002f3d;
  color: #fff;
}

.nv-blog-archive-kicker {
  display: block;
  margin-bottom: 10px;
  color: #f4b000;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.nv-blog-archive-hero h1 {
  max-width: 850px;
  margin: 0;
  color: #fff;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
  text-transform: none;
}

.nv-blog-archive-description {
  max-width: 760px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.65;
}

.nv-blog-archive-description p {
  margin: 0;
}

.nv-blog-guide-search {
  display: grid;
  max-width: 720px;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  margin-top: 24px;
}

.nv-blog-guide-search input[type="search"] {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 6px;
  background: #fff;
  color: #263238;
  font: inherit;
}

.nv-blog-guide-search button {
  min-height: 48px;
  padding: 10px 20px;
  border: 1px solid #f4b000;
  border-radius: 6px;
  background: #f4b000;
  color: #002f3d;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.nv-blog-guide-search input:focus-visible,
.nv-blog-guide-search button:focus-visible,
.nv-blog-category-chip:focus-visible {
  outline: 3px solid rgba(244, 176, 0, 0.45);
  outline-offset: 2px;
}

.nv-blog-category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.nv-blog-category-chip {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 7px 13px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.25;
  text-decoration: none;
  white-space: nowrap;
}

.nv-blog-category-chip:hover,
.nv-blog-category-chip:focus-visible,
.nv-blog-category-chip.is-active {
  border-color: #f4b000;
  background: #f4b000;
  color: #002f3d;
}

.nv-blog-archive-content {
  padding-top: 38px;
}

.nv-blog-hub-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 32px;
  padding-top: 38px;
  padding-bottom: 58px;
}

.nv-blog-hub-layout.is-archive {
  display: block;
}

.nv-blog-hub-main {
  min-width: 0;
}

.nv-blog-sidebar {
  min-width: 0;
}

.nv-blog-sidebar__sticky {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 16px;
}

.nv-blog-sidebar-card {
  padding: 20px;
  border: 1px solid #d8e3e6;
  border-radius: 8px;
  background: #fff;
}

.nv-blog-sidebar-card h2 {
  margin: 0 0 14px;
  color: #002f3d;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: none;
}

.nv-blog-sidebar-categories,
.nv-blog-sidebar-posts {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nv-blog-sidebar-categories li,
.nv-blog-sidebar-posts li {
  margin: 0;
  padding: 0;
  border-top: 1px solid #e6edef;
}

.nv-blog-sidebar-categories li:first-child,
.nv-blog-sidebar-posts li:first-child {
  border-top: 0;
}

.nv-blog-sidebar-categories a {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #263238;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

.nv-blog-sidebar-categories a:hover,
.nv-blog-sidebar-categories a:focus-visible,
.nv-blog-sidebar-posts a:hover span,
.nv-blog-sidebar-posts a:focus-visible span {
  color: #d71920;
}

.nv-blog-sidebar-posts a {
  display: block;
  padding: 11px 0;
  color: #263238;
  text-decoration: none;
}

.nv-blog-sidebar-posts span,
.nv-blog-sidebar-posts time {
  display: block;
}

.nv-blog-sidebar-posts span {
  font-size: 13px;
  font-weight: 750;
  line-height: 1.4;
}

.nv-blog-sidebar-posts time {
  margin-top: 4px;
  color: #6d7e84;
  font-size: 11px;
}

.nv-blog-featured-guide,
.nv-blog-latest-guides,
.nv-blog-hub-section {
  margin: 0 0 44px;
}

.nv-blog-archive-page .nv-blog-section-heading span {
  display: block;
  margin-bottom: 5px;
  color: #d71920;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.nv-blog-archive-page .nv-blog-section-heading h2 {
  margin: 0 0 18px;
  color: #002f3d;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: none;
}

.nv-blog-featured-card {
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  border: 1px solid #d8e3e6;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 47, 61, 0.08);
}

.nv-blog-featured-card__media {
  display: flex;
  min-height: 320px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #003f52;
  color: #fff;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.nv-blog-featured-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.nv-blog-featured-card__body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
}

.nv-blog-featured-card__label,
.nv-blog-featured-card__label a {
  color: #00657d;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.nv-blog-featured-card h2 {
  margin: 10px 0 12px;
  color: #002f3d;
  font-size: 27px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: none;
}

.nv-blog-featured-card h2 a {
  color: inherit;
  text-decoration: none;
}

.nv-blog-featured-card p {
  margin: 0 0 20px;
  color: #52676e;
  font-size: 14px;
  line-height: 1.7;
}

.nv-blog-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.nv-blog-card-grid--sparse {
  grid-template-columns: repeat(2, minmax(0, 460px));
  justify-content: center;
}

.nv-blog-archive-discovery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  margin-top: 54px;
  padding-top: 44px;
  border-top: 1px solid #d8e3e6;
}

.nv-blog-archive-discovery .nv-blog-hub-section {
  min-width: 0;
  margin-bottom: 0;
}

.nv-blog-card-grid--discovery {
  grid-template-columns: 1fr;
}

.nv-blog-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  margin: 0;
  border: 1px solid #d8e3e6;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 47, 61, 0.07);
}

.nv-blog-card__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #e7eef0;
}

.nv-blog-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.nv-blog-card:hover .nv-blog-card__image {
  transform: scale(1.025);
}

.nv-blog-card__placeholder {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #003f52;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
}

.nv-blog-card__body {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.nv-blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 12px;
  margin-bottom: 11px;
  color: #60747b;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.nv-blog-card__meta span {
  color: #00657d;
}

.nv-blog-card__title {
  margin: 0 0 10px;
  color: #002f3d;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.32;
  overflow-wrap: anywhere;
  text-transform: none;
}

.nv-blog-card__title a {
  color: inherit;
  text-decoration: none;
}

.nv-blog-card__title a:hover,
.nv-blog-card__title a:focus-visible {
  color: #d71920;
}

.nv-blog-card__body p {
  margin: 0 0 18px;
  color: #52676e;
  font-size: 14px;
  line-height: 1.65;
}

.nv-blog-card__link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  margin-top: auto;
  padding: 9px 15px;
  border: 1px solid #003f52;
  border-radius: 6px;
  color: #003f52;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
  text-decoration: none;
}

.nv-blog-card__link:hover,
.nv-blog-card__link:focus-visible {
  border-color: #d71920;
  background: #d71920;
  color: #fff;
}

.nv-blog-archive-page .nv-blog-btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 10px 17px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  text-decoration: none;
}

.nv-blog-archive-page .nv-blog-btn-red {
  border-color: #d71920;
  background: #d71920;
  color: #fff;
}

.nv-blog-archive-page .nv-blog-btn-gold {
  border-color: #f4b000;
  background: #f4b000;
  color: #002f3d;
}

.nv-blog-archive-page .nv-blog-btn-white {
  border-color: rgba(255, 255, 255, 0.55);
  background: transparent;
  color: #fff;
}

.nv-blog-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 38px 0 44px;
}

.nv-blog-archive-page .navigation.pagination {
  margin: 38px 0 0;
  text-align: center;
}

.nv-blog-archive-page .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.nv-blog-archive-page .page-numbers {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid #d8e3e6;
  border-radius: 6px;
  background: #fff;
  color: #003f52;
  font-weight: 800;
  text-decoration: none;
}

.nv-blog-archive-page .page-numbers.current,
.nv-blog-archive-page a.page-numbers:hover,
.nv-blog-archive-page a.page-numbers:focus-visible {
  border-color: #003f52;
  background: #003f52;
  color: #fff;
}

.nv-blog-empty {
  padding: 44px 24px;
  border: 1px solid #d8e3e6;
  border-radius: 8px;
  background: #fff;
  text-align: center;
}

.nv-blog-empty h2 {
  margin: 0 0 8px;
  color: #002f3d;
  font-size: 27px;
}

.nv-blog-empty p {
  margin: 0 0 18px;
  color: #60747b;
}

/* Homepage discovery band injected by the child theme for either homepage renderer. */
.nv-home-guides {
  width: 100%;
  padding: 52px 0;
  background: #f3f7f8;
  color: #263238;
}

.nv-home-guides *,
.nv-home-guides *::before,
.nv-home-guides *::after {
  box-sizing: border-box;
}

.nv-home-guides__inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.nv-home-guides__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.nv-home-guides__heading span {
  display: block;
  margin-bottom: 5px;
  color: #d71920;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.nv-home-guides__heading h2 {
  margin: 0;
  color: #002f3d;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: none;
}

.nv-home-guides__heading p {
  max-width: 740px;
  margin: 8px 0 0;
  color: #52676e;
  font-size: 15px;
  line-height: 1.6;
}

.nv-home-guides__all {
  display: inline-flex;
  min-height: 44px;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border: 1px solid #003f52;
  border-radius: 6px;
  color: #003f52;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.nv-home-guides__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.nv-home-guide-card {
  display: grid;
  min-width: 0;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 4px 12px;
  padding: 20px;
  border: 1px solid #d8e3e6;
  border-radius: 8px;
  background: #fff;
  color: #263238;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(0, 47, 61, 0.05);
}

.nv-home-guide-card__number {
  grid-row: 1 / span 3;
  color: #f4b000;
  font-size: 13px;
  font-weight: 900;
}

.nv-home-guide-card strong,
.nv-home-guide-card small,
.nv-home-guide-card__link {
  min-width: 0;
}

.nv-home-guide-card strong {
  color: #002f3d;
  font-size: 17px;
  line-height: 1.3;
}

.nv-home-guide-card small {
  color: #60747b;
  font-size: 13px;
  line-height: 1.5;
}

.nv-home-guide-card__link {
  margin-top: 6px;
  color: #d71920;
  font-size: 12px;
  font-weight: 800;
}

.nv-home-guide-card:hover,
.nv-home-guide-card:focus-visible,
.nv-home-guides__all:hover,
.nv-home-guides__all:focus-visible {
  border-color: #d71920;
  color: #d71920;
}

@media (max-width: 1327px) {
  body.single-post .nv-blog-article-layout {
    display: block;
  }

  body.single-post .nv-blog-content,
  body.single-post .nv-blog-business-sidebar {
    max-width: 920px;
    margin-right: auto;
    margin-left: auto;
  }

  body.single-post .nv-blog-business-sidebar {
    padding-top: 34px;
  }

  body.single-post .nv-blog-business-sidebar__sticky {
    position: static;
    max-height: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
  }

  body.single-post .nv-blog-sidebar-help {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1024px) {
  body.single-post .nv-blog-post-hero {
    padding: 40px;
  }

  body.single-post .nv-blog-post-hero h1,
  .nv-blog-archive-hero h1 {
    font-size: 38px;
  }

  body.single-post .nv-blog-content {
    max-width: 920px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 10px;
    padding-left: 10px;
  }

  .nv-blog-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nv-blog-hub-layout {
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 24px;
  }

  .nv-blog-hub-layout.is-archive {
    display: block;
  }

  .nv-blog-archive-discovery {
    grid-template-columns: 1fr;
  }

  .nv-blog-featured-card {
    grid-template-columns: 1fr;
  }

  .nv-blog-featured-card__media,
  .nv-blog-featured-card__media img {
    min-height: 260px;
    max-height: 340px;
  }

  .nv-home-guides__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  body.single-post .nv-blog-master {
    padding-top: 18px;
    padding-bottom: 40px;
  }

  body.single-post .nv-blog-post-hero,
  body.single-post .nv-blog-featured,
  body.single-post .nv-blog-breadcrumbs,
  body.single-post .nv-blog-article-layout,
  body.single-post .nv-blog-related-guides,
  body.single-post .nv-blog-master > .nv-blog-final-cta,
  body.single-post .nv-blog-comments,
  .nv-blog-archive-container {
    width: min(100% - 24px, 1180px);
  }

  body.single-post .nv-blog-post-hero {
    padding: 30px 24px;
  }

  body.single-post .nv-blog-post-hero h1,
  .nv-blog-archive-hero h1 {
    font-size: 32px;
    line-height: 1.18;
  }

  body.single-post .nv-blog-featured__image {
    max-height: none;
  }

  body.single-post .nv-blog-content {
    width: 100%;
    padding: 30px 6px 6px;
    font-size: 16px;
    line-height: 1.72;
  }

  body.single-post .nv-blog-business-sidebar {
    width: 100%;
    padding-top: 28px;
  }

  body.single-post .nv-blog-business-sidebar__sticky {
    grid-template-columns: 1fr;
  }

  body.single-post .nv-blog-sidebar-help {
    grid-column: auto;
  }

  body.single-post .nv-blog-content > p:first-child {
    font-size: 17px;
  }

  body.single-post .nv-blog-content h2,
  body.single-post .nv-blog-content .nv-blog-section-title {
    margin-top: 38px;
    font-size: 25px;
  }

  body.single-post .nv-blog-content h3,
  body.single-post .nv-blog-content .nv-blog-subtitle {
    font-size: 21px;
  }

  body.single-post .nv-blog-toc ul,
  body.single-post .nv-blog-grid {
    grid-template-columns: 1fr;
  }

  body.single-post .nv-blog-related {
    grid-template-columns: 1fr;
  }

  body.single-post .nv-blog-summary,
  body.single-post .nv-blog-toc,
  body.single-post .nv-blog-checklist-panel,
  body.single-post .nv-blog-note,
  body.single-post .nv-blog-warning,
  body.single-post .nv-blog-list,
  body.single-post .nv-blog-content > .nv-blog-master > .nv-blog-hero {
    padding: 20px;
  }

  body.single-post .nv-blog-checklist {
    grid-template-columns: 1fr;
  }

  body.single-post .nv-blog-cta {
    padding: 24px 20px;
  }

  body.single-post .nv-blog-cta h2,
  body.single-post .nv-blog-content .nv-blog-cta h2 {
    font-size: 24px;
  }

  .nv-blog-archive-hero {
    padding: 42px 0;
  }

  .nv-blog-category-chips {
    width: 100%;
    flex-wrap: nowrap;
    padding-bottom: 6px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
  }

  .nv-blog-hub-layout {
    display: block;
    padding-top: 28px;
    padding-bottom: 42px;
  }

  .nv-blog-archive-discovery {
    gap: 8px;
    margin-top: 40px;
    padding-top: 34px;
  }

  .nv-blog-sidebar {
    display: none;
  }

  .nv-blog-featured-card__body {
    padding: 24px;
  }

  .nv-blog-featured-card h2,
  .nv-blog-archive-page .nv-blog-section-heading h2 {
    font-size: 25px;
  }

  .nv-home-guides {
    padding: 42px 0;
  }

  .nv-home-guides__inner {
    width: min(100% - 24px, 1180px);
  }

  .nv-home-guides__heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .nv-home-guides__heading h2 {
    font-size: 28px;
  }
}

@media (max-width: 560px) {
  body.single-post .nv-blog-post-hero h1,
  .nv-blog-archive-hero h1 {
    font-size: 28px;
  }

  body.single-post .nv-blog-post-meta span[aria-hidden="true"] {
    display: none;
  }

  body.single-post .nv-blog-post-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  body.single-post .nv-blog-post-excerpt {
    font-size: 16px;
  }

  body.single-post .nv-blog-featured__image {
    min-height: 0;
    max-height: none;
  }

  body.single-post .nv-blog-btn,
  body.single-post .nv-blog-cta p:last-child .nv-blog-btn,
  body.single-post .nv-blog-cta__actions .nv-blog-btn {
    width: 100%;
  }

  body.single-post .nv-blog-cta__actions,
  body.single-post .nv-blog-cta p:last-child {
    align-items: stretch;
    flex-direction: column;
  }

  .nv-blog-card-grid {
    grid-template-columns: 1fr;
  }

  .nv-blog-card__body {
    padding: 19px;
  }

  .nv-blog-card__title {
    font-size: 20px;
  }

  .nv-blog-guide-search {
    grid-template-columns: 1fr;
  }

  .nv-blog-guide-search button {
    width: 100%;
  }

  .nv-blog-featured-card__media,
  .nv-blog-featured-card__media img {
    min-height: 190px;
    max-height: 245px;
  }

  .nv-blog-featured-card__body {
    padding: 20px;
  }

  .nv-blog-archive-page .nv-blog-btn {
    width: 100%;
  }

  .nv-home-guides__grid {
    grid-template-columns: 1fr;
  }

  .nv-home-guides__all {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nv-blog-card__image,
  body.single-post .nv-blog-related a {
    transition: none;
  }
}
