@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;
  }
}

lite-youtube {
  background-color: #000;
  position: relative;
  display: block;
  contain: content;
  background-position: center center;
  background-size: cover;
  cursor: pointer;
  max-width: 720px;
}

/* gradient */
lite-youtube::before {
  content: attr(data-title);
  display: block;
  position: absolute;
  top: 0;
  /* Pixel-perfect port of YT's gradient PNG, using https://github.com/bluesmoon/pngtocss plus optimizations */
  background-image: linear-gradient(180deg, rgb(0 0 0/67%) 0%, rgb(0 0 0/54%) 14%, rgb(0 0 0/15%) 54%, rgb(0 0 0/5%) 72%, rgb(0 0 0/0%) 94%);
  height: 99px;
  width: 100%;
  font-family: "YouTube Noto", Roboto, Arial, Helvetica, sans-serif;
  color: hsl(0deg 0% 93.33%);
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  font-size: 18px;
  padding: 25px 20px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  box-sizing: border-box;
}

lite-youtube:hover::before {
  color: white;
}

/* responsive iframe with a 16:9 aspect ratio
    thanks https://css-tricks.com/responsive-iframes/
*/
lite-youtube::after {
  content: "";
  display: block;
  padding-bottom: 56.25%;
}

lite-youtube > iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 0;
}

/* play button */
lite-youtube > .lty-playbtn {
  display: block;
  /* Make the button element cover the whole area for a large hover/click target… */
  width: 100%;
  height: 100%;
  /* …but visually it's still the same size */
  background: no-repeat center/68px 48px;
  /* YT's actual play button svg */
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 68 48"><path d="M66.52 7.74c-.78-2.93-2.49-5.41-5.42-6.19C55.79.13 34 0 34 0S12.21.13 6.9 1.55c-2.93.78-4.63 3.26-5.42 6.19C.06 13.05 0 24 0 24s.06 10.95 1.48 16.26c.78 2.93 2.49 5.41 5.42 6.19C12.21 47.87 34 48 34 48s21.79-.13 27.1-1.55c2.93-.78 4.64-3.26 5.42-6.19C67.94 34.95 68 24 68 24s-.06-10.95-1.48-16.26z" fill="red"/><path d="M45 24 27 14v20" fill="white"/></svg>');
  position: absolute;
  cursor: pointer;
  z-index: 1;
  filter: grayscale(100%);
  transition: filter 0.1s cubic-bezier(0, 0, 0.2, 1);
  border: 0;
}

lite-youtube:hover > .lty-playbtn,
lite-youtube .lty-playbtn:focus {
  filter: none;
}

/* Post-click styles */
lite-youtube.lyt-activated {
  cursor: unset;
}

lite-youtube.lyt-activated::before,
lite-youtube.lyt-activated > .lty-playbtn {
  opacity: 0;
  pointer-events: none;
}

.lyt-visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.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;
  }
}
.avatar {
  position: relative;
  display: flex;
  justify-content: center;
}

.avatar--x-small {
  height: 24px;
  width: 24px;
}

.avatar__verified-badge--x-small {
  height: 8px;
  width: 8px;
}

.avatar__online-status--x-small {
  height: 4px;
  width: 4px;
  bottom: 2px;
  right: 2px;
}

@media screen and (min-width: 651px) {
  .avatar.avatar--medium-up-x-small {
    height: 24px;
    width: 24px;
  }
  .avatar__verified-badge.avatar__verified-badge--medium-up-x-small {
    height: 8px;
    width: 8px;
  }
  .avatar__online-status.avatar__online-status--medium-up-x-small {
    height: 4px;
    width: 4px;
  }
}
@media screen and (min-width: 1025px) {
  .avatar.avatar.avatar--large-up-x-small {
    height: 24px;
    width: 24px;
  }
  .avatar__verified-badge.avatar__verified-badge.avatar__verified-badge--large-up-x-small {
    height: 8px;
    width: 8px;
  }
  .avatar__online-status.avatar__online-status.avatar__online-status--large-up-x-small {
    height: 4px;
    width: 4px;
    bottom: 4px;
    right: 4px;
  }
}
.avatar--small {
  height: 48px;
  width: 48px;
}

