@layer reset, tokens, base, layout, components, utilities;

@import './styles/reset.css';
@import './styles/tokens.css';
@import './styles/base.css';
@import './styles/layout.css';
@import './styles/components.css';
@import './styles/utilities.css';

@layer components {
:root {
  color: #141414;
  font-family: var(--site-font-body, Arial, Helvetica, sans-serif);
  background: #fff;
  --site-type-hero-title: clamp(34px, 3.2vw, 50px);
  --site-type-section-title: clamp(24px, 1.45vw, 30px);
  --site-type-section-title-compact: clamp(21px, 1.25vw, 26px);
  --site-type-body: clamp(13px, 0.78vw, 16px);
  --site-type-body-small: clamp(12px, 0.72vw, 14px);
  --site-type-card-title: clamp(15px, 0.92vw, 19px);
  --site-type-tab: clamp(12px, 0.78vw, 15px);
  --site-type-caption: clamp(10px, 0.64vw, 12px);
}

@font-face {
  font-family: "Font Awesome 7 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("/uploads/fa-solid-900.woff2") format("woff2");
}

@font-face {
  font-family: "Font Awesome 7 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("/uploads/fa-brands-400.woff2") format("woff2");
}

.fa-solid,
.fa-brands {
  display: inline-block;
  font-style: normal;
  line-height: 1;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fa-solid {
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
}

.fa-brands {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa-download::before {
  content: "\f019";
}

.fa-calendar-check::before {
  content: "\f274";
}

.fa-headset::before {
  content: "\f590";
}

.fa-instagram::before {
  content: "\f16d";
}

.fa-whatsapp::before {
  content: "\f232";
}

.fa-facebook::before {
  content: "\f09a";
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--site-font-heading, var(--site-font-body, Arial, Helvetica, sans-serif));
}

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

.site-shell {
  position: relative;
  min-height: 100vh;
  background: #fff;
}

.site-header {
  z-index: 100;
  min-height: 64px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  padding: 0 clamp(18px, 5vw, 72px);
  color: #0c1117;
  background: rgb(255 255 255 / 96%);
  border-bottom: 1px solid rgb(0 0 0 / 6%);
  box-shadow: 0 1px 0 rgb(255 255 255 / 70%);
  backdrop-filter: blur(16px);
}

.site-header--overlay {
  position: absolute;
  inset: 0 0 auto;
}

.site-header--sticky {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
}

.site-header--transparent {
  color: #fff;
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transition:
    color 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    backdrop-filter 220ms ease;
}

.site-header--transparent:hover,
.site-header--transparent.is-scrolled,
.site-header--transparent.is-menu-open {
  color: #0c1117;
  background: rgb(255 255 255 / 96%);
  border-bottom-color: rgb(0 0 0 / 6%);
  box-shadow: 0 1px 0 rgb(255 255 255 / 70%);
  backdrop-filter: blur(16px);
}

.site-header.is-menu-open {
  z-index: 1000;
}

.site-header__brand,
.site-footer__brand {
  display: inline-flex;
  align-items: center;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.site-header__brand img,
.site-footer__brand img {
  width: auto;
  max-width: 126px;
  max-height: 22px;
  object-fit: contain;
}

.site-header__brand {
  position: relative;
}

.site-header__logo {
  transition: opacity 180ms ease;
}

.site-header__logo--light {
  position: absolute;
  inset: 50% auto auto 0;
  opacity: 0;
  transform: translateY(-50%);
}

.site-header--transparent:not(:hover):not(.is-scrolled):not(.is-menu-open) .site-header__logo--dark {
  opacity: 0;
}

.site-header--transparent:not(:hover):not(.is-scrolled):not(.is-menu-open) .site-header__logo--light {
  opacity: 1;
}

.site-footer__brand img {
  max-height: 48px;
}

.site-header__nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(18px, 2.5vw, 34px);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.site-header__nav a,
.site-header__mobile-links a {
  color: inherit;
}

.site-header__nav-item {
  display: flex;
  align-items: stretch;
}

.site-header__nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 64px;
}

.site-header__nav-link::after {
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 2px;
  content: "";
  background: #93b904;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 220ms ease;
}

.site-header__nav-link:hover::after,
.site-header__nav-link:focus-visible::after,
.site-header__nav-item:hover .site-header__nav-link::after,
.site-header__nav-item:focus-within .site-header__nav-link::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.site-header__mega {
  position: fixed;
  z-index: -1;
  top: 64px;
  right: 0;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 10px clamp(40px, 8vw, 128px) 14px;
  color: #0c1117;
  background: #fff;
  border-top: 1px solid rgb(0 0 0 / 3%);
  border-bottom: 0;
  box-shadow: 0 14px 28px rgb(0 0 0 / 4%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
}

.site-header__nav-item:hover .site-header__mega,
.site-header__nav-item:focus-within .site-header__mega {
  z-index: 90;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.site-header__mega-card {
  width: min(21vw, 260px);
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #0c1117;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}

.site-header__mega-media {
  aspect-ratio: 2.34 / 1;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: #f3f5f7;
}

.site-header__mega-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 260ms ease;
}

.site-header__mega-card:hover .site-header__mega-media img,
.site-header__mega-card:focus-visible .site-header__mega-media img {
  transform: scale(1.04);
}

.site-header__mega-card strong {
  font-weight: 500;
  line-height: 1.05;
}

.site-header__actions {
  display: flex;
  justify-content: flex-end;
}

.site-header__action {
  --site-button-bg: transparent;
  --site-button-color: currentColor;
  --site-button-border: currentColor;
  --site-button-hover-bg: #93b904;
  --site-button-hover-color: #fff;
  --site-button-hover-border: #93b904;
  position: relative;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--site-button-border);
  border-radius: 2px;
  padding: 0 12px;
  color: var(--site-button-color);
  background-color: var(--site-button-bg);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.1;
  transition:
    color 180ms ease,
    border-color 180ms ease;
}

.site-header__action::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  background: var(--site-button-hover-bg);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header__action > * {
  position: relative;
  z-index: 1;
}

.site-header__action:hover,
.site-header__action:focus-visible {
  border-color: var(--site-button-hover-border);
  color: var(--site-button-hover-color);
}

.site-header__action:hover::before,
.site-header__action:focus-visible::before {
  transform: scaleX(1);
}

.site-header__menu-button {
  width: 38px;
  height: 38px;
  display: none;
  place-items: center;
  gap: 4px;
  border: 0;
  border-radius: 0;
  padding: 9px;
  color: inherit;
  background: transparent;
}

.site-header__menu-button span {
  width: 20px;
  height: 1px;
  display: block;
  background: currentColor;
}

.site-header__mobile-menu {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: none;
  color: #0c1117;
  background: #fff !important;
  overflow-y: auto;
}

body.site-mobile-menu-open,
body:has(.site-header__mobile-menu.is-open) {
  overflow: hidden;
}

.site-header__mobile-menu.is-open {
  display: block;
}

.site-header__mobile-brand {
  position: absolute;
  top: 21px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  color: #0c1117;
}

.site-header__mobile-brand img {
  width: auto;
  max-width: 108px;
  max-height: 18px;
}

.site-header__mobile-close {
  position: absolute;
  top: 14px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  color: inherit;
  background: transparent;
  font-size: 30px;
  line-height: 1;
}

.site-header__mobile-links {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  padding: 96px 28px 44px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}

.site-header__mobile-links a {
  display: flex;
  align-items: center;
  min-height: 48px;
  border-bottom: 1px solid rgb(0 0 0 / 8%);
}

.site-header__mobile-group {
  display: grid;
}

.site-header__mobile-subnav {
  display: grid;
  padding: 2px 0 10px 16px;
  border-bottom: 1px solid rgb(0 0 0 / 8%);
}

.site-header__mobile-subnav a {
  min-height: 34px;
  border-bottom: 0;
  color: #5d6672;
  font-size: 14px;
  font-weight: 400;
}

.site-header__mobile-group--has-menu > a {
  border-bottom: 0;
}

.site-header__mobile-cta {
  width: 100%;
  min-height: 42px !important;
  justify-content: center;
  margin-top: 24px;
  border: 1px solid #0c1117 !important;
  border-radius: 2px;
  padding: 0 14px;
  font-size: 14px;
}

.site-footer {
  border-top: 1px solid #d9d9d9;
  color: #1f1f1f;
  background: #fff;
}

.site-footer__inner {
  width: min(1824px, calc(100% - 224px));
  margin: 0 auto;
  padding: 58px 0 42px;
}

.site-footer__columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(56px, 8vw, 168px);
  padding-bottom: 50px;
}

.site-footer h2 {
  margin: 0;
  color: #222;
  font-size: clamp(14px, 0.95vw, 18px);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.site-footer__columns a {
  display: block;
  margin-top: 10px;
  color: #555;
  font-size: clamp(14px, 0.95vw, 18px);
  line-height: 1.18;
}

.site-footer__middle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid #e1e1e1;
}

.site-footer__policy a {
  color: #333;
  font-size: clamp(14px, 0.95vw, 18px);
}

.site-footer__social {
  display: flex;
  align-items: center;
  gap: clamp(28px, 3.2vw, 64px);
}

.site-footer__social a {
  color: #111;
  font-size: clamp(15px, 0.95vw, 18px);
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  padding-top: 20px;
  border-top: 1px solid #e1e1e1;
  color: #7e8790;
  font-size: clamp(13px, 0.86vw, 16px);
  line-height: 1.25;
}

.site-footer__legal a {
  color: #222;
}

.site-shell--has-sticky-footer {
  padding-bottom: 72px;
}

.site-shell--header-reserved .site-page {
  padding-top: 64px;
}

.site-sticky-footer {
  position: fixed;
  z-index: 25;
  right: 0;
  bottom: 0;
  left: 0;
  height: 72px;
  display: block;
  color: #fff;
  background: #93b904;
  box-shadow: 0 -8px 28px rgb(0 0 0 / 14%);
}

.site-sticky-footer a,
.site-sticky-footer__primary {
  color: inherit;
}

.site-sticky-footer__primary {
  display: none;
}

.site-sticky-footer__links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  height: 100%;
  background: #93b904;
}

.site-sticky-footer__links a {
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  justify-items: center;
  justify-content: center;
  gap: 6px;
  border-left: 0;
  color: #fff;
  font-size: clamp(13px, 0.82vw, 16px);
  font-weight: 400;
}

.site-sticky-footer__link--mobile {
  display: grid !important;
}

.site-sticky-footer__icon {
  color: currentColor;
  font-size: clamp(16px, 1vw, 20px);
}

.site-popup {
  position: fixed;
  z-index: 30;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.site-popup__scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  background: rgb(0 0 0 / 54%);
}

.site-popup__panel {
  position: relative;
  width: min(560px, 100%);
  padding: 34px;
  color: #fff;
  background: #111418;
  box-shadow: 0 18px 70px rgb(0 0 0 / 36%);
}

.site-popup__panel h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 0;
  text-indent: 0;
}

.site-popup__panel p {
  line-height: 1.55;
}

.site-popup__close {
  position: absolute;
  top: 12px;
  right: 12px;
  color: #111418;
}

.site-hero {
  min-height: 92vh;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.site-hero__slides {
  min-height: inherit;
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

.site-hero__slides::-webkit-scrollbar {
  display: none;
}

.site-hero__slides:active,
.site-hero__slides.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}

.site-hero__slide {
  min-width: 100%;
  min-height: inherit;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  scroll-snap-align: start;
  -webkit-user-drag: none;
}

.site-hero__media,
.site-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.site-hero__media img {
  object-fit: cover;
  background: #20242a;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}

.site-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.68));
}

.site-hero--overlay-soft .site-hero__shade {
  background: linear-gradient(180deg, rgb(0 0 0 / 8%), rgb(0 0 0 / 28%));
}

.site-hero--overlay-none .site-hero__shade {
  display: none;
}

.site-hero__content {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 72px;
}

.site-hero__headline {
  margin: 0;
  font-size: var(--site-type-hero-title);
  font-weight: 800;
  line-height: 1.05;
}

.site-hero__subheadline {
  width: min(560px, 100%);
  margin: 12px 0 24px;
  font-size: var(--site-type-body);
  line-height: 1.48;
}

.site-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 28px 0;
}

.site-hero__stats div {
  display: grid;
  gap: 4px;
}

.site-hero__stats strong {
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1;
}

