.block-locations {
  padding: 80px 0;
}

.block-locations__title {
  text-align: center;
  margin-bottom: 48px !important;
}

.block-locations__grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.block-locations__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 250px;
}

.block-locations__icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
}

.block-locations__city {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--tg-color-primary-black);
}

.block-locations__address {
  font-size: 14px;
  line-height: 1.6;
  color: var(--tg-color-primary-black);
  margin: 0;
}

@media screen and (max-width: 768px) {
  .block-locations {
    padding: 40px 0;
  }

  .block-locations__grid {
    gap: 40px;
  }

  .block-locations__card {
    max-width: 100%;
  }

  .block-locations__icon {
    width: 60px;
    height: 60px;
  }
}