.avatar__verified-badge--small {
  height: 16px;
  width: 16px;
}

.avatar__online-status--small {
  height: 8px;
  width: 8px;
  bottom: 2px;
  right: 2px;
}

@media screen and (min-width: 651px) {
  .avatar.avatar--medium-up-small {
    height: 48px;
    width: 48px;
  }
  .avatar__verified-badge.avatar__verified-badge--medium-up-small {
    height: 16px;
    width: 16px;
  }
  .avatar__online-status.avatar__online-status--medium-up-small {
    height: 8px;
    width: 8px;
  }
}
@media screen and (min-width: 1025px) {
  .avatar.avatar.avatar--large-up-small {
    height: 48px;
    width: 48px;
  }
  .avatar__verified-badge.avatar__verified-badge.avatar__verified-badge--large-up-small {
    height: 16px;
    width: 16px;
  }
  .avatar__online-status.avatar__online-status.avatar__online-status--large-up-small {
    height: 8px;
    width: 8px;
    bottom: 4px;
    right: 4px;
  }
}
.avatar--medium {
  height: 64px;
  width: 64px;
}

.avatar__verified-badge--medium {
  height: 24px;
  width: 24px;
}

.avatar__online-status--medium {
  height: 12px;
  width: 12px;
  bottom: 2px;
  right: 2px;
}

@media screen and (min-width: 651px) {
  .avatar.avatar--medium-up-medium {
    height: 64px;
    width: 64px;
  }
  .avatar__verified-badge.avatar__verified-badge--medium-up-medium {
    height: 24px;
    width: 24px;
  }
  .avatar__online-status.avatar__online-status--medium-up-medium {
    height: 12px;
    width: 12px;
  }
}
@media screen and (min-width: 1025px) {
  .avatar.avatar.avatar--large-up-medium {
    height: 64px;
    width: 64px;
  }
  .avatar__verified-badge.avatar__verified-badge.avatar__verified-badge--large-up-medium {
    height: 24px;
    width: 24px;
  }
  .avatar__online-status.avatar__online-status.avatar__online-status--large-up-medium {
    height: 12px;
    width: 12px;
    bottom: 4px;
    right: 4px;
  }
}
.avatar--large {
  height: 96px;
  width: 96px;
}

.avatar__verified-badge--large {
  height: 32px;
  width: 32px;
}

.avatar__online-status--large {
  height: 16px;
  width: 16px;
  bottom: 4px;
  right: 4px;
}

@media screen and (min-width: 651px) {
  .avatar.avatar--medium-up-large {
    height: 96px;
    width: 96px;
  }
  .avatar__verified-badge.avatar__verified-badge--medium-up-large {
    height: 32px;
    width: 32px;
  }
  .avatar__online-status.avatar__online-status--medium-up-large {
    height: 16px;
    width: 16px;
  }
}
@media screen and (min-width: 1025px) {
  .avatar.avatar.avatar--large-up-large {
    height: 96px;
    width: 96px;
  }
  .avatar__verified-badge.avatar__verified-badge.avatar__verified-badge--large-up-large {
    height: 32px;
    width: 32px;
  }
  .avatar__online-status.avatar__online-status.avatar__online-status--large-up-large {
    height: 16px;
    width: 16px;
    bottom: 4px;
    right: 4px;
  }
}
.avatar__img {
  border: 2px solid var(--grey-light);
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  background: var(--white);
  height: 100%;
  width: 100%;
}

.avatar__verified-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  background-color: var(--green);
  border-radius: 50%;
  padding: 4px;
  top: 0;
  right: 0;
  z-index: 2;
}

.avatar__online-status {
  box-sizing: content-box;
  background-color: var(--green);
  border-radius: 50%;
  position: absolute;
  border: 2px solid var(--white);
  z-index: 1;
}

