.mapBlock {
  padding: 112px 0;
  background: #eef5ff;
}

.mapBlock__container {
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
}

.mapBlock__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.mapBlock__col--map,
.mapBlock__col--content {
  display: flex;
  flex-direction: column;
}

.mapBlock__map {
  position: relative;
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  background: #eef5ff;
  min-height: 420px;
}
.mapBlock__map iframe,
.mapBlock__map .map-embed,
.mapBlock__map > * {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.mapBlock__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.mapBlock__top-text {
  color: #1c327c;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
}

.mapBlock__title {
  color: #1c1c1c;
  font-family: "Roboto", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.mapBlock__title-accent {
  color: #1c327c;
}

.mapBlock__text {
  color: #1c1c1c;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}
.mapBlock__text p {
  margin: 0 0 1rem 0;
}
.mapBlock__text p:last-child {
  margin-bottom: 0;
}

.mapBlock__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  background: #1c327c;
  color: #ffffff;
  border: 1px solid #1c327c;
  width: fit-content;
}
.mapBlock__button:hover {
  background: #112050;
  border-color: #112050;
}
.mapBlock__button:active {
  transform: translateY(1px);
}

.mapBlock__contacts {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 8px;
  max-width: 500px;
  width: 100%;
}
.mapBlock__contactItem {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: start;
  gap: 16px;
}
.mapBlock__contactIcon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}
.mapBlock__contactContent {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mapBlock__contactTitle {
  color: #1c1c1c;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}
.mapBlock__contactLink {
  color: #1c1c1c;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
.mapBlock__contactLink:hover {
  text-decoration: underline;
}

@media (max-width: 992px) {
  .mapBlock__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .mapBlock__title {
    font-size: 36px;
  }
}

@media (max-width: 600px) {
  .mapBlock {
    padding: 50px 0;
  }
  .mapBlock__title {
    font-size: 32px;
  }
}
