:root {
  --cta-bg: #006dc7;
  --cta-hover: #0e4180;
  --main-color: #262626;
  --text-muted: #767676;
  --nav-bg: #f8f8f8;
  --nav-border: #e7e7e7;
}

@font-face {
  font-family: "ChevySans";
  src: url("https://cdn.dealeron.com/assets/fonts/chevy-sans/ChevySans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ChevySans";
  src: url("https://cdn.dealeron.com/assets/fonts/chevy-sans/ChevySans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

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

body {
  margin: 0;
  font-family: "ChevySans", Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333;
  background: #fff;
}

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

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

.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}

.header-wrapper {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

header {
  background: #fff;
  color: #222;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}

.header-left,
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logos {
  display: flex;
  align-items: center;
  gap: 10px;
}

.manu-logo img {
  height: 28px;
  width: auto;
}

.dealer-logo img {
  max-height: 35px;
}

.logo-carbravo img {
  max-height: 28px;
}

.phone-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 12px;
  line-height: 1.5;
}

.phone-list .tel-label {
  font-weight: 700;
  margin-right: 4px;
}

.phone-list .sales-line {
  font-size: 14px;
  font-weight: 700;
}

.icon-links ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 14px;
}

.icon-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  text-transform: uppercase;
  color: #222;
}

.icon-link i {
  font-size: 18px;
}

.navbar {
  background: var(--nav-bg);
  border-top: 1px solid var(--nav-border);
  border-bottom: 1px solid var(--nav-border);
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu > li > a,
.nav-menu > li > button {
  display: block;
  padding: 15px 14px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #333;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.nav-menu > li > a:hover,
.nav-menu > li > button:hover {
  color: var(--cta-bg);
}

.nav-menu .home-link {
  font-size: 16px;
}

.quick-intro {
  display: flex;
  min-height: 420px;
}

.quick-intro-col {
  width: 50%;
}

.col-left {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.col-left video,
.col-left .video-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.video-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 30px 24px;
}

.shop-header-line-one {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  margin: 0;
}

.shop-header-line-two {
  color: #fff;
  font-size: 16px;
  margin: 4px 0 16px;
}

.search-nav {
  display: flex;
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  justify-content: center;
  gap: 8px;
}

.search-nav button {
  background: none;
  border: none;
  color: #fff;
  font-size: 14px;
  padding: 0 8px 8px;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
}

.search-nav li.active button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #fff;
}

.search-panel {
  display: none;
}

.search-panel.active {
  display: block;
}

.vehicle-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.vehicle-filter {
  flex: 1;
  min-width: 140px;
  background: #fff;
  border: 1px solid #dcdce2;
  height: 69px;
  position: relative;
  padding: 8px 12px;
  border-radius: 8px;
}

.vehicle-filter label {
  display: block;
  font-size: 12px;
  color: #767676;
  margin-bottom: 4px;
}

.vehicle-filter select,
.vehicle-filter input {
  width: 100%;
  border: none;
  background: transparent;
  font-size: 16px;
  color: #222;
  appearance: none;
  outline: none;
}

.vehicle-filter::after {
  content: "\f107";
  font-family: FontAwesome;
  position: absolute;
  right: 12px;
  bottom: 10px;
  color: #a5a5a5;
  font-size: 18px;
  pointer-events: none;
}

.search-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.btn-reset {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  text-decoration: underline;
}

.btn-search {
  background: var(--cta-bg);
  border: 2px solid var(--cta-bg);
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  min-width: 130px;
  min-height: 43px;
  padding: 8px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-search:hover {
  background: var(--cta-hover);
  border-color: var(--cta-hover);
}

.keyword-search {
  display: flex;
  gap: 10px;
}

.keyword-search input {
  flex: 1;
  height: 46px;
  border: none;
  border-radius: 8px;
  padding: 0 12px;
  font-size: 16px;
}

.budget-inputs {
  display: flex;
  gap: 10px;
}

.budget-inputs .vehicle-filter {
  flex: 1;
}

.col-right {
  display: flex;
  flex-wrap: wrap;
  background: #333;
}

.quick-intro-item {
  width: 50%;
  position: relative;
  border-left: 4px solid #fff;
}

.quick-intro-item-1 {
  width: 100%;
  border-left: none;
  border-bottom: 4px solid #fff;
}

.carousel-section {
  position: relative;
  aspect-ratio: 3.2;
  overflow: hidden;
}

.carousel-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(0, 0, 0, 0.35);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  cursor: pointer;
}

.carousel-prev { left: 8px; }
.carousel-next { right: 8px; }

.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 3;
}

.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.carousel-indicators button.active {
  background: #fff;
}

.quick-intro-link {
  display: block;
  position: relative;
  height: 100%;
  min-height: 180px;
  overflow: hidden;
}

.quick-intro-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.25s cubic-bezier(0.335, 0.015, 0.46, 0.995);
}