.site-hero__stats span {
  color: rgb(255 255 255 / 78%);
  font-size: 13px;
}

.site-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-animate {
  animation-duration: 1200ms;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  animation-fill-mode: both;
}

.site-animate--fade-in-top-left {
  animation-name: site-fade-in-top-left;
  animation-delay: 420ms;
}

.site-animate--fade-in-up,
.site-animate--fade-in-up-stagger {
  animation-name: site-fade-in-up;
}

.site-hero__stats .site-animate--fade-in-up-stagger:nth-child(1),
.site-hero__actions .site-animate--fade-in-up-stagger:nth-child(1) {
  animation-delay: 720ms;
}

.site-hero__stats .site-animate--fade-in-up-stagger:nth-child(2),
.site-hero__actions .site-animate--fade-in-up-stagger:nth-child(2) {
  animation-delay: 920ms;
}

.site-hero__stats .site-animate--fade-in-up-stagger:nth-child(3),
.site-hero__actions .site-animate--fade-in-up-stagger:nth-child(3) {
  animation-delay: 1120ms;
}

@keyframes site-fade-in-top-left {
  from {
    opacity: 0;
    transform: translate(-22px, -22px) scale(0);
    transform-origin: left top;
  }

  to {
    opacity: 1;
    transform: translate(0, 0) scale(1);
    transform-origin: left top;
  }
}

@keyframes site-fade-in-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-animate {
    animation: none;
  }
}

:is(.site-hero--layout-vehicle-intro, .site-hero--layout-x9-first) {
  min-height: 100vh;
}

:is(.site-hero--layout-vehicle-intro, .site-hero--layout-x9-first) .site-hero__slide::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgb(0 0 0 / 30%) 0%, rgb(0 0 0 / 10%) 28%, rgb(0 0 0 / 0%) 52%, rgb(0 0 0 / 68%) 100%),
    linear-gradient(90deg, rgb(0 0 0 / 12%) 0%, rgb(0 0 0 / 0%) 30%, rgb(0 0 0 / 0%) 70%, rgb(0 0 0 / 18%) 100%);
  pointer-events: none;
}

[data-block-id="x9-hero"].site-hero .site-hero__slide::after {
  display: none;
}

:is(.site-hero--layout-vehicle-intro, .site-hero--layout-x9-first) .site-hero__content {
  z-index: 1;
  width: min(980px, calc(100% - 40px));
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(104px, 14vh, 152px) 0 clamp(64px, 8vh, 84px);
  text-align: center;
}

:is(.site-hero--layout-vehicle-intro, .site-hero--layout-x9-first) .site-hero__headline {
  position: relative;
  display: inline-block;
  font-size: clamp(24px, 2.05vw, 34px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
}

:is(.site-hero--layout-vehicle-intro, .site-hero--layout-x9-first) .site-hero__headline::before {
  content: "";
  position: absolute;
  right: calc(100% + clamp(1px, 0.16vw, 3px));
  bottom: calc(100% - clamp(4px, 0.32vw, 7px));
  width: clamp(15px, 1.12vw, 20px);
  height: clamp(15px, 1.12vw, 20px);
  background: url("/uploads/xpeng-x-mark.svg") center / contain no-repeat;
}

:is(.site-hero--layout-vehicle-intro, .site-hero--layout-x9-first) .site-hero__subheadline {
  width: auto;
  margin: 7px 0 0;
  font-size: clamp(16px, 1.32vw, 22px);
  font-weight: 100;
  line-height: 1.18;
  opacity: 0.92;
}

:is(.site-hero--layout-vehicle-intro, .site-hero--layout-x9-first) .site-hero__stats,
:is(.site-hero--layout-vehicle-intro, .site-hero--layout-x9-first) .site-hero__actions {
  width: 100%;
}

:is(.site-hero--layout-vehicle-intro, .site-hero--layout-x9-first) .site-hero__stats {
  justify-content: center;
  gap: clamp(28px, 3.8vw, 72px);
  margin: auto 0 18px;
}

:is(.site-hero--layout-vehicle-intro, .site-hero--layout-x9-first) .site-hero__stats div {
  min-width: 132px;
  gap: 4px;
}

:is(.site-hero--layout-vehicle-intro, .site-hero--layout-x9-first) .site-hero__stats strong {
  font-size: clamp(17px, 1.25vw, 24px);
  font-weight: 500;
}

:is(.site-hero--layout-vehicle-intro, .site-hero--layout-x9-first) .site-hero__stats span {
  color: rgb(255 255 255 / 90%);
  font-size: clamp(11px, 0.72vw, 14px);
}

:is(.site-hero--layout-vehicle-intro, .site-hero--layout-x9-first) .site-hero__actions {
  justify-content: center;
  gap: clamp(12px, 1.1vw, 18px);
}

:is(.site-hero--layout-vehicle-intro, .site-hero--layout-x9-first) .site-button {
  --site-button-bg: transparent;
  --site-button-color: #fff;
  --site-button-border: rgb(255 255 255 / 84%);
  min-width: clamp(176px, 11.4vw, 230px);
  min-height: 36px;
  border: 1px solid rgb(255 255 255 / 84%);
  border-radius: 4px;
  color: #fff;
  background: transparent;
  font-size: clamp(12px, 0.78vw, 15px);
  font-weight: 400;
  --site-button-hover-bg: #93b904;
  --site-button-hover-color: #fff;
  --site-button-hover-border: #93b904;
}

.site-hero__dots {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 28px;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.site-hero__dots a {
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: rgb(255 255 255 / 46%);
}

.site-hero__dots a:hover,
.site-hero__dots a:focus-visible {
  background: #fff;
}

.site-section {
  padding: 88px 0;
}

.site-section--space-flush {
  padding-top: clamp(52px, 6vw, 84px);
  padding-bottom: clamp(52px, 6vw, 84px);
}

.site-section--space-tight {
  padding-top: clamp(42px, 6vw, 64px);
  padding-bottom: clamp(42px, 6vw, 64px);
}

.site-section--space-normal {
  padding-top: clamp(72px, 8vw, 96px);
  padding-bottom: clamp(72px, 8vw, 96px);
}

.site-section--space-roomy {
  padding-top: clamp(96px, 11vw, 144px);
  padding-bottom: clamp(96px, 11vw, 144px);
}

.site-section--gap-before-small {
  margin-top: clamp(28px, 4vw, 48px);
}

.site-section--gap-before-medium {
  margin-top: clamp(56px, 7vw, 88px);
}

.site-section--gap-before-large {
  margin-top: clamp(84px, 10vw, 128px);
}

.site-section--gap-after-small {
  margin-bottom: clamp(28px, 4vw, 48px);
}

.site-section--gap-after-medium {
  margin-bottom: clamp(56px, 7vw, 88px);
}

.site-section--gap-after-large {
  margin-bottom: clamp(84px, 10vw, 128px);
}

.site-section--light {
  background: #fff;
}

.site-section--muted {
  background: #f5f6f7;
}

.site-section--dark {
  color: #fff;
  background: #111418;
}

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

.site-section__header {
  max-width: 880px;
  margin-bottom: clamp(28px, 5vw, 58px);
}

.site-section__header--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.site-section__header--right {
  margin-left: auto;
  text-align: right;
}

.site-section__lede {
  max-width: 760px;
  margin: 12px 0 0;
  color: #555f6d;
  font-size: var(--site-type-body);
  line-height: 1.45;
}

.site-section__header--center .site-section__lede {
  margin-right: auto;
  margin-left: auto;
}

.site-section--dark .site-section__lede {
  color: rgb(255 255 255 / 72%);
}

.site-section h2 {
  max-width: 760px;
  margin: 0;
  font-size: var(--site-type-section-title);
  font-weight: 600;
  line-height: 1.14;
}

.site-section__header--center h2,
.site-section__header--right h2 {
  margin-right: auto;
  margin-left: auto;
}

.site-eyebrow {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-feature-grid {
  display: grid;
  grid-template-columns: repeat(var(--columns), minmax(0, 1fr));
  gap: 18px;
}

.site-feature-card {
  min-height: 220px;
  padding: 28px;
  border: 1px solid #d8dde2;
  background: #fff;
}

.site-feature-card h3 {
  margin: 0 0 12px;
  font-size: var(--site-type-card-title);
  font-weight: 500;
}

.site-feature-card p {
  margin: 0;
  color: #555f6d;
  font-size: var(--site-type-body-small);
  line-height: 1.45;
}

.site-showcase__grid {
  display: grid;
  grid-template-columns: repeat(var(--columns), minmax(0, 1fr));
  gap: 18px;
}

.site-showcase--slider {
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: clamp(64px, 8vw, 108px);
}

.site-showcase__carousel {
  position: relative;
  margin-top: 0;
}

.site-showcase--slider .site-showcase__track {
  --slide-width: 72vw;
  display: flex;
  gap: 24px;
  align-items: center;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 0 max(40px, calc((100vw - var(--slide-width)) / 2));
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

.site-showcase--slider .site-showcase__track::-webkit-scrollbar {
  display: none;
}

.site-showcase--slider .site-showcase__track:active,
.site-showcase--slider .site-showcase__track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}

.site-showcase--slider .site-showcase-card {
  flex: 0 0 var(--slide-width);
  min-height: min(760px, 82vh);
  justify-content: center;
  border: 0;
  scroll-snap-align: center;
  user-select: none;
  background: transparent;
  cursor: grab;
  -webkit-user-drag: none;
}

.site-showcase--slider .site-showcase__track.is-dragging .site-showcase-card {
  cursor: grabbing;
}

.site-showcase--slider .site-showcase-card img,
.site-showcase--slider .site-showcase-card__video {
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}

.site-showcase--slider .site-showcase-card picture {
  order: 2;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
  background: #fff;
}

.site-showcase--slider .site-showcase-card img,
.site-showcase--slider .site-showcase-card__video {
  width: 100%;
  max-height: 70vh;
  aspect-ratio: auto;
  object-fit: contain;
  background: transparent;
}

.site-showcase--slider .site-showcase-card img,
.site-showcase--slider .site-showcase-card__video {
  transition: opacity 360ms ease, filter 360ms ease;
}

.site-showcase--slider .site-showcase-card:not(.is-active) img,
.site-showcase--slider .site-showcase-card:not(.is-active) .site-showcase-card__video {
  opacity: 0.42;
  filter: saturate(0.82);
}

.site-showcase--slider .site-showcase-card.is-active img,
.site-showcase--slider .site-showcase-card.is-active .site-showcase-card__video {
  opacity: 1;
  filter: none;
}

.site-showcase--slider .site-showcase-card__copy {
  order: 1;
  max-width: min(860px, 100%);
  justify-self: center;
  padding: 0 0 clamp(20px, 3vw, 34px);
  text-align: center;
}

.site-showcase--slider .site-showcase-card:not(.site-showcase-card--copy-overlay):not(.site-showcase-card--copy-overlay-bottom):not(.site-showcase-card--copy-overlay-center) .site-showcase-card__copy {
  min-height: clamp(92px, 8vw, 142px);
  align-content: end;
}

.site-showcase--slider .site-showcase-card__copy h3 {
  font-size: var(--site-type-section-title-compact);
  font-weight: 500;
  line-height: 1.15;
}

.site-showcase--slider .site-showcase-card__copy p {
  max-width: 780px;
  margin: 0 auto;
  font-size: var(--site-type-body-small);
  line-height: 1.45;
}

.site-showcase--slider > .site-section__inner {
  width: 100%;
}

.site-showcase--slider > .site-section__inner > .site-section__header,
.site-showcase--slider > .site-section__inner > .site-actions {
  width: min(1180px, calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
}

.site-showcase--slider.site-showcase--slides-full .site-section__inner {
  width: 100%;
}

.site-showcase--slider.site-showcase--slides-full .site-section__header,
.site-showcase--slider.site-showcase--slides-full .site-actions {
  width: min(1180px, calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
}

.site-showcase--slider.site-showcase--slides-full .site-showcase__track {
  gap: 0;
  padding: clamp(12px, 2vw, 24px) 0;
}

.site-showcase--slider.site-showcase--slides-full .site-showcase-card {
  flex-basis: 100%;
  min-height: min(720px, 78vh);
  border: 0;
}

.site-showcase--slider.site-showcase--slides-full .site-showcase-card img {
  aspect-ratio: auto;
  height: min(620px, 68vh);
}

.site-showcase-card--copy-overlay,
.site-showcase-card--copy-overlay-bottom,
.site-showcase-card--copy-overlay-center {
  position: relative;
}

.site-showcase--slider .site-showcase-card--copy-overlay picture,
.site-showcase--slider .site-showcase-card--copy-overlay-bottom picture,
.site-showcase--slider .site-showcase-card--copy-overlay-center picture {
  order: 1;
}

.site-showcase--slider .site-showcase-card--copy-overlay img,
.site-showcase--slider .site-showcase-card--copy-overlay-bottom img,
.site-showcase--slider .site-showcase-card--copy-overlay-center img {
  width: 100%;
  height: min(760px, 88vh);
  max-height: none;
  object-fit: cover;
}

.site-showcase--slider .site-showcase-card--copy-overlay .site-showcase-card__copy,
.site-showcase--slider .site-showcase-card--copy-overlay-bottom .site-showcase-card__copy,
.site-showcase--slider .site-showcase-card--copy-overlay-center .site-showcase-card__copy {
  position: absolute;
  z-index: 1;
  width: min(720px, calc(100% - 48px));
  padding: 0;
  color: #fff;
  text-align: left;
}

.site-showcase--slider .site-showcase-card--copy-overlay .site-showcase-card__copy,
.site-showcase--slider .site-showcase-card--copy-overlay-bottom .site-showcase-card__copy {
  right: 34px;
  bottom: 34px;
}

.site-showcase--slider .site-showcase-card--copy-overlay-center .site-showcase-card__copy {
  top: 50%;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
}

.site-showcase-card--copy-overlay::after,
.site-showcase-card--copy-overlay-bottom::after,
.site-showcase-card--copy-overlay-center::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgb(0 0 0 / 4%) 0%, rgb(0 0 0 / 64%) 100%);
  pointer-events: none;
}

.site-showcase--slider .site-showcase-card--copy-overlay .site-showcase-card__copy p,
.site-showcase--slider .site-showcase-card--copy-overlay-bottom .site-showcase-card__copy p,
.site-showcase--slider .site-showcase-card--copy-overlay-center .site-showcase-card__copy p {
  color: rgb(255 255 255 / 82%);
}

[data-block-id="x9-rear-lounge"] .site-showcase-card--copy-overlay-bottom::after {
  background: linear-gradient(180deg, rgb(0 0 0 / 0%) 50%, rgb(0 0 0 / 70%) 100%);
}

[data-block-id="x9-rear-lounge"].site-showcase--slider .site-showcase-card--copy-overlay-bottom .site-showcase-card__copy {
  right: 22px;
  bottom: 18px;
  left: 22px;
  width: auto;
}

[data-block-id="x9-rear-lounge"].site-showcase--slider .site-showcase-card__copy h3 {
  font-size: var(--site-type-caption);
  font-weight: 600;
  line-height: 1.2;
}

[data-block-id="x9-rear-lounge"].site-showcase--slider .site-showcase-card__copy p {
  display: none;
}

.site-showcase__arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  min-width: 28px;
  height: 28px;
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 999px;
  padding: 0;
  color: #fff;
  background: rgb(0 0 0 / 42%);
  box-shadow: 0 6px 18px rgb(0 0 0 / 16%);
  font-size: 0;
  font-weight: 300;
  line-height: 0;
}

.site-showcase__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 7px;
  height: 7px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform-origin: center;
}

.site-showcase__arrow--prev {
  left: 28px;
}

.site-showcase__arrow--prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.site-showcase__arrow--next {
  right: 28px;
}

.site-showcase__arrow--next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.site-showcase--slides-full .site-showcase__arrow--prev {
  left: 22px;
}

.site-showcase--slides-full .site-showcase__arrow--next {
  right: 22px;
}

.site-showcase__dots {
  display: none;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}

.site-showcase__dots button {
  width: 34px;
  min-width: 34px;
  height: 4px;
  min-height: 4px;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: #c8c8c8;
  transform: skewX(-24deg);
}

.site-showcase__dots button.active {
  background: #93b904;
}

.site-showcase-card {
  overflow: hidden;
  min-height: 100%;
  display: grid;
  align-content: start;
  color: inherit;
  text-decoration: none;
  background: #fff;
  border: 1px solid #d8dde2;
}

.site-showcase-card picture {
  display: block;
}

.site-showcase-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #d9dde2;
}

