.our-locations {
  padding: 0 0 120px;
  background-color: var(--our-locations-bg, #ffffff);
  color: #1a1a1a;
  font-family: "Roboto", sans-serif;
}

.our-locations__header {
  max-width: 760px;
  margin-bottom: 40px;
}

.our-locations__title {
  margin-bottom: 20px;
}

.our-locations__description p {
  margin: 0;
  color: #4a4a4a;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
}

.our-locations__map-wrap {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  border-radius: 25px;
  background-color: rgba(0, 45, 114, 0.1);
}

.our-locations__map {
  position: absolute;
  inset: 0;
}

.our-locations__map-status {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: #002d72;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.22);
}

.our-locations__map--ready .our-locations__map-status {
  display: none;
}

.our-locations__map--error .our-locations__map-status {
  color: #8a1f1f;
}

.our-locations__map-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.our-locations__panel {
  --shape-width: 40px;
  --shape-height: 220px;
  --shape-offset-y: 50px;
  position: absolute;
  top: 35px;
  left: 35px;
  bottom: 35px;
  z-index: 2;
  width: min(520px, calc(52% - 35px));
  border-radius: 25px;
  background-color: #002d72;
  -webkit-mask-image: linear-gradient(#fff 0 0), var(--our-locations-subtract);
  mask-image: linear-gradient(#fff 0 0), var(--our-locations-subtract);
  -webkit-mask-size: 100% 100%, var(--shape-width) var(--shape-height);
  mask-size: 100% 100%, var(--shape-width) var(--shape-height);
  -webkit-mask-position: 0 0, calc(100% + 8px) var(--shape-offset-y);
  mask-position: 0 0, calc(100% + 8px) var(--shape-offset-y);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.our-locations__panel-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 40px 70px 40px 40px;
}

.our-locations__item--divider {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.our-locations__item-title {
  margin: 0 0 16px;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
}

.our-locations__item-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.our-locations__item-row + .our-locations__item-row {
  margin-top: 10px;
}

.our-locations__item-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.our-locations__item-address,
.our-locations__item-phone {
  margin: 0;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}

.our-locations__item-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.42);
  text-underline-offset: 3px;
}

.our-locations__item-link:hover,
.our-locations__item-link:focus-visible {
  text-decoration-color: #ffffff;
}

.our-locations__direction {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: #ffffff;
  font-family: "Foco", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.our-locations__direction:hover,
.our-locations__direction:focus-visible {
  opacity: 0.82;
}

.our-locations__direction-icon {
  font-size: 14px;
}

@media (max-width: 1200px) {
  .our-locations__map-wrap {
    min-height: 680px;
  }

  .our-locations__panel {
    width: min(480px, calc(58% - 35px));
  }
}

@media (max-width: 992px) {
  .our-locations {
    padding-bottom: 80px;
  }

  .our-locations__map-wrap {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 20px;
    gap: 20px;
    background-color: #f4f4f4;
  }

  .our-locations__map {
    position: relative;
    min-height: 280px;
    border-radius: 20px;
    overflow: hidden;
  }

  .our-locations__panel {
    position: relative;
    top: auto;
    left: auto;
    bottom: auto;
    width: 100%;
    min-height: 0;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .our-locations__panel-inner {
    height: auto;
    padding: 28px 24px;
  }
}

@media (max-width: 767px) {
  .our-locations {
    padding-bottom: 60px;
  }

  .our-locations__map {
    min-height: 240px;
  }

  .our-locations__panel-inner {
    padding: 24px 20px;
  }

  .our-locations__description p {
    font-size: 14px;
    line-height: 20px;
  }

  .our-locations__title {
    margin-bottom: 10px;
  }

  .our-locations__item-address,
  .our-locations__item-phone {
    font-size: 14px;
  }

  .our-locations__direction {
    font-size: 15px;
  }

  .our-locations__map-wrap {
    padding: 15px;
  }

  .our-locations__item-title {
    font-size: 17px;
    line-height: 23px;
  }
}