.quick-intro-link:hover .quick-intro-image {
  transform: scale(1.08);
}

.quick-intro-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 50px 0 35px 35px;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
  color: #fff;
  z-index: 2;
}

.quick-intro-text h4 {
  margin: 0;
  font-size: 18px;
  text-transform: uppercase;
}

.btn-cta {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 24px;
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  font-size: 16px;
  transition: background 0.2s;
}

.btn-cta:hover {
  background: rgba(255, 255, 255, 0.15);
}

.lineup-section {
  padding: 40px 0 30px;
  text-align: center;
}

.content-section--silverado-1500 {
  padding: 60px 0 120px;
  background: #4b4b4b;
  color: #fff;
}

.content-section--silverado-1500 .container {
  max-width: 1170px;
}

.silverado-1500-section__copy {
  max-width: 420px;
}

.silverado-1500-section__title {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.silverado-1500-section__text {
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}

.silverado-1500-section__cta {
  display: inline-block;
  margin-top: 28px;
  padding: 12px 28px;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background 0.2s ease, color 0.2s ease;
}

.silverado-1500-section__cta:hover {
  background: #fff;
  color: #222;
}

@media (min-width: 768px) {
  .content-section--silverado-1500 {
    padding: 85px 0 225px;
    background:
      linear-gradient(1250deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.1)),
      url("https://www.rydellchev.com/static/dealer-30751/bg-silverado.jpg") no-repeat scroll center center / cover;
  }
}

.lineup-section h2 {
  margin: 0 0 20px;
  font-size: 30px;
  text-transform: uppercase;
  color: var(--main-color);
}

.lineup-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  gap: 4px;
}

.lineup-tabs li {
  display: inline-flex;
  align-items: center;
}

.lineup-tabs a {
  display: block;
  padding: 10px 15px;
  font-size: 18px;
  color: #222;
  position: relative;
}

.lineup-tabs li.active a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--cta-bg);
}

.lineup-tabs .divider {
  color: #767676;
  padding: 0 4px;
}

.lineup-grid {
  display: none;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.lineup-grid.active {
  display: grid;
}

.lineup-grid a {
  color: #333;
}

.lineup-grid img {
  margin: 0 auto;
  display: block;
}

.lineup-grid p {
  margin: 8px 0 0;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .quick-intro {
    flex-wrap: wrap;
  }

  .quick-intro-col {
    width: 100%;
  }

  .col-right {
    order: -1;
  }

  .col-left video {
    display: none;
  }

  .col-left {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)),
      url("https://www.rydellchev.com/static/brand-chevrolet/homepage/videos/Latest/bgVideo.jpg") center / cover no-repeat;
  }

  .quick-intro-item {
    width: 50%;
    border-top: 4px solid #fff;
    border-left: none;
  }

  .quick-intro-item-1 {
    width: 100%;
  }

  .header-right .phone-list,
  .header-right .icon-links {
    display: none;
  }

  .lineup-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .promo-ribbon {
    flex-direction: column;
  }

  .ribbon-item {
    border-right: none;
    border-bottom: 4px solid #fff;
  }

  .ribbon-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 767px) {
  .vehicle-filters,
  .lineup-grid {
    grid-template-columns: 1fr;
  }

  .lineup-grid.active {
    display: grid;
  }

  .nav-menu {
    overflow-x: auto;
  }
}

@font-face {
  font-family: "upgrade";
  src: url("../fonts/Upgrade-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "upgrade";
  src: url("../fonts/Upgrade-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

.hero-title {
  margin: 0 0 20px;
  text-align: center;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
}

.promo-ribbon {
  display: flex;
  width: 100%;
  border-top: 4px solid #fff;
}

.ribbon-item {
  flex: 1;
  position: relative;
  min-height: 180px;
  overflow: hidden;
  border-right: 4px solid #fff;
}

.ribbon-item:last-child {
  border-right: none;
}

.ribbon-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.25s cubic-bezier(0.335, 0.015, 0.46, 0.995);
}

.ribbon-item:hover .ribbon-image {
  transform: scale(1.06);
}

.ribbon-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 24px 28px;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.58) 38%,
    rgba(0, 0, 0, 0.2) 58%,
    rgba(0, 0, 0, 0) 78%
  );
  color: #fff;
  z-index: 2;
}

