@charset "UTF-8";
/* stylelint-disable */
/* stylelint-enable */
:root {
  --grid-max-width: calc(1300px + 2 * var(--grid-padding));
  --grid-padding: 16px;
}
@media screen and (min-width: 1440px) {
  :root {
    --grid-padding: 40px;
  }
}

.breadcrumb {
  font-size: var(--body-medium-font-size);
  line-height: var(--body-medium-line-height);
  position: relative;
  padding-top: 12px;
  padding-bottom: 12px;
  background-color: var(--white);
}

.breadcrumb__container {
  display: flex;
}

.breadcrumb__item {
  font-weight: var(--normal);
  display: inline-block;
  vertical-align: middle;
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--black);
}
.breadcrumb__item:not(.breadcrumb__item-last) {
  text-decoration: underline;
}

.breadcrumb__icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding-left: 4px;
  padding-right: 4px;
}

.breadcrumb__icon-back {
  display: none;
}

@media screen and (max-width: 650px) {
  .breadcrumb__text,
  .breadcrumb__item-last,
  .breadcrumb__icon {
    display: none;
  }
  .breadcrumb__item-before-last {
    display: inline-block;
  }
  .breadcrumb__icon-back {
    display: flex;
  }
  .breadcrumb__item {
    max-width: none;
  }
  .breadcrumb-root .breadcrumb__text,
  .breadcrumb-root .breadcrumb__item-last {
    display: inline-block;
  }
}
.video-preview {
  width: 100%;
  margin: 0;
}

.video-preview-link {
  display: block;
  position: relative;
}

.video-preview-link__thumbnail {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--border-radius-medium);
}

.video-preview-link__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.video-preview-link__title-overlay {
  position: absolute;
  width: 100%;
  bottom: 8px;
  background-color: var(--blue);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-weight: var(--bold);
}
@media screen and (min-width: 651px) {
  .video-preview-link__title-overlay {
    height: 64px;
    bottom: 24px;
  }
}

.video-preview-link__title-overlay-title {
  font-size: var(--heading-3-font-size);
  line-height: var(--heading-3-line-height);
  font-weight: var(--bold);
  font-family: var(--heading-3-font-family);
  letter-spacing: var(--heading-3-letter-spacing);
}

.video-preview-link__title-overlay-subtitle {
  font-size: var(--caption-font-size);
  line-height: var(--caption-line-height);
}

.video-preview-caption {
  font-size: var(--body-large-font-size);
  line-height: var(--body-large-line-height);
  margin-top: 16px;
}

.embed-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.embed-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.embed-video-container {
  display: none;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 650px) {
  .embed-video-container {
    width: 100%;
  }
}
@media screen and (min-width: 651px) and (max-width: 1024px) {
  .embed-video-container {
    width: 80vw;
  }
}
@media screen and (min-width: 1025px) {
  .embed-video-container {
    width: 60vw;
  }
}

.modal-radio-button--open:checked ~ .modal-overlay .embed-video-container {
  display: block;
}

.related-articles {
  display: grid;
  grid-template-rows: repeat(3, auto);
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 32px 7.4229717578%;
}
@media screen and (min-width: 651px) {
  .related-articles {
    grid-template-rows: repeat(2, auto);
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 16px 2.3576520234%;
  }
}

.related-articles__item--featured {
  grid-row: 1/2;
  grid-column: 1/3;
}
@media screen and (min-width: 651px) {
  .related-articles__item--featured {
    grid-row: 1/3;
  }
}

.card-minimalist__media-container {
  padding-top: 56.25%;
  position: relative;
}

.card-minimalist__media {
  display: flex;
  align-items: center;
  border-radius: var(--border-radius-medium);
  background-size: cover;
  background-position: center;
  position: absolute;
  inset: 0;
}

