.location-tile {
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  border: 1px solid #CAC9C1;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  margin-bottom: 30px;
}

.location-tile__image {
  width: 47%;
  aspect-ratio: 16 / 10;
}

.location-tile__image img {
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  width: 100%;
}

.location-tile__copy {
  width: 47%;
  justify-content: space-between;
}

.location-tile__copy .contact-info {
  justify-content: space-between;
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 30px 0;
}

.location-tile__copy .contact-info .left,
.location-tile__copy .contact-info .right {
  width: 48%;
}

.location-tile__copy .copy {
  font-size: 14px;
}

@media (max-width: 767px){
  
  .location-tile {
    flex-direction: column;
    padding: 20px;
  }
  .location-tile__image {
    width: 100%;
  }
  .location-tile__copy {
    width: 100%;
    padding: 30px 0 0 0;
  }
  .location-tile__copy .contact-info {
    flex-direction: column;
  }
  .location-tile__copy .contact-info .left {
    width: 100%;
    margin-bottom: 15px;
  }
  .location-tile__copy .contact-info .right {
    width: 100%;
  }