.ribbon-text .btn-cta {
  background: #f05151;
  border-color: #f05151;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.ribbon-text .btn-cta:hover {
  background: #f26d6f;
  border-color: #f26d6f;
}

.ribbon-text h4 {
  margin: 0;
  font-size: 18px;
  text-transform: uppercase;
}

.ribbon-item--promises {
  min-height: 240px;
}

.ribbon-item--promises .ribbon-image {
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
}

.content-section {
  padding: 40px 0 36px;
}

.content-section--chevy-slide {
  padding: 42px 0 48px;
  background-color: #333;
  overflow: visible;
}

.chevy-slide-app {
  --chevy-slide-red: #f05151;
  --chevy-slide-text: #fff;
  --chevy-slide-muted: rgba(255, 255, 255, 0.78);
  --chevy-slide-maxw: 720px;
  --chevy-slide-carousel-w: 780px;
  --chevy-slide-carousel-h: 300px;
  --chevy-slide-gap-above: 48px;
  --chevy-slide-gap-below: 48px;
  width: min(var(--chevy-slide-maxw), 100%);
  margin: 0 auto;
  text-align: center;
  color: var(--chevy-slide-text);
}

.chevy-slide-app__panel {
  overflow: visible;
}

.chevy-slide-app__headline {
  font-weight: 700;
  letter-spacing: 0.1px;
  margin: 14px 0 18px;
  font-size: clamp(13px, 1.45vw, 26px);
  line-height: 1.06;
  text-align: center;
  color: #fff;
}

.chevy-slide-app__headline::after {
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  margin: 6px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--chevy-slide-red), #f26d6f);
  opacity: 0.9;
}

.chevy-slide-app__headline-logo {
  height: 1.05em;
  vertical-align: -0.2em;
}

.chevy-slide-app__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  margin-top: 0.1em;
  padding: 0;
  border: none;
  background: rgba(240, 81, 81, 0.1);
  color: var(--chevy-slide-red);
  cursor: pointer;
  font-size: clamp(16px, 2.5vw, 22px);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(240, 81, 81, 0.16);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.chevy-slide-app__nav:hover {
  background: rgba(240, 81, 81, 0.18);
  transform: scale(1.1);
  box-shadow: 0 4px 14px rgba(240, 81, 81, 0.28);
}

.chevy-slide-app__nav:active {
  transform: scale(0.95);
}

.chevy-slide-app__nav:focus-visible {
  outline: 2px solid var(--chevy-slide-red);
  outline-offset: 3px;
}

.chevy-slide-app__carousel {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: var(--chevy-slide-carousel-w);
  margin: var(--chevy-slide-gap-above) auto var(--chevy-slide-gap-below);
  padding: 0;
  overflow: visible;
}

.chevy-slide-app__carousel-track {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
  min-width: 0;
  padding: 36px 0 24px;
  overflow: visible;
}

.chevy-slide-app__card {
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  will-change: transform, opacity, filter;
}

.chevy-slide-app__card--center {
  flex: 0 0 96%;
  width: 96%;
  max-width: none;
  max-height: none;
  border-radius: 3px;
  aspect-ratio: 2.15 / 1;
  opacity: 1;
  filter: blur(0);
  z-index: 4;
  position: relative;
  cursor: pointer;
  overflow: visible;
}

.chevy-slide-app__card--center .chevy-slide-app__card-img {
  border-radius: 3px;
}

.chevy-slide-app__card--prev,
.chevy-slide-app__card--next {
  flex: 0 0 36%;
  width: 36%;
  max-height: var(--chevy-slide-carousel-h);
  aspect-ratio: 2.15 / 1;
  transform: scale(1.04);
  opacity: 0.5;
  filter: blur(1.5px);
  z-index: 2;
  position: relative;
  cursor: pointer;
}

.chevy-slide-app__card--prev:hover,
.chevy-slide-app__card--next:hover {
  opacity: 0.7;
}

.chevy-slide-app__card--prev {
  margin-right: clamp(-48px, -5.25vw, -30px);
}

.chevy-slide-app__card--next {
  margin-left: clamp(-48px, -5.25vw, -30px);
}

.chevy-slide-app__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.chevy-slide-app__service-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: start;
  gap: clamp(10px, 1.5vw, 18px);
  width: 100%;
  margin: -4px 0 0;
  padding-top: 0;
}