/* img */
.card-minimalist__media--image {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.card-minimalist__body {
  margin-top: 8px;
}

.card-minimalist__title {
  font-weight: var(--bold);
  color: var(--black);
}

.card-minimalist__title--small {
  font-size: var(--body-small-font-size);
  line-height: var(--body-small-line-height);
}

.card-minimalist__title--large {
  font-size: var(--heading-3-font-size);
  line-height: var(--heading-3-line-height);
  font-weight: var(--bold);
  font-family: var(--heading-3-font-family);
  letter-spacing: var(--heading-3-letter-spacing);
}

.dark-mode .card-minimalist__subtitle {
  color: var(--factory-white);
}

.card-minimalist__description {
  font-size: var(--body-medium-font-size);
  line-height: var(--body-medium-line-height);
  margin-top: 12px;
  margin-bottom: 0;
}

.card-minimalist__content-block {
  margin-top: 12px;
}

.button-back-to-top {
  text-align: center;
}

.button-back-to-top__container {
  display: inline-block;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  text-align: center;
  background-color: transparent;
}
.button-back-to-top__container:focus {
  outline: none;
}

.button-back-to-top__arrow {
  display: inline-flex;
  align-items: center;
  background-color: var(--white);
  border-radius: 100%;
  box-shadow: 0 2px 4px 0 var(--shadow-colour);
  height: 48px;
  justify-content: center;
  transition: 0.3s all;
  width: 48px;
}
.button-back-to-top__arrow:hover {
  transform: scale(1.05);
}

.button-back-to-top__title {
  font-size: var(--heading-4-font-size);
  line-height: var(--heading-4-line-height);
  padding-top: 16px;
}

.offer-finance-details__note {
  font-size: var(--body-medium-font-size);
  line-height: var(--body-medium-line-height);
  margin-top: 0;
  margin-bottom: 24px;
}

.offer-finance-details__intro-title {
  font-size: var(--body-medium-font-size);
  line-height: var(--body-medium-line-height);
  font-weight: var(--bold);
  margin-bottom: 8px;
}

.offer-finance-details__intro {
  font-size: var(--body-medium-font-size);
  line-height: var(--body-medium-line-height);
}

.offer-finance-details__representative-table-title {
  font-size: var(--body-medium-font-size);
  line-height: var(--body-medium-line-height);
  font-weight: var(--bold);
  margin-bottom: 12px;
}
@media screen and (min-width: 651px) {
  .offer-finance-details__representative-table-title {
    margin-bottom: 24px;
  }
}

.offer-finance-details__finance-estimate-details {
  font-size: var(--body-medium-font-size);
  line-height: var(--body-medium-line-height);
  margin: 16px 0 0;
}
.offer-finance-details__finance-estimate-details p,
.offer-finance-details__finance-estimate-details ul {
  margin-top: 16px;
  margin-bottom: 16px;
}

@media screen and (min-width: 651px) {
  .offer-finance-details__representative-table {
    margin-bottom: 16px;
  }
}

.offer-finance-details__representative-table + .offer-finance-details__finance-estimate-details {
  margin-top: 32px;
}

.offer-finance-details__logo-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.offer-finance-details__logo .inline-icon {
  display: block;
}
.offer-finance-details__logo .inline-make-icon--large-shape {
  margin-left: -8px;
}

.offer-finance-details__logo-text {
  font-size: var(--body-medium-font-size);
  line-height: var(--body-medium-line-height);
  font-weight: var(--bold);
}

.offer-finance-details__logo + .offer-finance-details__logo-text {
  margin-left: 8px;
}

.summary-list {
  font-size: var(--body-medium-font-size);
  line-height: var(--body-medium-line-height);
  color: var(--black);
  margin-top: 0;
  margin-bottom: 0;
}

@media screen and (min-width: 651px) {
  .summary-list--medium-up-columns {
    -moz-columns: 2;
         columns: 2;
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}

.summary-list__item, .summary-list__item--with-icon {
  display: inline-flex;
  justify-content: space-between;
  width: 100%;
  padding-top: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-colour);
}

.summary-list__item dd {
  font-weight: var(--bold);
  margin-left: 16px;
  min-width: 80px;
  text-align: right;
}

.summary-list__item-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.summary-list__item-container dd {
  font-weight: var(--normal);
  font-size: var(--body-large-font-size);
  line-height: var(--body-large-line-height);
  text-align: left;
  margin-left: 0;
}

.summary-list__item-icon {
  display: flex;
  align-items: center;
}

.multi-column-list {
  -moz-columns: 2;
       columns: 2;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
@media screen and (min-width: 651px) {
  .multi-column-list {
    -moz-columns: 3;
         columns: 3;
  }
}
@media screen and (min-width: 1025px) {
  .multi-column-list {
    -moz-columns: 5;
         columns: 5;
  }
}

.multi-column-list__item {
  font-size: var(--body-medium-font-size);
  line-height: var(--body-medium-line-height);
  margin-bottom: 12px;
  display: inline-block;
  width: 100%;
}

.multi-column-list__link-text {
  color: var(--black);
  text-decoration: none;
}
.multi-column-list__link-text:hover {
  text-decoration: underline;
}

.multi-column-list__icon-text-link-wrap {
  display: inline-flex;
  vertical-align: top;
  align-items: center;
  text-decoration: none;
}

.multi-column-list__icon {
  display: inline-flex;
  flex-shrink: 0;
  margin-right: 8px;
}

.multi-column-list--with-text-overflow .multi-column-list__icon-text-link-wrap {
  display: flex;
}
.multi-column-list--with-text-overflow .multi-column-list__link-text {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-frame {
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background: var(--factory-white);
  padding-top: 24px;
  padding-bottom: 24px;
  margin-top: -40px;
}
@media screen and (min-width: 651px) {
  .hero-frame {
    margin-top: -64px;
  }
}

.hero-frame__content-with-bg {
  padding-top: 48px;
  padding-bottom: 0;
}
@media screen and (min-width: 651px) {
  .hero-frame__content-with-bg {
    padding-top: 68px;
  }
}
@media screen and (min-width: 1025px) {
  .hero-frame__content-with-bg {
    padding-top: 124px;
  }
}

html[data-useragent*=CarwowApp] .hero-frame .hero-frame__content-with-bg {
  margin-top: 0;
}

@media screen and (min-width: 1025px) {
  .hero-frame--image .hero-frame__content-with-bg {
    min-height: 320px;
    padding-top: 119px;
  }
}
.hero-frame--image .hero-frame__content-with-bg .hero-frame__content {
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 650px) {
  .hero-frame--breadcrumbs {
    margin-top: -88px;
  }
}
@media screen and (min-width: 651px) {
  .hero-frame--breadcrumbs {
    margin-top: -112px;
  }
}
@media screen and (max-width: 650px) {
  .hero-frame--breadcrumbs .hero-frame__content-with-bg {
    padding-top: 88px;
  }
}

.hero-frame__extra-content-wrap {
  z-index: 1;
  position: relative;
  margin-top: 24px;
}

.hero-frame__container,
.hero-frame__content-wrap {
  position: relative;
}

.hero-frame__title {
  font-size: var(--heading-bold-font-size);
  line-height: var(--heading-bold-line-height);
  font-family: var(--font-family-headlines);
  text-transform: var(--heading-text-transform);
  letter-spacing: var(--heading-bold-letter-spacing);
  text-wrap: balance;
  margin-top: 0;
  margin-bottom: 0;
}

.hero-frame__title--long {
  font-size: var(--heading-1-font-size);
  line-height: var(--heading-1-line-height);
  font-weight: var(--bold);
  font-family: var(--font-family-headlines);
  text-transform: var(--heading-text-transform);
  letter-spacing: var(--heading-1-letter-spacing);
}

.hero-frame__above-title {
  font-size: var(--body-medium-font-size);
  line-height: var(--body-medium-line-height);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.hero-frame__desc {
  margin-top: 8px;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.hero-frame__overlapping-content {
  margin-top: 16px;
  width: 100%;
  z-index: 1;
}
@media screen and (min-width: 651px) {
  .hero-frame__overlapping-content {
    padding-left: calc(var(--grid-padding) + 24px);
    padding-right: calc(var(--grid-padding) + 24px);
  }
}

.hero-frame--with-bottom-spacing {
  padding-bottom: 24px;
}

.hero-frame__social-wrap {
  position: relative;
  margin-top: 16px;
}
.hero-frame__social-wrap .trustpilot {
  justify-content: center;
}

.hero-frame__actions {
  display: flex;
  gap: 8px;
  justify-content: center;
}
@media screen and (max-width: 650px) {
  .hero-frame__actions {
    flex-direction: column;
  }
}
@media screen and (min-width: 1025px) {
  .hero-frame__actions {
    gap: 16px;
  }
}
.hero-frame__actions * {
  width: auto;
}

.hero-frame__media {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
}

.hero-frame__grid-container {
  position: relative;
  max-width: 960px;
  width: 100%;
}

.hero-frame__img {
  display: none;
}
@media screen and (min-width: 1025px) {
  .hero-frame__img {
    position: absolute;
    top: 120px;
    right: 0;
    height: 312px;
    transform: translateX(100%);
    display: block;
  }
}

@media screen and (min-width: 1025px) {
  .hero-frame__img--rear {
    left: 0;
    right: auto;
    transform: translateX(-100%);
  }
}

.hero-frame__subtitle {
  margin-top: 8px;
  margin-bottom: 0;
}
.hero-frame__subtitle + .hero-frame__desc {
  margin-top: 0;
}

body:has(.hero-frame) .main-nav,
.content-with-hero-frame .main-nav {
  z-index: 2;
}
body:has(.hero-frame) .breadcrumb,
.content-with-hero-frame .breadcrumb {
  background-color: transparent;
  z-index: 1;
}

@media screen and (max-width: 650px) {
  body:has(.hero-frame--dark-mode) .main-nav__menu-logo-link-img {
    fill: var(--white);
  }
}

@media screen and (min-width: 651px) {
  body:has(.hero-frame--breadcrumbs) .breadcrumb__container {
    padding-left: calc(var(--grid-padding) + 16px);
  }
}

.hero-frame__bg {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: absolute;
  inset: 0;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 651px) {
  .hero-frame__bg {
    top: 56px;
  }
}
@media screen and (min-width: 1025px) {
  .hero-frame__bg {
    top: 94px;
  }
}
.hero-frame__bg::before {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(0deg, var(--iridescent-wrap));
}
@media screen and (min-width: 651px) {
  .hero-frame__bg::before {
    border-radius: var(--border-radius-medium);
    inset: 0 var(--grid-padding);
  }
}

.hero-frame--sandy-footwell .hero-frame__bg::before {
  background: var(--sandy-footwell);
}

.hero-frame--dark-mode .hero-frame__bg::before {
  background: var(--black);
}

.hero-frame__intro {
  text-align: center;
  width: 100%;
  margin: 0 auto 16px;
}
@media screen and (min-width: 651px) and (max-width: 1024px) {
  .hero-frame__intro {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (min-width: 1025px) {
  .hero-frame__intro {
    width: 960px;
  }
}

.hero-frame .sell-car-form {
  background-color: rgba(var(--black-rgb), 0.06);
}
.hero-frame .social-follow__item-wrap {
  justify-content: center;
}

.hero-frame__action-wrap {
  margin-top: 16px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 651px) {
  .hero-frame__action-wrap {
    margin-bottom: 16px;
  }
}

.card-compact {
  background-color: var(--sandy-footwell);
  border-radius: var(--border-radius-medium);
  height: 100%;
  width: 100%;
  padding: 16px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

a.card-compact {
  transition: 0.15s background-color ease-in-out;
}
a.card-compact:hover {
  background-color: color-mix(in srgb, var(--black) 4%, var(--sandy-footwell));
}
a.card-compact:active {
  box-shadow: var(--input-focus-box-shadow);
}

.card-compact__top-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.card-compact__top-left-content,
.card-compact__top-right-content {
  display: flex;
  align-items: center;
}

.card-compact__top-right-content {
  margin-left: auto;
}

.card-compact__banner-content {
  display: flex;
  margin-top: 4px;
  gap: 4px;
}

.card-compact__image-logo {
  position: absolute;
  margin-top: 20px;
}

.card-compact__title {
  margin: 0;
}

.card-compact__description {
  font-size: var(--body-small-font-size);
  line-height: var(--body-small-line-height);
  font-weight: var(--normal);
}

.card-compact__description--with-spacing {
  margin-top: 8px;
}

.card-compact__description-list {
  font-size: var(--body-medium-font-size);
  line-height: var(--body-medium-line-height);
  color: var(--black);
}
.card-compact__description-list li {
  display: inline;
}
.card-compact__description-list li + li::before {
  content: " • ";
}

.card-compact__product-container {
  margin-top: auto;
  display: flex;
}

.card-compact__car-image {
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: -40px;
}

.card-compact__bottom-content {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-compact__above-tile-content {
  position: absolute;
  padding-left: 16px;
}

.card-compact__bottom-container {
  display: grid;
  position: relative;
}

.card-compact__split-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.youtube-card {
  background-image: url("https://carwow-uk-3.imgix.net/homepage/YoutubePlaceholder.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--border-radius-medium);
  padding: 24px 24px 24px 16px;
  transform: translate3d(0, 0, 0);
}
@media screen and (min-width: 651px) {
  .youtube-card {
    height: 100%;
  }
}
@media screen and (min-width: 1025px) {
  .youtube-card {
    padding: 32px 20px;
  }
}

.youtube-card::before {
  content: "";
  display: block;
  background: linear-gradient(180deg, var(--black) 0%, transparent 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.youtube-card__info {
  z-index: 1;
}
@media screen and (min-width: 1025px) {
  .youtube-card__info {
    margin-bottom: 140px;
  }
}
@media screen and (max-width: 650px) {
  .youtube-card__info {
    margin-bottom: 144px;
  }
}

.youtube-card__heading {
  margin-top: 0;
  margin-bottom: 8px;
  color: var(--white);
}
@media screen and (min-width: 1025px) {
  .youtube-card__heading {
    max-width: 364px;
  }
}

.youtube-card__content {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
}
@media screen and (min-width: 1025px) {
  .youtube-card__content {
    max-width: 336px;
  }
}

.youtube-card__link-wrapper {
  margin-top: auto;
  z-index: 1;
}

.youtube-card__link {
  font-weight: var(--bold);
  color: var(--white);
}

.youtube-card__video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.youtube-card__video-container video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.syc-card {
  background: var(--black);
  overflow: hidden;
  border-radius: var(--border-radius-medium);
  padding: 24px;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 651px) {
  .syc-card {
    height: 100%;
    flex-direction: row;
  }
}
@media screen and (min-width: 1025px) {
  .syc-card {
    padding: 32px 20px;
  }
}

.syc-card__heading-wrapper {
  display: flex;
}
@media screen and (max-width: 650px) {
  .syc-card__heading-wrapper {
    margin-bottom: 8px;
  }
}

.syc-card__icon--small-screens {
  margin-right: 12px;
  align-items: center;
  display: flex;
}
@media screen and (min-width: 651px) {
  .syc-card__icon--small-screens {
    display: none;
  }
}

.syc-card__icon--large-screens {
  display: none;
  align-items: center;
  justify-self: center;
  width: 160px;
  padding-right: 24px;
}
@media screen and (min-width: 651px) {
  .syc-card__icon--large-screens {
    display: flex;
  }
}
.syc-card__icon--large-screens .inline-icon {
  width: 100%;
  height: 100%;
}

.syc-card__heading {
  font-size: var(--heading-2-font-size);
  line-height: var(--heading-2-line-height);
  font-weight: var(--bold);
  font-family: var(--heading-2-font-family);
  letter-spacing: var(--heading-2-letter-spacing);
  font-family: var(--font-family-headlines);
  text-transform: var(--heading-text-transform);
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
}

.syc-card__content {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
}

.syc-card__info {
  margin-bottom: 12px;
}

.syc-card__reg-section {
  margin-bottom: 12px;
}

.syc-card__infield-container {
  width: 100%;
  margin-bottom: 16px;
}
@media screen and (min-width: 1025px) {
  .syc-card__infield-container {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 1025px) {
  .syc-card__reg-container {
    display: flex;
    width: 100%;
  }
}

.syc-card__licence-plate-input {
  width: 100%;
}

.syc-card__reg-button {
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .syc-card__reg-button {
    margin-left: 12px;
  }
}

.syc-card__link-wrapper {
  font-size: var(--body-small-font-size);
  line-height: var(--body-small-line-height);
  margin-top: auto;
  color: var(--white);
}

.syc-card__link {
  font-weight: var(--bold);
  color: var(--white);
}

.seo-long-tail-content {
  padding-top: 32px;
  padding-bottom: 32px;
  background-color: var(--factory-white);
}
@media screen and (min-width: 651px) {
  .seo-long-tail-content {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
@media screen and (min-width: 1025px) {
  .seo-long-tail-content {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.seo-long-tail__syc-youtube-container {
  margin-bottom: 60px;
  row-gap: 24px;
  display: flex;
  flex-wrap: wrap;
  margin-right: -12px;
  margin-left: -12px;
}

.seo-long-tail__youtube-card,
.seo-long-tail-content__syc-card {
  flex: 0 0 auto;
  width: calc(100% - 24px);
  margin-right: 12px;
  margin-left: 12px;
}
@media screen and (min-width: 651px) {
  .seo-long-tail__youtube-card,
  .seo-long-tail-content__syc-card {
    flex: 0 0 auto;
    width: calc(50% - 24px);
    margin-right: 12px;
    margin-left: 12px;
  }
}

.seo-long-tail__button-back-to-top {
  margin-top: 60px;
}

.more-deals-button__container {
  margin-top: 24px;
  margin-bottom: 60px;
}

.used-deals__subtitle,
.new-deals__subtitle,
.lease-deals__subtitle {
  margin-bottom: 12px;
}

.lease-deals__pricing-breakdown-open-link {
  font-size: var(--body-small-font-size);
  line-height: var(--body-small-line-height);
  color: var(--grey-dark);
  text-align: center;
}

.used-deals-card__media-placeholder {
  display: block;
  position: absolute;
  padding-top: 70%;
  width: 100%;
  top: 0;
  left: 0;
}
.used-deals-card__media-placeholder .inline-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -32px;
}

.card-generic__sub_trim_name {
  font-size: var(--body-medium-font-size);
  line-height: var(--body-medium-line-height);
}

.link-content__related-links {
  margin-top: 60px;
  margin-bottom: 40px;
}
.link-content__related-links h2 {
  margin-bottom: 32px;
}

.colour-content__faq {
  margin-top: 60px;
  margin-bottom: 60px;
}

.colour-content__faq-inner {
  margin-top: 32px;
}
@media screen and (min-width: 1025px) {
  .colour-content__faq-inner {
    max-width: 66.6%;
  }
}