.avatar__placeholder {
  display: flex;
  z-index: 0;
}
.avatar__placeholder .inline-icon {
  height: auto;
  z-index: 1;
}
.avatar__placeholder::before {
  background-color: var(--white);
  content: "";
  border-radius: 50%;
  position: absolute;
  inset: 2px;
  z-index: 0;
}

.avatar__initial {
  width: 100%;
  background-color: var(--green-extra-light);
  border-radius: 50%;
  border: 1px solid var(--grey);
  display: flex;
  justify-content: center;
  align-items: center;
}
.avatar__initial p {
  color: var(--green-dark);
}

.avatar--x-small {
  font-size: var(--caption-font-size);
  line-height: var(--caption-line-height);
  font-weight: var(--bold);
}

.avatar--small {
  font-size: 24px;
}

.avatar--medium {
  font-size: 32px;
}

.avatar--large {
  font-size: 48px;
}

.header-hero {
  background-color: var(--white);
  margin-top: -40px;
  padding-top: 40px;
}
@media screen and (min-width: 651px) {
  .header-hero {
    margin-top: -64px;
    padding-top: 64px;
  }
}
@media screen and (min-width: 1025px) {
  .header-hero {
    background-color: var(--factory-white);
    margin-top: -94px;
    padding-top: 94px;
  }
}

.header-hero__main {
  padding-top: 32px;
  padding-bottom: 24px;
}
@media screen and (min-width: 1025px) {
  .header-hero__main {
    background-color: var(--white);
    padding: 32px 48px 24px;
    border-radius: var(--border-radius-medium);
    flex-grow: 1;
    flex-basis: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.header-hero__intro {
  text-align: center;
}

.header-hero__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;
}

.header-hero__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);
}

.header-hero__desc {
  margin-top: 0;
  margin-bottom: 0;
}

.header-hero__actions-inner {
  margin-top: 16px;
}
@media screen and (min-width: 651px) {
  .header-hero__actions-inner {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    justify-content: center;
  }
}

@media screen and (max-width: 650px) {
  .header-hero__actions-inner > .btn {
    width: 100%;
  }
}

@media screen and (max-width: 650px) {
  .header-hero__actions-inner > .btn + .btn {
    margin-top: 12px;
  }
}

.header-hero__confidence-strip {
  justify-self: center;
  margin-top: 16px;
}
@media screen and (min-width: 651px) {
  .header-hero__confidence-strip {
    margin-top: 32px;
  }
}
@media screen and (min-width: 1025px) {
  .header-hero__confidence-strip {
    align-self: center;
  }
}

@media screen and (min-width: 1025px) {
  .header-hero--media .header-hero__inner {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
  }
}
@media screen and (min-width: 1025px) {
  .header-hero--media .header-hero__main {
    flex-grow: 1;
    flex-basis: 75%;
  }
}

.header-hero__media {
  display: none;
}
@media screen and (min-width: 1025px) {
  .header-hero__media {
    display: block;
    flex-basis: 25%;
  }
}

.header-hero__image-wrap {
  height: 100%;
}

.header-hero__image {
  display: block;
  height: 100%;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--border-radius-medium);
}

.header-hero--article .header-hero__main {
  padding-bottom: 48px;
}
.header-hero--article .header-hero__title {
  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-body);
  text-transform: none;
  margin-bottom: 16px;
}

@media screen and (max-width: 650px) {
  .header-hero--breadcrumbs {
    margin-top: -88px;
    padding-top: 88px;
  }
}
@media screen and (min-width: 651px) {
  .header-hero--breadcrumbs {
    margin-top: -112px;
    padding-top: 112px;
  }
}
@media screen and (min-width: 1025px) {
  .header-hero--breadcrumbs {
    margin-top: -142px;
    padding-top: 142px;
  }
}
.header-hero--breadcrumbs .header-hero__inner {
  margin-top: -48px;
}
.header-hero--breadcrumbs .header-hero__main {
  padding-top: 80px;
}

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

.signature {
  display: flex;
  align-items: center;
}