.chevy-slide-app__service-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  min-width: 0;
  width: 100%;
  text-align: center;
}

.chevy-slide-app__label {
  font-weight: 800;
  letter-spacing: 0.6px;
  margin: 0;
  font-size: clamp(15px, 3vw, 26px);
  line-height: 1.15;
  color: #fff;
}

.chevy-slide-app__desc {
  margin: 0;
  flex: 0 0 auto;
  max-width: min(360px, 100%);
  font-size: clamp(12px, 1.15vw, 14px);
  line-height: 1.4;
  color: var(--chevy-slide-muted);
}

.chevy-slide-app__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  flex-shrink: 0;
  margin: 0;
  padding: 10px 22px;
  background: var(--chevy-slide-red);
  border: 1px solid var(--chevy-slide-red);
  color: #fff;
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s, border-color 0.2s;
}

.chevy-slide-app__cta:hover {
  background: #f26d6f;
  border-color: #f26d6f;
  color: #fff;
}

.chevy-slide-app__cta:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.chevy-slide-app__swipe-hint {
  display: none;
}

@media (max-width: 640px) {
  .chevy-slide-app__headline {
    font-size: clamp(15px, 4.2vw, 24px);
    line-height: 1.06;
    margin: 12px auto 14px;
    padding: 0 4px;
    max-width: min(20rem, calc(100% - 8px));
  }

  .chevy-slide-app__carousel {
    max-width: 100%;
    margin-top: 44px;
    margin-bottom: 36px;
    overflow-x: hidden;
    overflow-y: visible;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

  .chevy-slide-app__carousel-track {
    padding: 28px 0 20px;
  }

  .chevy-slide-app__card--prev,
  .chevy-slide-app__card--next {
    display: none;
  }

  .chevy-slide-app__card--center {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    max-height: none;
    aspect-ratio: 2.1 / 1;
  }

  .chevy-slide-app__nav {
    display: none;
  }

  .chevy-slide-app__service-row {
    grid-template-columns: minmax(0, 1fr);
    margin-top: 0;
    padding-top: 8px;
    gap: 0;
  }

  .chevy-slide-app__service-copy {
    gap: 16px;
    padding: 0 8px;
  }

  .chevy-slide-app__desc {
    max-width: min(320px, 100%);
  }

  .chevy-slide-app__cta {
    max-width: 100%;
    padding-inline: 18px;
  }

  .chevy-slide-app__swipe-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 4px;
    color: var(--chevy-slide-muted);
    font-size: 11px;
    letter-spacing: 0.4px;
    opacity: 1;
    transition: opacity 0.6s ease;
  }

  .chevy-slide-app__swipe-hint i {
    font-size: 10px;
    animation: chevySlideNudge 1.8s ease-in-out infinite;
  }

  .chevy-slide-app__swipe-hint i:first-child {
    animation-direction: reverse;
  }

  .chevy-slide-app__swipe-hint.hidden {
    opacity: 0;
    pointer-events: none;
  }

  @keyframes chevySlideNudge {
    0%,
    100% {
      transform: translateX(0);
    }

    50% {
      transform: translateX(4px);
    }
  }
}
.staff-cutout {
  position: relative;
  z-index: 1;
  height: var(--staff-cutout-height, auto);
  max-height: var(--staff-cutout-height, 100%);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.45));
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.overlay-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.staff-feature.is-fading .staff-cutout,
.staff-feature.is-fading .overlay-layer {
  opacity: 0;
}

.overlay-marker {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 182px;
  height: 64px;
}

.overlay-marker-text {
  display: block;
  box-sizing: border-box;
  width: 182px;
  height: 64px;
  padding: 5px 10px;
  background: rgba(0, 0, 0, 0.82);
  color: #fff;
  border-radius: 4px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.overlay-line {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.overlay-line--name {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.15;
  margin-bottom: 2px;
}

.overlay-line--store,
.overlay-line--role,
.overlay-line--since {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.92);
}
.dealerships-section {
  padding: 0;
  background: #fff;
}

.dealerships-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  min-height: clamp(420px, 52vw, 560px);
}

.dealerships-section__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(40px, 6vw, 72px) clamp(24px, 4vw, 48px);
}

.dealerships-section__title {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--main-color);
}

.dealerships-section__subtitle {
  display: block;
  margin-top: 8px;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 700;
  color: #444;
}

.dealerships-section__lead {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.55;
  color: #444;
}

.dealerships-section__copy .btn-cta {
  margin-top: 8px;
  align-self: flex-start;
}

