:root {
  --hsd-mod-cwl-50-50-accent-background-color: #000;
  --hsd-mod-cwl-50-50-accent-text-color: #fff;
  --hsd-mod-cwl-50-50-accent-link-color: #fff;
}

/* Module Parent */
.hsd-mod-content-w-lifestyle-50-50 {
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: center;
  justify-items: center;
  max-width: 1440px;
  width: 100%;
}

.hsd-mod-cwl-50-50-reverse {
  grid-template-columns: 50% 50%;
}

.hsd-mod-cwl-50-50-reverse .hsd-mod-cwl-50-50-content {
  order: 1;
}

/* Image Cont */
.hsd-mod-cwl-50-50-img {
  width: 100%;
  height: 100%;
}

.hsd-mod-cwl-50-50-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content Cont */
.hsd-mod-cwl-50-50-content {
  margin: 1rem;
  padding: 4rem;
  box-sizing: border-box;
}

/* Accent styling */
.hsd-mod-cwl-50-50-accent {
  color: var(--hsd-mod-cwl-50-50-accent-text-color);
  background-color: var(--hsd-mod-cwl-50-50-accent-background-color);
}

.hsd-mod-cwl-50-50-accent a {
  color: var(--hsd-mod-cwl-50-50-accent-link-color);
}

/* Media Query for mobile */
@media screen and (max-width: 767px) {
  /* Module Parent */
  .hsd-mod-content-w-lifestyle-50-50 {
    grid-template-columns: 1fr;
  }

  /* Content Cont */
  .hsd-mod-cwl-50-50-content {
    margin: 1rem;
    padding: 1rem;
  }

  /* Have the content above the image */
  .hsd-mod-content-w-lifestyle-50-50 .hsd-mod-cwl-50-50-content {
    order: 2;
  }
}

/* Car Models */
.hsd-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.hsd-car-model {
  flex: 1 1 30%;
  margin: 0 15px;
  text-align: center;
}

.hsd-car-model img {
  max-width: 100%;
  height: auto;
}

.hsd-car-model a {
  text-decoration: none;
  color: black;
}

.hsd-car-model p {
  margin-top: 0;
  font-weight: bold;
}

@media (max-width: 768px) {
  .hsd-car-model {
    flex: 1 1 50%;
  }
}

@media (max-width: 480px) {
  .hsd-car-model {
    flex: 1 1 100%;
  }
}

  .revwid-container .revwid-box {
    height: 100%;
  }