.site-showcase-card__video,
.site-media-text__media video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #111418;
}

.site-showcase-card__copy {
  display: grid;
  gap: 8px;
  padding: 22px;
}

.site-showcase-card__copy span {
  color: #687484;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-showcase-card__copy h3 {
  margin: 0;
  font-size: var(--site-type-card-title);
  font-weight: 500;
}

.site-showcase-card__copy p {
  margin: 0;
  color: #555f6d;
  font-size: var(--site-type-body-small);
  line-height: 1.45;
}

.site-color-swatches {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0;
  padding: 0 0 clamp(10px, 1.4vw, 20px);
  background: #fff;
}

.site-section--dark .site-color-swatches {
  color: #fff;
  background: #111418;
}

[data-block-id="x9-colors"] .site-section__header {
  margin-bottom: 0;
}

[data-block-id="x9-cabin"] .site-section__header {
  margin-bottom: clamp(44px, 4.4vw, 76px);
}

[data-block-id="x9-cabin"].site-section,
[data-block-id="x9-cabin"] .site-color-swatches {
  color: #111;
  background: #fff;
}

.site-color-swatches__stage {
  position: relative;
  width: 100%;
  margin-top: -34px;
  display: grid;
  justify-items: center;
  overflow: visible;
  pointer-events: none;
}

.site-color-swatches__watermark {
  position: absolute;
  top: 20%;
  left: 18%;
  z-index: 0;
  color: rgb(0 0 0 / 4.5%);
  font-size: clamp(120px, 16vw, 260px);
  font-weight: 900;
  font-style: italic;
  line-height: 0.75;
  letter-spacing: -0.04em;
  pointer-events: none;
  transform: skewX(-8deg);
}

.site-section--dark .site-color-swatches__watermark {
  color: rgb(255 255 255 / 5%);
}

.site-color-swatches__vehicle-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1664px;
  display: grid;
  justify-items: center;
  overflow: hidden;
}

.site-color-swatches__stage picture {
  position: relative;
  z-index: 1;
  width: min(169%, 2636px);
  display: block;
}

.site-color-swatches__stage img {
  width: 100%;
  height: min(56.8vw, 703px);
  display: block;
  object-fit: contain;
}

.site-color-swatches__nav {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(11px, 1.6vw, 28px);
  margin-top: clamp(-118px, -6.8vw, -74px);
  pointer-events: auto;
}

.site-color-swatches__nav button {
  min-width: 0;
  min-height: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 6px;
  color: #1c1c1c;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.site-section--dark .site-color-swatches__nav button {
  color: #fff;
}

.site-color-swatches__nav button.active {
  gap: 7px;
  padding: 6px 12px 6px 6px;
  background: #f5f5f5;
  box-shadow: 0 12px 34px rgb(0 0 0 / 12%);
}

.site-section--dark .site-color-swatches__nav button.active {
  background: rgb(255 255 255 / 14%);
  box-shadow: 0 12px 34px rgb(0 0 0 / 18%);
}

[data-block-id="x9-cabin"] .site-color-swatches__stage {
  margin-top: 0;
}

[data-block-id="x9-cabin"] .site-color-swatches__watermark {
  display: none;
}

[data-block-id="x9-cabin"] .site-color-swatches__vehicle-frame {
  width: min(100% - 96px, 775px);
  max-width: 775px;
  border-radius: 4px;
}

[data-block-id="x9-cabin"] .site-color-swatches__stage picture {
  width: 100%;
}

[data-block-id="x9-cabin"] .site-color-swatches__stage img {
  height: auto;
  object-fit: cover;
}

[data-block-id="x9-cabin"] .site-color-swatches__nav {
  width: min(100% - 96px, 775px);
  justify-content: center;
  gap: 18px;
  margin-top: clamp(38px, 3.4vw, 68px);
}

[data-block-id="x9-cabin"] .site-color-swatches__nav button {
  padding: 0;
}

[data-block-id="x9-cabin"] .site-color-swatches__nav button.active {
  gap: 10px;
  padding: 7px 15px 7px 7px;
}

[data-block-id="x9-cabin"] .site-color-swatches__nav button.active .site-color-swatches__label {
  display: inline;
  color: #6f6f6f;
}

.site-color-swatches__chip {
  width: clamp(17px, 1.7vw, 31px);
  height: clamp(17px, 1.7vw, 31px);
  display: block;
  border: 1px solid rgb(0 0 0 / 4%);
  border-radius: 999px;
  background: var(--swatch) center / cover no-repeat;
  box-shadow: inset -10px -10px 18px rgb(0 0 0 / 16%), inset 8px 8px 16px rgb(255 255 255 / 22%);
}

.site-color-swatches__label {
  display: none;
  white-space: nowrap;
  font-size: clamp(9px, .75vw, 14px);
  line-height: 1;
}

.site-color-swatches__mobile-label {
  display: none;
}

.site-color-swatches__nav button.active .site-color-swatches__label {
  display: inline;
}

.site-product-360 {
  background: #f6f6f4;
}

.site-product-360__inner {
  display: grid;
  gap: clamp(6px, 1vw, 14px);
}

.site-product-360__viewer {
  position: relative;
  width: min(100%, 1500px);
  margin: 0 auto;
  display: grid;
  justify-items: center;
  overflow: hidden;
  cursor: none;
  user-select: none;
  touch-action: pan-y;
  outline: none;
}

.site-product-360__viewer:active,
.site-product-360__viewer.is-dragging {
  cursor: none;
}

.site-product-360__viewer picture {
  width: 100%;
  display: block;
}

.site-product-360__viewer img {
  width: 100%;
  height: min(52vw, 720px);
  display: block;
  object-fit: contain;
  -webkit-user-drag: none;
}

.site-product-360__sprite {
  position: relative;
  z-index: 1;
  width: min(100%, var(--frame-width, 720px));
  height: auto;
  aspect-ratio: var(--frame-aspect-width, 720) / var(--frame-aspect-height, 560);
  background-image: var(--sprite);
  background-repeat: no-repeat;
  background-size: var(--sprite-size, 6000%) 100%;
  background-position: calc(var(--frame-index) * 100% / (var(--frame-count) - 1)) 50%;
  contain: layout paint size;
  transform: translateZ(0);
}

.site-product-360__mouse-icon {
  position: absolute;
  z-index: 19;
  width: 72px;
  height: 72px;
  pointer-events: none;
  opacity: 0;
  user-select: none;
  transform: translate(-50%, -50%);
  transition: width .3s, opacity .3s;
}

.site-product-360__mouse-icon.is-visible {
  width: 72px;
  opacity: 1;
}

.site-product-360__mouse-icon span {
  position: absolute;
  inset: 0;
  display: block;
  background: url("/uploads/xpeng-360-mouse.svg") center / contain no-repeat;
}