.signature__head {
  margin-right: 12px;
}

.signature__body {
  font-size: var(--body-small-font-size);
  line-height: var(--body-small-line-height);
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.signature__primary {
  color: var(--black);
}

.signature__secondary {
  color: var(--text-black-dim);
}

.signature__tertiary {
  color: var(--text-black-dim);
}

.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%;
}

.makes-models-menu__spinner {
  height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.makes-models-menu__list-title {
  padding: 8px 28px;
  font-size: var(--body-small-font-size);
  line-height: var(--body-small-line-height);
  font-weight: var(--bold);
  background-color: var(--grey-extra-light);
  border-bottom: 1px solid var(--border-colour);
}

.makes-models-menu__list {
  margin-top: 0;
}
@media screen and (max-width: 650px) {
  .makes-models-menu__list:last-child {
    margin-bottom: 88px;
  }
}

.makes-models-menu__list-item {
  padding: 0;
  border-bottom: 1px solid var(--border-colour);
}

.makes-models-menu__make-new-on-carwow {
  display: flex;
  padding-left: 8px;
}

.makes-models-menu__make-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 48px;
  margin-right: 16px;
}

.makes-models-menu-icons {
  margin-left: auto;
  align-self: center;
  display: flex;
}

.makes-models-menu-icons--model-step {
  align-items: center;
  display: flex;
}

.makes-models-menu-icon {
  margin-left: 8px;
}

.makes-models-menu-footer {
  height: 48px;
  display: flex;
  justify-content: center;
}

.makes-models-menu-footer-legend {
  display: flex;
  align-items: center;
}
.makes-models-menu-footer-legend:first-child {
  margin-right: 24px;
}

.makes-models-menu-footer-legend__description {
  font-size: var(--body-small-font-size);
  line-height: var(--body-small-line-height);
  margin-left: 8px;
}

