.location-card {
  --gap: 40px;
}
.location-card img {
  display: block;
}

.location-card__wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: var(--gap);
}

.location-card__phone {
  display: block;
  margin-top: 5px;
}

.location-card__links {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}

@media (min-width: 992px) {
  .location-card {
    --gap: 80px;
  }
  .location-card__wrap {
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-direction: row;
        flex-direction: row;
  }
  .location-card__col {
    -ms-flex: 1;
        flex: 1;
  }
  .location-card__col[data-col=image] {
    -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    -ms-flex-order: 0;
        order: 0;
    width: 50%;
  }
  .location-card__col[data-col=details] {
    -ms-flex-order: 1;
        order: 1;
  }
}
@media (min-width: 992px) {
  .block[type=location-info] {
    padding-top: 0;
  }
  .block[type=location-info] .location-card {
    --offset: 10vw;
    --offsetLimit: 100px;
    margin-top: min(var(--offset), var(--offsetLimit));
  }
  .block[type=location-info] .location-card .location-card__wrap {
    margin-top: min(var(--offset), var(--offsetLimit));
    position: relative;
    -ms-flex-align: stretch;
        align-items: stretch;
  }
  .block[type=location-info] .location-card .location-card__col[data-col=details] {
    -ms-flex-item-align: end;
        align-self: end;
    margin-top: min(var(--offset), var(--offsetLimit));
  }
  .block[type=location-info] .location-card .location-card__col[data-col=image] {
    position: relative;
    z-index: 1;
    display: -ms-flexbox;
    display: flex;
    margin-top: max(var(--offset) * -1, var(--offsetLimit) * -1);
  }
  .block[type=location-info] .location-card .location-card__col[data-col=image] img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
  }
}