.dealerships-section__spotlight {
  position: relative;
  min-height: clamp(420px, 52vw, 560px);
  height: 100%;
  overflow: hidden;
  isolation: isolate;
  background: #222;
  transition: opacity 0.45s ease;
}

.dealerships-section__spotlight.is-fading {
  opacity: 0;
}

.dealerships-section__bg {
  position: absolute;
  inset: -8%;
  z-index: 0;
  background-size: cover;
  background-position: center;
  filter: blur(10px) saturate(1.05);
  transform: scale(1.08);
  pointer-events: none;
}

.dealerships-section__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.28) 100%);
  pointer-events: none;
}

.dealerships-section__figure {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: inherit;
  padding: 0 clamp(12px, 2vw, 24px);
  box-sizing: border-box;
}

.dealerships-section__face {
  position: relative;
  z-index: 2;
  display: block;
  width: auto;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.35));
  transform: translateZ(0);
}

.dealerships-section__face.staff-cutout {
  z-index: 2;
  height: 100%;
  max-height: 100%;
}

.dealerships-section__name-tag {
  position: absolute;
  left: var(--name-tag-left, 52px);
  bottom: var(--name-tag-bottom, 18px);
  z-index: 4;
  flex: none;
  align-self: auto;
  width: 182px;
  margin: 0;
  transform: translateY(var(--name-tag-peek, 11%));
  pointer-events: none;
}

.dealerships-section__name-tag.brandon-hero__name-tag {
  margin-bottom: 0;
}

.dealerships-section__name-tag .overlay-marker-text {
  width: 182px;
  height: 64px;
}

.site-footer {
  padding: 48px 0 56px;
  background: #222;
  color: #fff;
}

.site-footer__title {
  margin: 0 0 24px;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  color: #fff;
}

.site-footer__locations {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 32px);
}

.site-footer__location h3 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.site-footer__location address {
  margin: 0 0 6px;
  font-style: normal;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer__location p {
  margin: 0 0 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.92);
}

.site-footer__location a {
  color: #fff;
  text-decoration: none;
}

.site-footer__location a:hover,
.site-footer__location a:focus-visible {
  color: #fff;
  text-decoration: underline;
}

.site-footer__hours {
  width: 100%;
  margin: 0 0 10px;
  border-collapse: collapse;
  font-size: 12px;
}

.site-footer__hours th,
.site-footer__hours td {
  padding: 2px 0;
  font-weight: 400;
  text-align: left;
  vertical-align: top;
}

.site-footer__hours th {
  width: 38%;
  padding-right: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 600;
}

.site-footer__hours td {
  color: rgba(255, 255, 255, 0.88);
}

.site-footer__directions {
  display: inline-block;
  margin-top: 2px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
}

.site-footer__directions:hover,
.site-footer__directions:focus-visible {
  text-decoration: underline;
}

.site-footer__title--sub {
  margin-top: 40px;
}

.site-footer__map-block {
  margin-top: 8px;
}

.site-footer__map-lead {
  margin: -12px auto 16px;
  max-width: 560px;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer__map {
  width: 100%;
  height: clamp(280px, 42vw, 530px);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #1a1a1a;
}

.site-footer__map .leaflet-container {
  width: 100%;
  height: 100%;
  font-family: inherit;
}

.site-footer__map .leaflet-popup-content-wrapper {
  border-radius: 4px;
}

.site-footer__map .leaflet-popup-content {
  margin: 10px 14px;
  font-size: 13px;
  line-height: 1.45;
}

.site-footer__social-block {
  margin-top: 8px;
  padding-bottom: 8px;
}

.site-footer__social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
}

.site-footer__social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.site-footer__social a:hover,
.site-footer__social a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.34);
  color: #fff;
  text-decoration: none;
}

.site-footer__social .fa {
  font-size: 16px;
}

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

@media (max-width: 991px) {
  .dealerships-section__inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .dealerships-section__copy {
    padding: 40px 20px;
  }

  .dealerships-section__spotlight {
    min-height: clamp(360px, 72vw, 480px);
  }

  .site-footer__locations {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .dealerships-section__spotlight {
    min-height: 340px;
  }

  .dealerships-section__name-tag {
    left: 20px;
    bottom: 14px;
  }

  .site-footer__locations {
    grid-template-columns: 1fr;
  }
}

.site-footer--chevy .site-footer__locations {
  grid-template-columns: minmax(0, 360px);
  justify-content: center;
}

.carousel-slide a {
  display: block;
  width: 100%;
  height: 100%;
}
