.locations-hero {
  margin-bottom: 22px;
}

.locations-hero .hero__image {
  position: relative;
  height: 60vh;
  border-radius: 20px;
  margin-bottom: -70px;
  overflow: hidden;
  box-shadow: 0px 3px 6px #00000029;
}

.locations-hero .hero__title--container {
  padding: 0 5px;
}

.locations-hero .hero__title {
  position: relative;
  z-index: 3;
  padding: 1rem 0;
  border-radius: 20px;
  box-shadow: 0px 3px 6px #00000029;
  background: var(--white);
}

.locations-hero .hero__title--title {
  padding: 0 86px;
}

.locations-hero .hero__title h1 {
  color: var(--blue-dk);
}

.locations-hero .hero__title .breadcrumbs a,
.locations-hero .hero__title .breadcrumbs {
  color: var(--gray);
}

.locations-hero .locations-hero__info--container {
  /* padding-left: 2.5rem; */
  /* padding-right: 2.5rem; */
}

.locations-hero .locations-hero__info {
  position: relative;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  overflow: hidden;
  box-shadow: 0px 3px 6px #00000029;
  background: var(--blue-gradient);
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: space-between;
  color: var(--white);
  padding: 50px 70px;
}

.locations-hero .locations-hero__info a {
  color: var(--white);
}

.locations-hero .locations-hero__info a:hover {}

.locations-hero .locations-hero__info div {
  position: relative;
  z-index: 3;
}

.locations-hero .locations-hero__info h2 {
  color: var(--white);
  text-transform: uppercase;
}

.locations-hero .locations-hero__phone {
  font-weight: 500;
}

.locations-hero .locations-hero__address {
  font-weight: 500;
}

.locations-hero .locations-hero__hours {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  /* grid-auto-flow: column; */
  grid-auto-flow: row;
  column-gap: 46px;
}

.locations-hero .locations-hero__hour {
  display: flex;
  gap: 0.5rem;
}

.locations-hero .locations-hero__hour .days {
  font-weight: 700;
}

@media (max-width: 1500px) {
  .locations-hero .locations-hero__hours {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: unset;
    grid-auto-flow: row;
  }
}

@media (max-width: 768px) {
  .locations-hero .hero__title--title {
    padding: 0 40px;
  }

  .locations-hero .locations-hero__info {
    padding: 1rem 2rem;
  }

  .locations-hero .locations-hero__hour {
    justify-content: left;
  }
}