.makes-models-menu__model {
  padding-left: 24px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.makes-models-menu__list-recommendation {
  border-bottom: 1px solid var(--border-colour);
}

.makes-models-menu__recommendation-link {
  background-color: var(--grey-extra-light);
  box-shadow: 0 2px 4px 0 var(--shadow-colour);
  padding-top: 18px;
  padding-left: 28px;
  padding-bottom: 18px;
}
.makes-models-menu__recommendation-link:hover {
  box-shadow: 0 3px 6px 0 var(--shadow-colour);
}

.makes-models-menu__recommendation-copy {
  flex-grow: 1;
  padding-left: 16px;
}

.makes-models-menu__recommendation-name {
  font-weight: var(--bold);
}

.makes-models-menu__recommendation-subheading {
  color: var(--text-black-dim);
}

.makes-models-menu__model-izmo-photo {
  width: 68px;
  height: 46px;
}

.makes-models-menu__recommendation-caret-right {
  margin-right: -8px;
}

.makes-models-menu__link {
  color: var(--black);
  display: flex;
  align-items: center;
  padding-left: 16px;
  padding-right: 24px;
  text-decoration: none;
  cursor: pointer;
}
.makes-models-menu__link:hover {
  background-color: var(--grey-extra-light);
}

.makes-models-menu__link-with-image {
  color: var(--black);
  cursor: pointer;
  text-decoration: none;
}
.makes-models-menu__link-with-image:hover {
  background-color: var(--grey-extra-light);
}

.makes-models-menu__name {
  display: flex;
  flex-direction: column;
}

.makes-models-menu__subtitle {
  font-size: var(--caption-font-size);
  line-height: var(--caption-line-height);
  font-weight: var(--normal);
}

.makes-models-menu__container {
  display: flex;
  justify-content: space-between;
  padding: 8px 16px;
}

.makes-models-menu__izmo-image {
  height: 72px;
  width: 120px;
}

.makes-models-menu__imagin-image {
  height: 72px;
  width: 120px;
}

.makes-models-menu__izmo-image--logo {
  background-color: var(--grey-extra-light);
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

@media screen and (max-width: 1024px) {
  .makes-list-one-column {
    width: 100%;
    margin-right: 0;
  }
}
@media screen and (max-width: 650px) {
  .makes-models-menu__spinner {
    height: 100%;
  }
  .makes-models-menu__model-izmo-photo {
    width: 60px;
    height: 41px;
  }
  .makes-models-menu__recommendation-caret-right {
    margin-right: -16px;
  }
}
.news-article {
  background-color: var(--factory-white);
}

.news-article__author {
  font-weight: var(--bold);
}

.news-article__social-share {
  margin-bottom: 32px;
}

.news-article__body {
  display: flex;
  flex-direction: column;
  padding-top: 32px;
  padding-bottom: 16px;
}
.news-article__body::after {
  clear: both;
  content: "";
  display: block;
}
.news-article__body {
  max-width: var(--grid-max-width);
  margin-left: auto;
  margin-right: auto;
}
.news-article__body {
  padding-left: var(--grid-padding);
  padding-right: var(--grid-padding);
}
@media screen and (min-width: 651px) {
  .news-article__body {
    padding-top: 48px;
  }
}
@media screen and (min-width: 1025px) {
  .news-article__body {
    flex-direction: row;
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

.news-article__main {
  margin-bottom: 32px;
  flex: 0 0 auto;
  width: calc(100% - 24px);
  margin-right: 12px;
  margin-left: 12px;
}
@media screen and (min-width: 1025px) {
  .news-article__main {
    flex: 0 0 auto;
    width: calc(66.6666666667% - 24px);
    margin-right: 12px;
    margin-left: 12px;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 1025px) {
  .news-article__main .news-article__buy_sell_wow {
    display: none;
  }
}

.news-article__side {
  flex: 0 0 auto;
  width: calc(100% - 24px);
  margin-right: 12px;
  margin-left: 12px;
}
@media screen and (min-width: 1025px) {
  .news-article__side {
    flex: 0 0 auto;
    width: calc(33.3333333333% - 24px);
    margin-right: 12px;
    margin-left: 12px;
    align-self: start;
    position: sticky;
    top: 0;
  }
}

.news-article__buy_sell_wow {
  margin: 16px 0;
}
@media screen and (min-width: 1025px) {
  .news-article__buy_sell_wow {
    margin-top: 0;
  }
}

.news-article__side .news-article__buy_sell_wow {
  display: none;
}
.news-article__side .news-article__buy_sell_wow .buy_sell_wow__actions-action {
  flex-grow: 1;
  flex: 0 0 auto;
  width: calc(100% - 24px);
  margin-right: 12px;
  margin-left: 12px;
}
@media screen and (min-width: 1025px) {
  .news-article__side .news-article__buy_sell_wow {
    display: block;
  }
}

.news-article__summary {
  font-weight: var(--bold);
}
.news-article__summary > p:first-child {
  margin-top: 0;
}

.news-article__key-facts {
  list-style: none;
  margin-top: 0;
  margin-bottom: 32px;
}
@media screen and (min-width: 651px) {
  .news-article__key-facts {
    margin-bottom: 40px;
  }
}

.news-article__key-facts-item {
  padding-left: 0;
  margin-bottom: 24px;
}
@media screen and (min-width: 651px) {
  .news-article__key-facts-item {
    display: flex;
    margin-bottom: 16px;
  }
}

.news-article__key-facts-title-wrap {
  margin-bottom: 8px;
}
.news-article__key-facts-title-wrap::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  background-color: var(--blue);
}
@media screen and (min-width: 651px) {
  .news-article__key-facts-title-wrap {
    width: 25%;
  }
}
@media screen and (min-width: 1025px) {
  .news-article__key-facts-title-wrap {
    width: 28.5714285714%;
  }
}

.news-article__key-facts-title {
  font-size: var(--heading-4-font-size);
  line-height: var(--heading-4-line-height);
  font-weight: var(--bold);
  font-family: var(--heading-4-font-family);
  letter-spacing: var(--heading-4-letter-spacing);
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 8px;
}

.news-article__key-facts-desc > p {
  margin-top: 0;
  margin-bottom: 12px;
}
@media screen and (min-width: 651px) {
  .news-article__key-facts-desc {
    padding-left: 12px;
  }
}

.news-article__prose figure {
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}
.news-article__prose figure > img {
  width: 100%;
}
.news-article__prose figcaption {
  font-size: var(--body-medium-font-size);
  line-height: var(--body-medium-line-height);
  color: var(--text-black-dim);
}
.news-article__prose .embed-video + p {
  margin-top: 8px;
}

iframe[src^="https://www.youtube.com/embed/"] {
  max-width: 100%;
  height: 300px;
}
@media screen and (min-width: 651px) {
  iframe[src^="https://www.youtube.com/embed/"] {
    height: 416px;
  }
}
.embed-video iframe[src^="https://www.youtube.com/embed/"] {
  height: 100%;
}

.news-article__signup-cta {
  margin-bottom: 32px;
}

@media screen and (min-width: 1025px) {
  .news-article__signup-cta--mobile {
    display: none;
  }
}

.news-article__signup-cta--desktop {
  display: none;
  box-shadow: 0 6px 10px -5px var(--black);
}
@media screen and (min-width: 1025px) {
  .news-article__signup-cta--desktop {
    display: block;
    position: sticky;
    top: 0;
  }
}

.news-article__related {
  margin-bottom: 32px;
}
@media screen and (min-width: 651px) and (max-width: 1024px) {
  .news-article__related {
    margin-bottom: 16px;
  }
}

.news-article__related-title {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: var(--heading-4-font-size);
  line-height: var(--heading-4-line-height);
}

.news-article__related-item-wrap {
  list-style: none;
  margin-top: 0;
  margin-bottom: 0;
}
@media screen and (min-width: 651px) and (max-width: 1024px) {
  .news-article__related-item-wrap {
    display: flex;
    flex-wrap: wrap;
    margin-right: -12px;
    margin-left: -12px;
  }
}

.news-article__related-item {
  margin-bottom: 16px;
  padding-left: 0;
}
@media screen and (min-width: 651px) and (max-width: 1024px) {
  .news-article__related-item {
    flex: 0 0 auto;
    width: calc(50% - 24px);
    margin-right: 12px;
    margin-left: 12px;
  }
}

.news-article__related-link {
  display: flex;
  border-radius: var(--border-radius-medium);
  background-color: var(--white);
  box-shadow: 0 2px 4px 0 var(--shadow-colour);
  overflow: hidden;
  min-height: 96px;
}
@media screen and (min-width: 651px) {
  .news-article__related-link {
    height: 100%;
  }
}

.news-article__related-media {
  width: 50%;
  min-height: 96px;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-article__related-description {
  width: 50%;
  font-size: var(--body-medium-font-size);
  line-height: var(--body-medium-line-height);
  font-weight: var(--bold);
  padding: 12px;
}

.social-share__title {
  margin-top: 0;
  margin-bottom: 16px;
}

.social-share__items-wrap {
  margin-top: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  align-items: center;
}

.social-share__item {
  padding-left: 0;
}
.social-share__item:not(:last-child) {
  margin-right: 16px;
}

.social-share__link {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--blue);
  border-radius: 50%;
  transition: background-color 0.15s;
}
.social-share__link:hover {
  background-color: var(--blue-light);
}

.social-follow {
  margin-bottom: 32px;
}

.social-follow__title {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: var(--heading-4-font-size);
  line-height: var(--heading-4-line-height);
}

.social-follow__item-wrap {
  margin-top: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.social-follow__item {
  padding-left: 0;
  display: flex;
  align-items: center;
}

.social-follow__link {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  background-color: var(--grey-dark);
  border-radius: 50%;
  transition: background-color 0.15s;
  text-decoration: none;
}
.social-follow__link:hover {
  background-color: var(--grey);
}

.social-follow__count {
  font-size: var(--body-medium-font-size);
  line-height: var(--body-medium-line-height);
  margin-left: 8px;
}

/* stylelint-disable-line */
.buy_sell_wow_wrapper {
  margin-top: 10px;
  display: flex;
  justify-content: center;
}
.buy_sell_wow_wrapper .buy_sell_wow {
  background: var(--black);
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  flex: 1;
  padding: 24px;
}
@media screen and (min-width: 651px) {
  .buy_sell_wow_wrapper .buy_sell_wow {
    padding: 16px 24px;
  }
}
.buy_sell_wow_wrapper .buy_sell_wow__inner {
  position: relative;
}
.buy_sell_wow_wrapper .buy_sell_wow__icon {
  display: flex;
}
.buy_sell_wow_wrapper .buy_sell_wow__title {
  align-items: center;
  display: flex;
  flex-direction: row;
  margin-bottom: 12px;
}
.buy_sell_wow_wrapper .buy_sell_wow__title h2 {
  text-align: left;
  margin-bottom: 0;
  margin-top: 0;
  color: var(--white);
  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);
  text-transform: var(--heading-text-transform);
  font-family: var(--font-family-headlines);
  line-height: var(--heading-3-line-height);
}
@media screen and (min-width: 651px) and (max-width: 1024px) {
  .buy_sell_wow_wrapper .buy_sell_wow__title h2 {
    max-width: 600px;
  }
}
@media screen and (min-width: 1025px) {
  .buy_sell_wow_wrapper .buy_sell_wow__title h2 {
    max-width: 700px;
  }
}
@media screen and (min-width: 651px) {
  .buy_sell_wow_wrapper .buy_sell_wow__title h2 {
    text-align: left;
  }
}
.buy_sell_wow_wrapper .buy_sell_wow__title img {
  display: block;
  margin: auto;
  padding: 6px 0;
  max-width: 200px;
}
.buy_sell_wow_wrapper .buy_sell_wow__title .inline-icon {
  margin-right: 8px;
}
.buy_sell_wow_wrapper .buy_sell_wow__sub_title {
  color: var(--white);
}
.buy_sell_wow_wrapper .buy_sell_wow__trust-wrap {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  text-align: center;
}
.buy_sell_wow_wrapper .buy_sell_wow__title-wow {
  height: 1rem;
}
@media screen and (min-width: 651px) {
  .buy_sell_wow_wrapper .buy_sell_wow__title-wow {
    height: 1.5rem;
  }
}
.buy_sell_wow_wrapper .buy_sell_wow__title-fullstop {
  margin-left: -8px;
}
.buy_sell_wow_wrapper .buy_sell_wow__action-wrap {
  position: relative;
  margin-top: 16px;
  margin-bottom: 8px;
}
.buy_sell_wow_wrapper .buy_sell_wow__actions {
  display: flex;
  flex-wrap: wrap;
  margin-right: -12px;
  margin-left: -12px;
}
@media screen and (min-width: 651px) {
  .buy_sell_wow_wrapper .buy_sell_wow__actions {
    justify-content: center;
  }
}
.buy_sell_wow_wrapper .buy_sell_wow__actions-action {
  flex: 0 0 auto;
  width: calc(100% - 24px);
  margin-right: 12px;
  margin-left: 12px;
  margin-bottom: 16px;
}
@media screen and (min-width: 651px) {
  .buy_sell_wow_wrapper .buy_sell_wow__actions-action {
    flex: 0 0 auto;
    width: calc(50% - 24px);
    margin-right: 12px;
    margin-left: 12px;
  }
}
.buy_sell_wow_wrapper .buy_sell_wow__secondary-cta {
  border-width: 2px;
}
.buy_sell_wow_wrapper .buy_sell_wow__actions .btn:first-child {
  margin-bottom: 12px;
}
.buy_sell_wow_wrapper .buy_sell_wow__link-wrap {
  color: var(--white);
}
.buy_sell_wow_wrapper .buy_sell_wow__link-wrap a {
  color: var(--white);
  font-weight: var(--bold);
}