.site-product-360__watermark {
  position: absolute;
  z-index: 0;
  top: 45%;
  left: 50%;
  color: rgb(0 0 0 / 5%);
  font-size: clamp(104px, 17vw, 280px);
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.site-product-360__caption {
  position: relative;
  z-index: 1;
  margin: clamp(8px, 1.2vw, 16px) 0 0;
  color: rgb(0 0 0 / 64%);
  font-size: clamp(13px, 1vw, 17px);
  line-height: 1.35;
  text-align: center;
}

.site-product-360__viewer .site-product-360__mobile-indicator {
  display: none;
  width: 52px;
  height: auto;
  object-fit: contain;
}

.site-product-360__hint {
  position: absolute;
  right: clamp(20px, 4vw, 72px);
  bottom: clamp(18px, 2.8vw, 44px);
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 9px 16px;
  color: rgb(0 0 0 / 62%);
  background: rgb(255 255 255 / 78%);
  box-shadow: 0 10px 28px rgb(0 0 0 / 10%);
  font-size: 13px;
  line-height: 1;
}

.site-showcase--tabs {
  padding-top: clamp(52px, 6vw, 90px);
  padding-bottom: clamp(34px, 4vw, 64px);
}

.site-showcase--tabs .site-section__inner {
  width: min(1600px, calc(100% - 160px));
}

.site-showcase-tabs {
  display: grid;
  justify-items: center;
}

.site-showcase-tabs__frame {
  position: relative;
  width: 100%;
}

.site-showcase-tabs__frame .site-showcase__arrow--prev {
  left: clamp(12px, 1.6vw, 28px);
}

.site-showcase-tabs__frame .site-showcase__arrow--next {
  right: clamp(12px, 1.6vw, 28px);
}

.site-showcase-tabs__media {
  width: 100%;
}

.site-showcase-tabs__media picture {
  display: block;
}

.site-showcase-tabs__media img,
.site-showcase-tabs__media video {
  width: 100%;
  aspect-ratio: 2.25 / 1;
  object-fit: cover;
  background: #111418;
}

.site-showcase--media-tall .site-showcase-tabs__media img,
.site-showcase--media-tall .site-showcase-tabs__media video {
  height: min(80vh, 760px);
  aspect-ratio: auto;
}

.site-showcase-tabs__nav {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  border-bottom: 1px solid #d8dde2;
}

.site-showcase-tabs__nav button {
  min-height: 58px;
  border: 0;
  border-bottom: 4px solid transparent;
  border-radius: 0;
  padding: 0 18px;
  color: #8b8b8b;
  background: #fff;
  font-size: clamp(13px, 0.78vw, 15px);
  font-weight: 500;
  line-height: 1.15;
}

.site-showcase-tabs__nav button.active {
  border-color: #8cbf13;
  color: #202020;
  font-weight: 600;
}

.site-showcase-tabs__copy {
  max-width: 980px;
  margin: 14px auto 0;
  color: #696969;
  font-size: clamp(13px, 0.82vw, 15px);
  line-height: 1.28;
  text-align: center;
}

[data-block-id="x9-seating-videos"].site-showcase--tabs {
  padding-top: clamp(54px, 6vw, 82px);
  padding-bottom: clamp(58px, 6vw, 86px);
}

[data-block-id="x9-seating-videos"].site-showcase--tabs .site-section__inner {
  width: min(1404px, calc(100% - 224px));
}

[data-block-id="x9-seating-videos"] .site-section__header {
  margin-bottom: clamp(64px, 5vw, 78px);
}

[data-block-id="x9-seating-videos"] .site-section__header h2 {
  max-width: none;
  font-size: var(--site-type-section-title);
  font-weight: 600;
  line-height: 1.12;
}

[data-block-id="x9-seating-videos"] .site-showcase-tabs__media img,
[data-block-id="x9-seating-videos"] .site-showcase-tabs__media video,
[data-block-id="x9-seating-videos"].site-showcase--media-tall .site-showcase-tabs__media img,
[data-block-id="x9-seating-videos"].site-showcase--media-tall .site-showcase-tabs__media video {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  border-radius: 3px;
}

[data-block-id="x9-seating-videos"] .site-showcase-tabs__nav {
  width: calc(100% - 60px);
  margin-top: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid #d6d6d6;
}

[data-block-id="x9-seating-videos"] .site-showcase-tabs__nav button {
  min-height: 34px;
  border-bottom-width: 2px;
  padding: 0 14px;
  color: #a7a7a7;
  background: transparent;
  font-size: clamp(12px, 0.72vw, 14px);
  font-weight: 400;
  line-height: 1.1;
}

[data-block-id="x9-seating-videos"] .site-showcase-tabs__nav button.active {
  border-color: #8cc63f;
  color: #202020;
  font-weight: 400;
}

[data-block-id="x9-seating-videos"] .site-showcase-tabs__copy {
  width: calc(100% - 120px);
  max-width: none;
  margin-top: 8px;
  color: #9a9a9a;
  font-size: clamp(12px, 0.72vw, 14px);
  font-weight: 400;
  line-height: 1.25;
}

[data-block-id="x9-voice-control"] .site-showcase-tabs__nav,
[data-block-id="x9-driver-assistance-details"] .site-showcase-tabs__nav {
  margin-top: 8px;
}

[data-block-id="x9-voice-control"] .site-showcase-tabs__nav button,
[data-block-id="x9-driver-assistance-details"] .site-showcase-tabs__nav button {
  min-height: 34px;
  border-bottom-width: 2px;
  color: #a7a7a7;
  font-size: clamp(12px, 0.72vw, 14px);
  font-weight: 400;
  line-height: 1.1;
}

[data-block-id="x9-voice-control"] .site-showcase-tabs__nav button.active,
[data-block-id="x9-driver-assistance-details"] .site-showcase-tabs__nav button.active {
  color: #202020;
  font-weight: 400;
}

[data-block-id="x9-voice-control"] .site-showcase-tabs__copy,
[data-block-id="x9-driver-assistance-details"] .site-showcase-tabs__copy {
  margin-top: 8px;
  font-size: clamp(12px, 0.72vw, 14px);
  line-height: 1.25;
}

.site-showcase--fade-thumbs {
  padding-top: 0;
  padding-bottom: clamp(84px, 9vw, 128px);
  background: #fff;
}

.site-showcase--fade-thumbs .site-section__inner {
  width: 100%;
}

.site-showcase-fade {
  position: relative;
  overflow: hidden;
}

.site-showcase-fade__media {
  position: relative;
  display: block;
  min-height: max(620px, calc(100vh - 72px));
  overflow: hidden;
}

.site-showcase-fade__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgb(255 255 255 / 0%) 62%, #fff 96%);
  pointer-events: none;
}

.site-showcase-fade__media img {
  width: 100%;
  height: max(620px, calc(100vh - 72px));
  object-fit: cover;
  background: #d9dde2;
}

.site-showcase-fade__copy {
  position: absolute;
  top: clamp(56px, 8vh, 96px);
  left: 50%;
  z-index: 1;
  width: min(920px, calc(100% - 40px));
  margin: 0;
  color: #fff;
  text-align: center;
  transform: translateX(-50%);
}

.site-showcase-fade__copy h2 {
  max-width: none;
  margin: 0;
  font-size: var(--site-type-section-title);
  font-weight: 600;
  line-height: 1.12;
}

.site-showcase-fade__copy p:not(.site-eyebrow) {
  max-width: 680px;
  margin: 14px auto 0;
  color: rgb(255 255 255 / 86%);
  font-size: var(--site-type-body);
  line-height: 1.45;
}

.site-showcase--fade-thumbs .site-showcase__grid {
  position: relative;
  z-index: 1;
  width: min(1296px, calc(100% - 160px));
  margin: clamp(-150px, -10vw, -96px) auto 0;
  gap: clamp(16px, 1.6vw, 26px);
}

.site-showcase--fade-thumbs .site-showcase-card {
  position: relative;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: #111418;
  overflow: hidden;
}

.site-showcase--fade-thumbs .site-showcase-card picture {
  display: block;
}

.site-showcase--fade-thumbs .site-showcase-card img {
  width: 100%;
  aspect-ratio: 1.326 / 1;
  object-fit: contain;
  background: #111418;
}

.site-showcase--fade-thumbs .site-showcase-card__copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 46px;
  display: flex;
  align-items: end;
  padding: 28px 16px 12px;
  color: #fff;
  background: linear-gradient(180deg, rgb(10 14 20 / 0%) 0%, rgb(10 14 20 / 28%) 42%, rgb(10 14 20 / 86%) 100%);
}

.site-showcase--fade-thumbs .site-showcase-card__copy h3 {
  color: #fff;
  font-size: var(--site-type-caption);
  font-weight: 600;
  line-height: 1.2;
}

.site-showcase--fade-thumbs .site-showcase-card__copy span,
.site-showcase--fade-thumbs .site-showcase-card__copy p {
  display: none;
}

.site-showcase--thumb-overlay .site-section__inner {
  width: min(1620px, calc(100% - 80px));
}

.site-showcase--thumb-overlay .site-showcase__grid {
  gap: clamp(48px, 5.2vw, 96px) clamp(32px, 3.8vw, 72px);
}

.site-showcase--thumb-overlay .site-showcase-card {
  position: relative;
  min-height: 0;
  border: 0;
  background: #111418;
}

.site-showcase--thumb-overlay .site-showcase-card picture {
  display: block;
}

.site-showcase--thumb-overlay .site-showcase-card img {
  width: 100%;
  aspect-ratio: 2.36 / 1;
  object-fit: cover;
  background: #d9dde2;
}

.site-showcase--thumb-overlay .site-showcase-card__copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 16px 26px;
  color: #fff;
  background: linear-gradient(90deg, rgb(10 14 20 / 86%), rgb(10 14 20 / 54%));
}

.site-showcase--thumb-overlay .site-showcase-card__copy h3 {
  color: #fff;
  font-size: var(--site-type-card-title);
  font-weight: 500;
  line-height: 1.12;
}

.site-showcase--thumb-overlay .site-showcase-card__copy span,
.site-showcase--thumb-overlay .site-showcase-card__copy p {
  display: none;
}

.site-showcase--mobile-slider .site-showcase__carousel {
  position: relative;
}

.site-showcase--mobile-slider .site-showcase__carousel .site-showcase__track {
  overflow: visible;
}

.site-showcase--mobile-slider .site-showcase__carousel .site-showcase__arrow,
.site-showcase--mobile-slider .site-showcase__carousel .site-showcase__dots {
  display: none;
}

.site-showcase--thumb-overlay .site-showcase__grid {
  gap: clamp(18px, 2vw, 32px);
}

.site-showcase--thumb-overlay .site-showcase-card {
  background: #fff;
  overflow: hidden;
}

.site-showcase--thumb-overlay .site-showcase-card::before,
.site-showcase--thumb-overlay .site-showcase-card::after {
  display: none !important;
  content: none !important;
}

.site-showcase--thumb-overlay .site-showcase-card img {
  filter: none;
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.site-showcase--thumb-overlay .site-showcase-card:hover img,
.site-showcase--thumb-overlay .site-showcase-card:focus-within img {
  transform: scale(1.08);
}

.site-showcase--thumb-overlay .site-showcase-card__copy {
  min-height: 0;
  padding: 10px 14px 12px;
  color: #fff;
  background: transparent !important;
  box-shadow: none;
}

.site-showcase--thumb-overlay .site-showcase-card__copy h3 {
  color: #fff;
  font-size: clamp(12px, 0.78vw, 15px);
  font-weight: 400;
  line-height: 1.18;
  text-shadow: none;
}

.site-showcase--fade-thumbs.site-showcase--thumb-overlay .site-showcase-card__copy {
  min-height: 46px;
  align-items: end;
  padding: 28px 16px 12px;
  background: linear-gradient(180deg, rgb(10 14 20 / 0%) 0%, rgb(10 14 20 / 28%) 42%, rgb(10 14 20 / 88%) 100%);
}

.site-showcase--fade-thumbs.site-showcase--thumb-overlay .site-section__inner {
  width: 100%;
}

.site-showcase--fade-thumbs.site-showcase--thumb-overlay .site-showcase__grid {
  width: min(1296px, calc(100% - 160px));
  margin-top: clamp(-150px, -10vw, -96px);
}

.site-showcase--fade-thumbs.site-showcase--thumb-overlay .site-showcase-card img {
  aspect-ratio: 708 / 534;
  object-fit: contain;
}

.site-showcase--fade-thumbs.site-showcase--thumb-overlay .site-showcase-card__copy h3 {
  font-size: var(--site-type-caption);
  font-weight: 600;
  line-height: 1.2;
}

.site-section--dark .site-showcase-card {
  border-color: rgb(255 255 255 / 16%);
  color: #fff;
  background: #171d25;
}

.site-section--dark .site-showcase-card__copy p {
  color: rgb(255 255 255 / 72%);
}

.site-page-collection {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.site-page-card {
  min-height: 240px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
  border: 1px solid #d8dde2;
  background: #fff;
}

.site-page-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #d9dde2;
}

.site-page-card span {
  color: #687484;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-page-card time {
  color: #687484;
  font-size: 13px;
  line-height: 1.2;
}

.site-page-card h3 {
  margin: 0;
  font-size: var(--site-type-card-title);
  font-weight: 500;
}

.site-page-card p {
  margin: 0;
  color: #555f6d;
  font-size: var(--site-type-body-small);
  line-height: 1.45;
}

.site-pagination {
  margin: 22px 0 0;
  color: #687484;
  font-size: 14px;
}

.site-media-text {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: center;
}

.site-media-text--left .site-media-text__copy {
  order: 2;
}

.site-media-text--copy-only {
  display: block;
}

.site-media-text--copy-only .site-media-text__copy {
  max-width: none;
}

.site-media-text__copy p {
  max-width: 580px;
  color: #555f6d;
  font-size: var(--site-type-body-small);
  line-height: 1.45;
}

[data-block-id="x9-app"],
[data-block-id="l03-app"] {
  background: #f4f5f7;
}

[data-block-id="x9-app"] .site-media-text,
[data-block-id="l03-app"] .site-media-text {
  gap: clamp(32px, 5vw, 82px);
}

[data-block-id="x9-app"] .site-media-text__copy,
[data-block-id="l03-app"] .site-media-text__copy {
  display: grid;
  align-content: center;
  justify-items: start;
}

[data-block-id="x9-app"] .site-eyebrow,
[data-block-id="l03-app"] .site-eyebrow {
  margin-bottom: 8px;
  color: #555f6d;
  font-size: clamp(13px, 0.82vw, 15px);
  font-weight: 500;
  text-transform: none;
}

[data-block-id="x9-app"] .site-media-text__copy h2,
[data-block-id="l03-app"] .site-media-text__copy h2 {
  font-size: clamp(24px, 1.5vw, 30px);
  font-weight: 500;
}

[data-block-id="x9-app"] .site-media-text__copy p,
[data-block-id="l03-app"] .site-media-text__copy p {
  display: none;
}

[data-block-id="x9-app"] .site-actions,
[data-block-id="l03-app"] .site-actions {
  margin-top: 22px;
}

[data-block-id="x9-app"] .site-media-text__media img,
[data-block-id="l03-app"] .site-media-text__media img {
  object-fit: contain;
  background: transparent;
}

[data-block-id="l03-app"].site-section--space-normal {
  padding-top: clamp(38px, 4.6vw, 58px);
  padding-bottom: clamp(18px, 2.4vw, 30px);
}

[data-block-id="x9-disclaimers"],
[data-block-id="l03-disclaimers"] {
  background: #f4f5f7;
}

[data-block-id="x9-disclaimers"].site-section--space-tight,
[data-block-id="l03-disclaimers"].site-section--space-tight {
  padding-top: 10px;
  padding-bottom: 34px;
}

[data-block-id="x9-disclaimers"] .site-media-text__copy p,
[data-block-id="l03-disclaimers"] .site-media-text__copy p {
  max-width: none;
  margin: 0;
  color: #777;
  font-size: clamp(10px, 0.64vw, 12px);
  line-height: 1.45;
  white-space: pre-line;
}

.site-media-text__media img,
.site-media-text__media video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #d9dde2;
}

