.location-video {
  display: flex;
  gap: 28px;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}

.location-video h2 {
  margin-bottom: 2rem;
}

.location-video .location-video__content {
  border-radius: 20px;
  padding: 56px 70px;
  padding-right: 24px;
  background: var(--blue-t);
  color: var(--blue-dk);
  /* min-width: 600px; */
  width: calc(40% - 14px);
  box-shadow: 4px 4px 6px #00000017;
  align-self: stretch;
}

.location-video .location-video__content h2 {
  color: var(--blue-dk);
}

.location-video .location-video__email,
.location-video .location-video__phone,
.location-video .location-video__address {
  display: inline-block;
  color: var(--blue-dk);
  margin-bottom: 0.75rem;
}

.location-video .location-video__address {
  position: relative;
}

.location-video .location-video__address .icon {
  font-size: 32px;
  /*   position: absolute;
  top: 50%;
  right: calc(100%);
  transform: translateY(-50%); */
  position: relative;
}

.location-video .location-video__phone {
  font-weight: 800;
  color: var(--blue-dk);
}

.location-video .location-video__amenities {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  column-gap: 1rem;
}

.location-video .location-video__amenity {
  width: calc(50% - 0.5rem);
  /* display: block; */
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  line-height: 1.2;
  text-align: left;
}

.location-video .location-video__content--title {
  line-height: 1;
  margin-bottom: 0;
  color: var(--blue-dk);
}

.location-video .location-video__video {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  width: calc(60% - 14px);
  box-shadow: 4px 4px 6px #00000017;
  aspect-ratio: 16/9;
}

.location-video .location-video__video.location-video__image {
  align-self: stretch;
}

.location-video .button-row {
  margin-top: 1rem;
}

@media (max-width: 1200px) {
  .location-video {
    align-items: center;
  }

  .location-video {
    flex-direction: column;
  }

  .location-video .location-video__content {
    width: 70%;
    text-align: center;
    padding: 30px 40px;
    align-self: center;
  }

  .location-video .location-video__video.location-video__image {
    align-self: center;
  }

  .location-video .location-video__content ul {}

  .location-video .location-video__video {
    width: 70%;
    aspect-ratio: 16/9;
  }

  .location-video .button-row {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .location-video .location-video__content {
    width: 100%;
  }

  .location-video .location-video__video {
    width: 100%;
  }

}