.site-media-text--image-below {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(46px, 5vw, 78px);
}

.site-media-text--image-below .site-media-text__copy {
  order: 1;
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
}

.site-media-text--image-below .site-media-text__media {
  order: 2;
}

.site-media-text--image-below .site-media-text__copy h2 {
  max-width: 1120px;
  font-size: var(--site-type-section-title);
  font-weight: 600;
  line-height: 1.12;
}

.site-media-text--image-below .site-media-text__copy p {
  max-width: 980px;
  color: #202020;
  font-size: var(--site-type-body);
  line-height: 1.45;
}

.site-media-text--image-below .site-actions {
  display: none;
}

.site-media-text--image-below .site-media-text__media img,
.site-media-text--image-below .site-media-text__media video {
  width: min(1480px, 100%);
  margin: 0 auto;
  display: block;
  aspect-ratio: 2.08 / 1;
  object-fit: cover;
}

.site-media-text--wide-media {
  grid-template-columns: 1fr;
  gap: clamp(34px, 4vw, 62px);
}

.site-media-text--wide-media .site-media-text__copy {
  display: grid;
  justify-items: center;
  max-width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  text-align: center;
}

.site-media-text--wide-media .site-media-text__copy h2 {
  max-width: 920px;
  margin: 0;
  font-size: var(--site-type-section-title);
  font-weight: 600;
  line-height: 1.12;
}

.site-media-text--wide-media .site-media-text__copy p {
  max-width: 980px;
  margin: 14px auto 0;
  color: #202020;
  font-size: var(--site-type-body);
  line-height: 1.45;
}

.site-media-text--wide-media .site-media-text__media {
  width: min(1680px, calc(100% - 80px));
  margin: 0 auto;
}

[data-block-id="x9-dual-chamber-video"] .site-media-text--wide-media .site-media-text__media {
  width: min(1428px, calc((100% - 80px) * 0.85));
}

.site-media-text--wide-media .site-media-text__media video,
.site-media-text--wide-media .site-media-text__media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8.4;
  object-fit: cover;
}

.site-media-text--wide-media .site-actions {
  display: none;
}

.site-section--banner {
  padding: 0;
}

.site-section--banner > .site-section__inner {
  width: 100%;
}

.site-media-text--banner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  min-height: min(900px, 100vh);
  overflow: hidden;
  gap: 0;
}

.site-media-text--banner .site-media-text__media {
  position: relative;
  grid-area: 1 / 1;
  min-height: inherit;
}

.site-media-text--banner .site-media-text__media::after {
  position: absolute;
  inset: 0;
  display: none;
  content: "";
  background: linear-gradient(180deg, rgb(0 0 0 / 8%) 0%, rgb(0 0 0 / 26%) 48%, rgb(0 0 0 / 64%) 100%);
  pointer-events: none;
}

.site-media-text--banner.site-media-text--overlay-dark .site-media-text__media::after,
.site-media-text--banner.site-media-text--overlay-soft .site-media-text__media::after {
  display: block;
}

.site-media-text--banner.site-media-text--overlay-soft .site-media-text__media::after {
  background: linear-gradient(180deg, rgb(0 0 0 / 8%) 0%, rgb(0 0 0 / 12%) 46%, rgb(0 0 0 / 28%) 100%);
}

.site-media-text--banner .site-media-text__media img,
.site-media-text--banner .site-media-text__media video {
  width: 100%;
  height: min(900px, 100vh);
  aspect-ratio: auto;
  object-fit: cover;
}

[data-block-id="x9-driver-assistance"] .site-media-text--banner .site-media-text__media img {
  object-position: center center;
}

[data-block-id="x9-driver-assistance"] .site-media-text--banner.site-media-text--overlay-dark .site-media-text__media::after {
  background: linear-gradient(180deg, rgb(0 0 0 / 28%) 0%, rgb(0 0 0 / 18%) 42%, rgb(0 0 0 / 22%) 100%);
}

.site-section--media-short .site-media-text--banner {
  min-height: 60vh;
}

.site-section--media-short .site-media-text--banner .site-media-text__media img,
.site-section--media-short .site-media-text--banner .site-media-text__media video {
  height: 60vh;
}

.site-section--media-hero .site-media-text--banner {
  min-height: max(720px, calc(100vh - 72px));
}

.site-section--media-hero .site-media-text--banner .site-media-text__media img,
.site-section--media-hero .site-media-text--banner .site-media-text__media video {
  height: max(720px, calc(100vh - 72px));
}

.site-media-text--banner .site-media-text__copy {
  position: relative;
  z-index: 1;
  grid-area: 1 / 1;
  width: min(760px, calc(100% - 48px));
  align-self: end;
  justify-self: start;
  margin: 0 0 clamp(42px, 8vh, 86px) clamp(24px, 8vw, 112px);
  color: #fff;
}

.site-media-text--banner.site-media-text--copy-center .site-media-text__copy {
  place-self: center;
  align-self: center;
  justify-self: center;
  margin: 0;
  margin-inline: auto;
  text-align: center;
}

.site-media-text--banner.site-media-text--copy-bottom-center .site-media-text__copy {
  place-self: end center;
  justify-self: center;
  margin-right: 0;
  margin-left: 0;
  margin-inline: auto;
  text-align: center;
}

.site-media-text--banner.site-media-text--copy-top-left .site-media-text__copy {
  align-self: start;
  margin-top: clamp(64px, 12vh, 128px);
  margin-bottom: 0;
}

.site-media-text--banner.site-media-text--copy-top-center .site-media-text__copy {
  place-self: start center;
  align-self: start;
  justify-self: center;
  margin: clamp(64px, 10vh, 120px) 0 0;
  margin-inline: auto;
  text-align: center;
}

[data-block-id="x9-driver-assistance"] .site-media-text--banner.site-media-text--copy-top-center .site-media-text__copy {
  width: min(920px, calc(100% - 48px));
  display: grid;
  justify-items: center;
  margin-top: clamp(96px, 13vh, 150px);
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

[data-block-id="x9-driver-assistance"] .site-media-text--banner.site-media-text--copy-top-center .site-media-text__copy h2,
[data-block-id="x9-driver-assistance"] .site-media-text--banner.site-media-text--copy-top-center .site-media-text__copy p {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.site-section--media-hero .site-media-text--banner.site-media-text--copy-top-center .site-media-text__copy h2 {
  font-size: var(--site-type-section-title-compact);
  line-height: 1.16;
}

.site-section--media-hero .site-media-text--banner.site-media-text--copy-top-center .site-media-text__copy p {
  max-width: 620px;
  margin-right: auto;
  margin-left: auto;
  font-size: var(--site-type-body-small);
  line-height: 1.45;
}

.site-media-text--banner .site-eyebrow,
.site-media-text--banner .site-media-text__copy p {
  color: rgb(255 255 255 / 78%);
}

.site-media-text--banner .site-media-text__copy h2 {
  font-size: var(--site-type-section-title);
  font-weight: 600;
  line-height: 1.12;
}

.site-media-text--banner.site-media-text--copy-top-center .site-media-text__copy h2 {
  font-size: var(--site-type-section-title);
  line-height: 1.12;
}

.site-spec-sheet {
  display: grid;
  gap: clamp(14px, 2vw, 28px);
}

.site-spec-sheet__header {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.site-spec-sheet__header h2 {
  font-size: clamp(24px, 1.5vw, 30px);
  font-weight: 500;
  line-height: 1.16;
}

.site-spec-sheet__tabs {
  display: inline-grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(190px, 1fr);
  gap: 0;
}

.site-spec-sheet__tabs button {
  min-height: 36px;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  color: #8c8c8c;
  background: transparent;
  font-size: clamp(12px, 0.76vw, 14px);
  font-weight: 400;
  line-height: 1.1;
}

.site-spec-sheet__tabs button.active {
  border-color: #8cbf13;
  color: #252525;
  font-weight: 500;
}

.site-spec-sheet__body {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: clamp(28px, 4vw, 60px);
}

.site-spec-sheet__media {
  display: grid;
  align-items: center;
}

.site-spec-sheet__media img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.site-spec-table {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 48px;
}

.site-spec-table__row {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.site-spec-table dt {
  color: #8e8e8e;
  font-size: clamp(11px, 0.7vw, 13px);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.site-spec-table dd {
  margin: 0;
  color: #202020;
  font-size: clamp(14px, 0.88vw, 17px);
  font-weight: 500;
  line-height: 1.18;
}

.site-spec-sheet .site-actions {
  justify-content: center;
  margin-top: 0;
}

[data-block-id="x9-specifications"] .site-spec-sheet {
  gap: clamp(8px, 1.1vw, 16px);
}

[data-block-id="x9-specifications"] .site-spec-sheet__body {
  gap: clamp(14px, 2.2vw, 34px);
}

[data-block-id="x9-specifications"] .site-actions {
  margin-top: clamp(-8px, -0.6vw, -4px);
}

.site-button {
  --site-button-bg: transparent;
  --site-button-color: currentColor;
  --site-button-border: currentColor;
  --site-button-hover-bg: #93b904;
  --site-button-hover-color: #fff;
  --site-button-hover-border: #93b904;
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--site-button-border);
  padding: 0 10px;
  border-radius: 2px;
  color: var(--site-button-color);
  background-color: var(--site-button-bg);
  font-size: clamp(13px, 0.86vw, 16px);
  font-weight: 500;
  line-height: 1.1;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition:
    color 180ms ease,
    border-color 180ms ease;
}

.site-button::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  background: var(--site-button-hover-bg);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1);
}

.site-button > * {
  position: relative;
  z-index: 1;
}

.site-button:hover,
.site-button:focus-visible {
  border-color: var(--site-button-hover-border);
  color: var(--site-button-hover-color);
}

.site-button:hover::before,
.site-button:focus-visible::before {
  transform: scaleX(1);
}

.site-button--solid {
  --site-button-bg: #111418;
  --site-button-color: #fff;
  --site-button-border: #111418;
  --site-button-hover-bg: #93b904;
  --site-button-hover-color: #fff;
  --site-button-hover-border: #93b904;
}

.site-button--outline {
  --site-button-bg: transparent;
  --site-button-color: #111418;
  --site-button-border: #111418;
}

.site-button--light {
  --site-button-bg: #fff;
  --site-button-color: #111418;
  --site-button-border: #fff;
  --site-button-hover-bg: #93b904;
  --site-button-hover-color: #fff;
  --site-button-hover-border: #93b904;
}

.site-button--ghost {
  --site-button-bg: transparent;
  --site-button-color: currentColor;
  --site-button-border: transparent;
  --site-button-hover-bg: rgb(17 20 24 / 8%);
  --site-button-hover-color: currentColor;
  --site-button-hover-border: transparent;
}

.site-button--store,
.site-button--image {
  min-width: 0;
  min-height: 0;
  border: 0;
  padding: 0;
  background: transparent;
  background-image: none;
}

.site-button--store::before,
.site-button--image::before {
  display: none;
}

.site-button--store img,
.site-button--image img {
  display: block;
  width: auto;
  height: 40px;
}

.site-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.site-actions--center {
  justify-content: center;
  text-align: center;
}

.site-actions--right {
  justify-content: flex-end;
  text-align: right;
}

.site-actions--stack {
  display: grid;
  justify-items: start;
}

.site-actions--stack.site-actions--center {
  justify-items: center;
}

.site-actions--stack.site-actions--right {
  justify-items: end;
}

.site-cta {
  text-align: center;
}

.site-cta h2 {
  margin-right: auto;
  margin-left: auto;
}

.site-html-content .site-section__inner {
  width: min(100% - 48px, 1180px);
}

.site-html-content--prose .site-section__inner,
.site-html-content:not(.site-html-content--wide) .site-section__inner {
  width: min(100% - 48px, 820px);
}

.site-html-content__body {
  color: #17202a;
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.7;
}

.site-html-content__body > *:first-child {
  margin-top: 0;
}

.site-html-content__body > *:last-child {
  margin-bottom: 0;
}

.site-html-content__body h1,
.site-html-content__body h2,
.site-html-content__body h3,
.site-html-content__body h4 {
  margin: 1.5em 0 0.55em;
  color: #0c1117;
  font-weight: 500;
  line-height: 1.15;
}

.site-html-content__body h1 {
  font-size: clamp(32px, 4vw, 56px);
}

.site-html-content__body h2 {
  font-size: clamp(26px, 2.6vw, 40px);
}

.site-html-content__body h3 {
  font-size: clamp(21px, 1.8vw, 28px);
}

.site-html-content__body p,
.site-html-content__body ul,
.site-html-content__body ol,
.site-html-content__body blockquote,
.site-html-content__body table {
  margin: 0 0 1.05em;
}

.site-html-content__body ul,
.site-html-content__body ol {
  padding-left: 1.4em;
}

.site-html-content__body a {
  color: #668600;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.site-html-content__body img,
.site-html-content__body video,
.site-html-content__body iframe {
  max-width: 100%;
}

.site-html-content__body table {
  width: 100%;
  border-collapse: collapse;
}

.site-html-content__body th,
.site-html-content__body td {
  border-bottom: 1px solid #d9e0e8;
  padding: 10px 0;
  text-align: left;
  vertical-align: top;
}

.news-article {
  color: #15191f;
}

.news-article h1 {
  margin: 0 0 10px;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 500;
  line-height: 1.08;
}

.news-article .news-article-date {
  margin: 0 0 clamp(18px, 2.4vw, 30px);
  color: #7c8793;
  font-size: clamp(14px, 0.95vw, 16px);
  font-weight: 400;
  line-height: 1.4;
}

.news-article .news-article-excerpt {
  margin-bottom: clamp(22px, 2.8vw, 36px);
  color: #3f4852;
  font-size: clamp(17px, 1.14vw, 20px);
  line-height: 1.55;
}

.news-article p:has(> img.news-article-image) {
  margin: clamp(24px, 3vw, 42px) 0 0;
}

.news-article > img.news-article-image,
.news-article p > img.news-article-image,
.xp-news-detail__image-grid img.news-article-image {
  display: block;
  width: 100%;
}

.xp-news-detail__block,
.xp-news-detail__caption {
  margin: 7px 0 clamp(20px, 2.4vw, 34px);
  color: #78828e;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.38;
}

.xp-news-detail__image-grid + .xp-news-detail__caption {
  margin-top: 7px;
}

.xp-news-detail__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 18px;
  margin-top: clamp(28px, 4vw, 56px);
  text-align: center;
}

.news-article .news-article-cta {
  --site-button-bg: #fff;
  --site-button-color: #111418;
  --site-button-border: #111418;
  min-width: clamp(176px, 12vw, 228px);
  min-height: 36px;
  padding: 0 12px;
  text-decoration: none;
}

.news-article .news-article-source,
.news-article .news-article-back {
  flex-basis: 100%;
  margin: 0;
  color: #7c8793;
  font-size: 13px;
  line-height: 1.35;
}

.news-article .news-article-source a,
.news-article .news-article-back a {
  color: inherit;
}

@media (max-width: 760px) {
  :root {
    --site-type-section-title: 26px;
    --site-type-section-title-compact: 24px;
    --site-type-body: 16px;
    --site-type-body-small: 15px;
    --site-type-card-title: 20px;
    --site-type-tab: 15px;
    --site-type-caption: 12px;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    min-height: 58px;
    padding: 0 18px 0 24px;
    column-gap: 12px;
  }

  .site-header__nav {
    display: none;
  }

  .site-header__actions {
    display: none;
  }

  .site-header__brand img {
    max-width: 108px;
    max-height: 18px;
  }

  .site-header__brand {
    grid-column: 1;
    justify-self: start;
  }

  .site-header__menu-button {
    display: grid;
    justify-self: end;
    grid-column: 3;
  }

  .site-footer__columns {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-bottom: 24px;
  }

  .site-footer__inner {
    width: min(100% - 40px, 520px);
    padding-top: 34px;
    padding-bottom: 26px;
  }

  .site-footer h2 {
    font-size: 14px;
  }

  .site-footer__columns a {
    margin-top: 8px;
    font-size: 14px;
  }

  .site-footer__middle {
    display: grid;
    gap: 16px;
    padding: 18px 0;
  }

  .site-footer__policy a,
  .site-footer__social a {
    font-size: 14px;
  }

  .site-footer__legal {
    display: grid;
    gap: 5px;
    padding-top: 16px;
    font-size: 14px;
  }

  .site-shell--has-sticky-footer {
    padding-bottom: 72px;
  }

  .site-sticky-footer {
    height: 72px;
  }

  .site-sticky-footer__links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-sticky-footer__links a,
  .site-sticky-footer__link--mobile {
    min-width: 0;
    min-height: 72px;
    display: grid !important;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 4px;
    font-size: 11px;
    text-align: center;
  }

  .site-sticky-footer__icon {
    font-size: 15px;
  }

  .site-hero {
    min-height: 86vh;
  }

  .site-hero__content {
    width: min(100% - 28px, 520px);
    padding-bottom: 44px;
  }

  .site-hero__subheadline {
    font-size: var(--site-type-body);
  }

  :is(.site-hero--layout-vehicle-intro, .site-hero--layout-x9-first) {
    min-height: 86vh;
  }

  :is(.site-hero--layout-vehicle-intro, .site-hero--layout-x9-first) .site-hero__content {
    width: min(100% - 28px, 520px);
    min-height: 86vh;
    padding: 82px 0 28px;
  }

  :is(.site-hero--layout-vehicle-intro, .site-hero--layout-x9-first) .site-hero__headline {
    font-size: 21px;
    font-weight: 600;
    line-height: 1;
  }

  :is(.site-hero--layout-vehicle-intro, .site-hero--layout-x9-first) .site-hero__headline::before {
    width: 15px;
    height: 15px;
    right: calc(100% + 1px);
    bottom: calc(100% - 4px);
  }

  :is(.site-hero--layout-vehicle-intro, .site-hero--layout-x9-first) .site-hero__subheadline {
    margin-top: 5px;
    font-size: 14px;
    font-weight: 100;
    line-height: 1.15;
  }

  :is(.site-hero--layout-vehicle-intro, .site-hero--layout-x9-first) .site-hero__stats {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-bottom: 14px;
    justify-content: initial;
  }

  :is(.site-hero--layout-vehicle-intro, .site-hero--layout-x9-first) .site-hero__stats div {
    min-width: 0;
    justify-items: center;
  }

  :is(.site-hero--layout-vehicle-intro, .site-hero--layout-x9-first) .site-hero__stats strong {
    font-size: 10px;
    font-weight: 500;
  }

  :is(.site-hero--layout-vehicle-intro, .site-hero--layout-x9-first) .site-hero__stats span {
    font-size: 7.5px;
    line-height: 1.15;
  }

  :is(.site-hero--layout-vehicle-intro, .site-hero--layout-x9-first) .site-hero__actions {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  :is(.site-hero--layout-vehicle-intro, .site-hero--layout-x9-first) .site-button {
    width: 100%;
    min-width: 0;
    min-height: 30px;
    padding: 0 4px;
    font-size: 9px;
    font-weight: 400;
  }

  .site-section {
    padding: 58px 0;
  }

  .site-section--space-flush {
    padding-top: 42px;
    padding-bottom: 46px;
  }

  .site-section--space-tight {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .site-section--space-normal {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .site-section--space-roomy {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .site-section--gap-before-small {
    margin-top: 28px;
  }

  .site-section--gap-before-medium {
    margin-top: 42px;
  }

  .site-section--gap-before-large {
    margin-top: 58px;
  }

  .site-section--gap-after-small {
    margin-bottom: 28px;
  }

  .site-section--gap-after-medium {
    margin-bottom: 42px;
  }

  .site-section--gap-after-large {
    margin-bottom: 58px;
  }

  .site-section__inner {
    width: min(100% - 28px, 520px);
  }

  .site-feature-grid,
  .site-page-collection,
  .site-showcase__grid,
  .site-media-text,
  .site-spec-table__row {
    grid-template-columns: 1fr;
  }

  .site-spec-sheet {
    gap: 16px;
  }

  .site-spec-sheet__header {
    gap: 8px;
  }

  .site-spec-sheet__tabs {
    width: 100%;
    grid-auto-columns: minmax(0, 1fr);
  }

  .site-spec-sheet__tabs button {
    min-width: 0;
    min-height: 34px;
    font-size: clamp(11px, 3vw, 13px);
  }

  .site-spec-sheet__body {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .site-spec-table {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .site-spec-table dt {
    font-size: clamp(11px, 2.8vw, 12px);
  }

  .site-spec-table dd {
    font-size: clamp(13px, 3.4vw, 15px);
  }

  .site-spec-sheet .site-actions {
    display: grid;
  }

  .site-spec-sheet .site-button {
    width: 100%;
    min-height: 36px;
    font-size: clamp(13px, 3.45vw, 15px);
  }

  [data-block-id="x9-specifications"].site-section {
    padding-top: 24px;
    padding-bottom: 34px;
  }

  [data-block-id="x9-specifications"] .site-section__inner {
    width: min(100% - 48px, 760px);
  }

  [data-block-id="x9-specifications"] .site-spec-sheet {
    gap: 18px;
  }

  [data-block-id="x9-specifications"] .site-spec-sheet__header {
    gap: 6px;
  }

  [data-block-id="x9-specifications"] .site-spec-sheet__header h2 {
    font-size: 20px;
  }

  [data-block-id="x9-specifications"] .site-spec-sheet__tabs button {
    min-height: 30px;
    font-size: 12px;
  }

  [data-block-id="x9-specifications"] .site-spec-sheet__body {
    gap: 44px;
  }

  [data-block-id="x9-specifications"] .site-spec-sheet__media img {
    width: min(76%, 560px);
    margin: 0 auto;
  }

  [data-block-id="x9-specifications"] .site-spec-table {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 24px;
  }

  [data-block-id="x9-specifications"] .site-spec-table__row {
    gap: 4px;
  }

  [data-block-id="x9-specifications"] .site-spec-table dt {
    color: #777;
    font-size: clamp(12px, 3.15vw, 15px);
    line-height: 1.16;
    letter-spacing: 0;
  }

  [data-block-id="x9-specifications"] .site-spec-table dd {
    color: #111;
    font-size: clamp(13px, 3.45vw, 16px);
    font-weight: 600;
    line-height: 1.18;
  }

  [data-block-id="x9-specifications"] .site-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 34px;
  }

  [data-block-id="x9-specifications"] .site-button {
    min-height: 34px;
    font-size: clamp(11px, 3vw, 13px);
  }

  [data-block-id="x9-app"] .site-media-text__copy,
  [data-block-id="l03-app"] .site-media-text__copy {
    order: 2;
    justify-items: start;
  }

  [data-block-id="x9-app"] .site-actions,
  [data-block-id="l03-app"] .site-actions {
    display: flex;
    margin-top: 18px;
  }

  [data-block-id="x9-app"] .site-button--store,
  [data-block-id="x9-app"] .site-button--image,
  [data-block-id="l03-app"] .site-button--store,
  [data-block-id="l03-app"] .site-button--image {
    width: auto;
  }

  [data-block-id="x9-app"] .site-button--store img,
  [data-block-id="x9-app"] .site-button--image img,
  [data-block-id="l03-app"] .site-button--store img,
  [data-block-id="l03-app"] .site-button--image img {
    height: 36px;
  }

  [data-block-id="x9-disclaimers"].site-section--space-tight {
    padding-top: 8px;
    padding-bottom: 28px;
  }

  .site-showcase--thumb-overlay .site-section__inner {
    width: min(100% - 28px, 520px);
  }

  .site-color-swatches {
    gap: 0;
    padding: 0 0 12px;
  }

  [data-block-id="x9-colors"].site-section--space-flush {
    padding-top: 18px;
  }

  [data-block-id="x9-colors"].site-section--gap-before-small {
    margin-top: 14px;
  }

  [data-block-id="x9-colors"] .site-section__header {
    margin-bottom: 0;
  }

  [data-block-id="x9-cabin"] .site-section__header {
    margin-bottom: 22px;
  }

  [data-block-id="x9-cabin"] .site-color-swatches__vehicle-frame {
    width: min(100% - 28px, 520px);
    border-radius: 4px;
  }

  [data-block-id="x9-cabin"] .site-color-swatches__stage picture {
    width: 100%;
  }

  [data-block-id="x9-cabin"] .site-color-swatches__stage {
    margin-top: 0;
  }

  [data-block-id="x9-cabin"] .site-color-swatches__stage img {
    height: auto;
  }

  [data-block-id="x9-cabin"] .site-color-swatches__nav {
    width: min(100% - 28px, 266px);
    max-width: min(100% - 28px, 266px);
    justify-content: center;
    gap: 12px;
    margin-top: 22px;
  }

  .site-color-swatches__stage picture {
    width: 130%;
  }

  .site-color-swatches__stage {
    margin-top: -22px;
  }

  .site-color-swatches__stage img {
    height: 40.6vh;
  }

  .site-color-swatches__watermark {
    top: 24%;
    left: 16%;
    font-size: 96px;
  }

  .site-color-swatches__nav {
    width: min(100% - 28px, 420px);
    max-width: calc(100% - 28px);
    gap: 0;
    margin-top: 10px;
    overflow-x: visible;
    justify-content: space-between;
    padding: 0 4px 8px;
    scrollbar-width: none;
  }

  .site-color-swatches__mobile-label {
    position: relative;
    z-index: 5;
    display: block;
    margin: -38px 0 8px;
    color: #1c1c1c;
    font-size: 17px;
    line-height: 1;
    text-align: center;
  }

  .site-section--dark .site-color-swatches__mobile-label {
    color: #fff;
  }

  .site-product-360__viewer img {
    height: min(92vw, 560px);
  }

  .site-product-360__sprite {
    width: min(100%, var(--mobile-frame-width, 450px));
    aspect-ratio: var(--mobile-frame-aspect-width, 450) / var(--mobile-frame-aspect-height, 350);
    background-image: var(--mobile-sprite);
  }

  .site-product-360__mouse-icon {
    display: none;
  }

  .site-product-360__viewer .site-product-360__mobile-indicator {
    position: relative;
    z-index: 2;
    display: block;
    width: 52px;
    height: auto;
    margin: 8px auto 0;
  }

  .site-product-360__hint {
    right: 50%;
    bottom: 14px;
    transform: translateX(50%);
    padding: 8px 12px;
    font-size: 11px;
  }

  .site-product-360__watermark {
    font-size: clamp(76px, 24vw, 140px);
  }

  .site-color-swatches__nav::-webkit-scrollbar {
    display: none;
  }

  .site-color-swatches__nav button {
    flex: 0 0 auto;
    padding: 4px;
  }

  .site-color-swatches__nav button.active {
    gap: 0;
    padding: 4px;
    background: #f5f5f5;
    box-shadow: 0 8px 22px rgb(0 0 0 / 14%);
  }

  .site-section--dark .site-color-swatches__nav button.active {
    background: rgb(255 255 255 / 14%);
    box-shadow: 0 8px 22px rgb(0 0 0 / 18%);
  }

  .site-color-swatches__nav button.active .site-color-swatches__label {
    display: none;
  }

  .site-color-swatches__chip {
    width: 23px;
    height: 23px;
  }

  .site-color-swatches__label {
    font-size: 8px;
  }

  [data-block-id="x9-cabin"] .site-color-swatches__nav {
    width: min(100% - 28px, 266px);
    max-width: min(100% - 28px, 266px);
    justify-content: space-between;
    gap: 0;
    margin-top: 30px;
  }

  [data-block-id="x9-cabin"] .site-color-swatches__mobile-label {
    margin: 12px 0 8px;
    color: #1c1c1c;
  }

  [data-block-id="x9-cabin"] .site-color-swatches__nav button.active .site-color-swatches__label {
    display: none;
  }

  .site-showcase--tabs .site-section__inner {
    width: 100%;
  }

  .site-showcase-tabs__media img,
  .site-showcase-tabs__media video {
    aspect-ratio: 1.4 / 1;
  }

  .site-showcase--media-tall .site-showcase-tabs__media img,
  .site-showcase--media-tall .site-showcase-tabs__media video {
    height: auto;
    aspect-ratio: 1.4 / 1;
  }

  .site-showcase-tabs__nav {
    display: flex;
    grid-template-columns: none;
    width: min(100% - 28px, 520px);
    align-items: stretch;
  }

  .site-showcase-tabs__nav button {
    flex: 1 1 0;
    min-width: 0;
    min-height: 42px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 7px 4px 0;
    text-align: center;
    font-size: 10px;
    line-height: 1.08;
  }

  .site-showcase-tabs__copy {
    width: min(100% - 28px, 520px);
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.28;
    text-align: left;
  }

  [data-block-id="x9-seating-videos"].site-showcase--tabs .site-section__inner {
    width: min(100% - 28px, 520px);
  }

  [data-block-id="x9-seating-videos"] .site-section__header {
    margin-bottom: 28px;
  }

  [data-block-id="x9-seating-videos"] .site-section__header h2 {
    font-size: var(--site-type-section-title);
  }

  [data-block-id="x9-seating-videos"] .site-showcase-tabs__media img,
  [data-block-id="x9-seating-videos"] .site-showcase-tabs__media video,
  [data-block-id="x9-seating-videos"].site-showcase--media-tall .site-showcase-tabs__media img,
  [data-block-id="x9-seating-videos"].site-showcase--media-tall .site-showcase-tabs__media video {
    aspect-ratio: 1.45 / 1;
  }

  [data-block-id="x9-seating-videos"] .site-showcase-tabs__nav {
    width: 100%;
    margin-top: 6px;
    grid-template-columns: none;
  }

  [data-block-id="x9-seating-videos"] .site-showcase-tabs__nav button {
    min-height: 30px;
    padding: 6px 3px 0;
    font-size: clamp(8px, 2.1vw, 10px);
    line-height: 1.08;
    white-space: normal;
  }

  [data-block-id="x9-seating-videos"] .site-showcase-tabs__copy {
    width: 100%;
    margin-top: 7px;
    font-size: clamp(10px, 2.55vw, 12px);
    line-height: 1.22;
    text-align: left;
  }

  [data-block-id="x9-voice-control"] .site-showcase-tabs__nav,
  [data-block-id="x9-driver-assistance-details"] .site-showcase-tabs__nav {
    margin-top: 6px;
    grid-template-columns: none;
  }

  [data-block-id="x9-voice-control"] .site-showcase-tabs__nav button,
  [data-block-id="x9-driver-assistance-details"] .site-showcase-tabs__nav button {
    min-height: 30px;
    padding: 6px 3px 0;
    font-size: clamp(8px, 2.1vw, 10px);
    line-height: 1.08;
    white-space: normal;
  }

  [data-block-id="x9-voice-control"] .site-showcase-tabs__copy,
  [data-block-id="x9-driver-assistance-details"] .site-showcase-tabs__copy {
    margin-top: 7px;
    font-size: clamp(10px, 2.55vw, 12px);
    line-height: 1.22;
  }

  .site-showcase--fade-thumbs {
    padding-bottom: 66px;
  }

  .site-showcase-fade__media,
  .site-showcase-fade__media img {
    min-height: 62vh;
    height: 62vh;
  }

  .site-showcase-fade__media::after {
    background: linear-gradient(180deg, rgb(255 255 255 / 0%) 56%, #fff 96%);
  }

  .site-showcase-fade__copy {
    top: 34px;
    width: min(100% - 28px, 520px);
    margin: 0;
    text-align: center;
  }

  .site-showcase-fade__copy h2 {
    font-size: var(--site-type-section-title);
  }

  .site-showcase-fade__copy p:not(.site-eyebrow) {
    max-width: 320px;
    font-size: var(--site-type-body);
  }

  .site-showcase--fade-thumbs .site-showcase__grid {
    width: min(100% - 28px, 520px);
    margin-top: -56px;
    gap: 18px;
  }

  .site-showcase--fade-thumbs .site-showcase-card img {
    aspect-ratio: 1.326 / 1;
  }

  .site-showcase--fade-thumbs .site-showcase-card__copy {
    min-height: 42px;
    padding: 24px 14px 11px;
  }

  .site-showcase--fade-thumbs .site-showcase-card__copy h3 {
    font-size: var(--site-type-caption);
  }

  .site-showcase--fade-thumbs.site-showcase--thumb-overlay .site-showcase-card__copy {
    min-height: 42px;
    padding: 24px 14px 11px;
  }

  .site-showcase--fade-thumbs.site-showcase--thumb-overlay .site-section__inner {
    width: 100%;
  }

  .site-showcase--fade-thumbs.site-showcase--thumb-overlay .site-showcase__grid {
    width: min(100% - 28px, 520px);
    margin-top: -56px;
  }

  .site-showcase--fade-thumbs.site-showcase--thumb-overlay .site-showcase-card img {
    aspect-ratio: 708 / 534;
    object-fit: contain;
  }

  .site-showcase--fade-thumbs.site-showcase--thumb-overlay .site-showcase-card__copy h3 {
    font-size: var(--site-type-caption);
  }

  [data-block-id="x9-exterior"].site-showcase--mobile-slider {
    padding-top: 0;
    padding-bottom: 72px;
  }

  [data-block-id="x9-exterior"].site-showcase--mobile-slider .site-showcase-fade__media,
  [data-block-id="x9-exterior"].site-showcase--mobile-slider .site-showcase-fade__media img {
    min-height: 90vh;
    height: 90vh;
  }

  [data-block-id="x9-exterior"].site-showcase--mobile-slider .site-showcase-fade__media img {
    object-position: top center;
  }

  [data-block-id="x9-exterior"].site-showcase--mobile-slider .site-showcase-fade__copy p:not(.site-eyebrow) {
    margin-top: 5px;
  }

  [data-block-id="x9-exterior"].site-showcase--mobile-slider .site-showcase__carousel {
    position: relative;
    z-index: 1;
    margin-top: -36px;
  }

  [data-block-id="x9-exterior"].site-showcase--mobile-slider .site-showcase__track {
    width: 100%;
    display: flex;
    grid-template-columns: none;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    cursor: grab;
    touch-action: pan-y;
  }

  [data-block-id="x9-exterior"].site-showcase--mobile-slider .site-showcase__track::-webkit-scrollbar {
    display: none;
  }

  [data-block-id="x9-exterior"].site-showcase--mobile-slider .site-showcase-card {
    flex: 0 0 100%;
    scroll-snap-align: center;
  }

  [data-block-id="x9-exterior"].site-showcase--mobile-slider .site-showcase-card img {
    width: 100%;
    aspect-ratio: 1.42 / 1;
    object-fit: cover;
  }

  [data-block-id="x9-exterior"].site-showcase--mobile-slider .site-showcase-card__copy {
    min-height: 82px;
    padding: 36px 24px 22px;
    background: linear-gradient(180deg, rgb(0 0 0 / 0%) 0%, rgb(0 0 0 / 70%) 82%, rgb(0 0 0 / 88%) 100%) !important;
  }

  [data-block-id="x9-exterior"].site-showcase--mobile-slider .site-showcase-card__copy h3 {
    font-size: clamp(12px, 3.3vw, 15px);
    font-weight: 400;
    line-height: 1.18;
  }

  [data-block-id="x9-exterior"].site-showcase--mobile-slider .site-showcase__arrow {
    top: 50%;
    display: grid;
    color: #fff;
    background: rgb(0 0 0 / 46%);
    transform: translateY(-50%);
  }

  [data-block-id="x9-exterior"].site-showcase--mobile-slider .site-showcase__dots {
    position: absolute;
    top: calc(100% + 28px);
    right: 0;
    left: 0;
    display: flex;
    margin: 0;
  }

  .site-showcase--thumb-overlay .site-showcase__grid {
    gap: 22px;
  }

  .site-showcase--thumb-overlay .site-showcase-card img {
    aspect-ratio: 1.72 / 1;
  }

  .site-showcase--thumb-overlay .site-showcase-card__copy {
    min-height: 56px;
    padding: 12px 16px;
  }

  .site-showcase--thumb-overlay .site-showcase-card__copy h3 {
    font-size: var(--site-type-card-title);
  }

  .site-showcase--thumb-overlay .site-showcase__grid {
    gap: 16px;
  }

  .site-showcase--thumb-overlay.site-showcase--mobile-slider {
    padding-top: 0;
    padding-bottom: 58px;
  }

  .site-showcase--thumb-overlay.site-showcase--mobile-slider .site-section__inner {
    width: 100%;
  }

  .site-showcase--thumb-overlay.site-showcase--mobile-slider .site-showcase__carousel {
    position: relative;
  }

  .site-showcase--thumb-overlay.site-showcase--mobile-slider .site-showcase__track {
    display: flex;
    grid-template-columns: none;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    cursor: grab;
    touch-action: pan-y;
  }

  .site-showcase--thumb-overlay.site-showcase--mobile-slider .site-showcase__track::-webkit-scrollbar {
    display: none;
  }

  .site-showcase--thumb-overlay.site-showcase--mobile-slider .site-showcase__track.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
  }

  .site-showcase--thumb-overlay.site-showcase--mobile-slider .site-showcase-card {
    flex: 0 0 100%;
    min-height: 0;
    scroll-snap-align: center;
    border: 0;
    background: #111;
  }

  .site-showcase--thumb-overlay.site-showcase--mobile-slider .site-showcase-card picture {
    display: block;
  }

  .site-showcase--thumb-overlay.site-showcase--mobile-slider .site-showcase-card img {
    width: 100%;
    aspect-ratio: 2.08 / 1;
    object-fit: cover;
  }

  .site-showcase--thumb-overlay.site-showcase--mobile-slider .site-showcase-card__copy {
    min-height: 92px;
    align-items: end;
    padding: 42px 28px 24px;
    background: linear-gradient(180deg, rgb(0 0 0 / 0%) 0%, rgb(0 0 0 / 72%) 82%, rgb(0 0 0 / 88%) 100%) !important;
  }

  .site-showcase--thumb-overlay.site-showcase--mobile-slider .site-showcase-card__copy h3 {
    color: #fff;
    font-size: clamp(18px, 5.2vw, 24px);
    font-weight: 500;
    line-height: 1.15;
  }

  .site-showcase--thumb-overlay.site-showcase--mobile-slider .site-showcase__arrow {
    top: 50%;
    display: grid;
    width: 52px;
    min-width: 52px;
    height: 52px;
    min-height: 52px;
    color: #fff;
    background: rgb(0 0 0 / 46%);
    transform: translateY(-50%);
  }

  .site-showcase--thumb-overlay.site-showcase--mobile-slider .site-showcase__arrow--prev {
    left: 22px;
  }

  .site-showcase--thumb-overlay.site-showcase--mobile-slider .site-showcase__arrow--next {
    right: 22px;
  }

  .site-showcase--thumb-overlay.site-showcase--mobile-slider .site-showcase__dots {
    position: absolute;
    top: calc(100% + 28px);
    right: 0;
    left: 0;
    display: flex;
    justify-content: center;
    margin: 0;
  }

  .site-showcase--thumb-overlay.site-showcase--mobile-slider .site-showcase__dots button {
    width: 22px;
    min-width: 22px;
    height: 3px;
    min-height: 3px;
  }

  .site-showcase--thumb-overlay .site-showcase-card__copy {
    min-height: 0;
    padding: 8px 10px 10px;
    color: #fff;
    background: transparent !important;
    box-shadow: none;
  }

  .site-showcase--thumb-overlay .site-showcase-card__copy h3 {
    color: #fff;
    font-size: clamp(11px, 2.8vw, 13px);
    line-height: 1.16;
    text-shadow: none;
  }

  .site-showcase--slider .site-showcase__track {
    --slide-width: 88vw;
    display: flex;
    grid-template-columns: none;
    gap: 18px;
    align-items: flex-start;
    padding: 0 max(14px, calc((100vw - var(--slide-width)) / 2));
  }

  .site-showcase--slider {
    padding-top: 46px;
    padding-bottom: 54px;
  }

  .site-showcase--slider .site-showcase-card {
    flex-basis: var(--slide-width);
    min-height: auto;
    justify-content: flex-start;
  }

  .site-showcase--slider .site-showcase-card picture {
    order: 1;
  }

  .site-showcase--slider .site-showcase-card img,
  .site-showcase--slider .site-showcase-card__video {
    max-height: none;
    margin-bottom: 16px;
  }

  .site-showcase--slider .site-showcase-card__copy {
    order: 2;
    padding: 0;
    text-align: left;
  }

  .site-showcase--slider .site-showcase-card__copy h3 {
    font-size: var(--site-type-section-title-compact);
  }

  .site-showcase--slider .site-showcase-card__copy p {
    margin: 0;
    font-size: var(--site-type-body-small);
  }

  .site-showcase--slider .site-showcase-card--copy-overlay picture,
  .site-showcase--slider .site-showcase-card--copy-overlay-bottom picture,
  .site-showcase--slider .site-showcase-card--copy-overlay-center picture {
    order: 1;
  }

  .site-showcase--slider .site-showcase-card--copy-overlay img,
  .site-showcase--slider .site-showcase-card--copy-overlay-bottom img,
  .site-showcase--slider .site-showcase-card--copy-overlay-center img,
  .site-showcase--slider .site-showcase-card--copy-overlay .site-showcase-card__video,
  .site-showcase--slider .site-showcase-card--copy-overlay-bottom .site-showcase-card__video,
  .site-showcase--slider .site-showcase-card--copy-overlay-center .site-showcase-card__video {
    height: min(620px, 76vh);
    margin-bottom: 0;
  }

  .site-showcase--slider .site-showcase-card--copy-overlay .site-showcase-card__copy,
  .site-showcase--slider .site-showcase-card--copy-overlay-bottom .site-showcase-card__copy,
  .site-showcase--slider .site-showcase-card--copy-overlay-center .site-showcase-card__copy {
    right: 18px;
    bottom: 22px;
    left: 18px;
    width: auto;
    text-align: left;
    transform: none;
  }

  .site-showcase--slider.site-showcase--slides-full .site-section__inner {
    width: 100%;
  }

  .site-showcase--slider.site-showcase--slides-full .site-showcase-card {
    flex-basis: 100%;
  }

  .site-showcase--slider.site-showcase--slides-full .site-showcase__track {
    padding: 8px 0;
  }

  .site-showcase__arrow {
    top: 34vw;
    width: 28px;
    min-width: 28px;
    height: 28px;
    min-height: 28px;
    font-size: 0;
  }

  .site-showcase__arrow--prev {
    left: 8px;
  }

  .site-showcase__arrow--next {
    right: 8px;
  }

  .site-showcase-tabs__frame .site-showcase__arrow {
    top: 50%;
  }

  .site-showcase__dots {
    display: flex;
    gap: 10px;
  }

  .site-showcase--mobile-slider .site-showcase__dots button {
    width: 22px;
    min-width: 22px;
    height: 3px;
    min-height: 3px;
  }

  .site-section--banner {
    padding: 0;
  }

  .site-section--banner > .site-section__inner {
    width: 100%;
  }

  .site-media-text--banner {
    min-height: 82vh;
  }

  .site-media-text--image-below {
    gap: 28px;
  }

  .site-media-text--image-below .site-media-text__copy {
    justify-items: start;
    text-align: left;
  }

  .site-media-text--image-below .site-media-text__copy h2 {
    font-size: var(--site-type-section-title);
  }

  .site-media-text--image-below .site-media-text__copy p {
    font-size: var(--site-type-body);
  }

  .site-media-text--image-below .site-media-text__media img,
  .site-media-text--image-below .site-media-text__media video {
    aspect-ratio: 1.45 / 1;
  }

  .site-media-text--wide-media {
    gap: 28px;
  }

  .site-media-text--wide-media .site-media-text__copy {
    justify-items: start;
    width: min(100% - 28px, 520px);
    text-align: left;
  }

  .site-media-text--wide-media .site-media-text__copy h2 {
    font-size: var(--site-type-section-title);
  }

  .site-media-text--wide-media .site-media-text__copy p {
    font-size: var(--site-type-body);
  }

  .site-media-text--wide-media .site-media-text__media {
    width: min(100% - 28px, 520px);
  }

  [data-block-id="x9-dual-chamber-video"] .site-media-text--wide-media .site-media-text__media {
    width: min(100% - 28px, 520px);
  }

  .site-media-text--wide-media .site-media-text__media video,
  .site-media-text--wide-media .site-media-text__media img {
    aspect-ratio: 1.45 / 1;
  }

  .site-media-text--banner .site-media-text__media img,
  .site-media-text--banner .site-media-text__media video {
    height: 82vh;
  }

  .site-section--media-short .site-media-text--banner {
    min-height: 68vh;
  }

  .site-section--media-short .site-media-text--banner .site-media-text__media img,
  .site-section--media-short .site-media-text--banner .site-media-text__media video {
    height: 68vh;
  }

  .site-section--media-hero .site-media-text--banner {
    min-height: 82vh;
  }

  .site-section--media-hero .site-media-text--banner .site-media-text__media img,
  .site-section--media-hero .site-media-text--banner .site-media-text__media video {
    height: 82vh;
  }

  .site-media-text--banner .site-media-text__copy,
  .site-media-text--banner.site-media-text--copy-center .site-media-text__copy,
  .site-media-text--banner.site-media-text--copy-bottom-center .site-media-text__copy,
  .site-media-text--banner.site-media-text--copy-top-center .site-media-text__copy,
  .site-media-text--banner.site-media-text--copy-top-left .site-media-text__copy {
    width: min(100% - 32px, 520px);
    align-self: end;
    justify-self: center;
    margin: 0 0 38px;
    text-align: left;
  }

  [data-block-id="x9-driver-assistance"] .site-media-text--banner.site-media-text--copy-top-center .site-media-text__copy {
    width: min(100% - 32px, 520px);
    display: grid;
    align-self: start;
    justify-self: center;
    justify-items: center;
    margin: 72px 0 0;
    text-align: center;
  }

  [data-block-id="x9-driver-assistance"] .site-media-text--banner.site-media-text--copy-top-center .site-media-text__copy h2,
  [data-block-id="x9-driver-assistance"] .site-media-text--banner.site-media-text--copy-top-center .site-media-text__copy p {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .site-media-text--banner .site-media-text__copy h2 {
    font-size: var(--site-type-section-title);
  }

  .site-media-text--left .site-media-text__copy {
    order: 0;
  }
}

}
