.maps_module_wrapper {
  display: flex;
  flex-direction: column;
  padding: var(--gSectionPadding);
  background-color: #f8efe7;
}

.maps_module_title {
  max-width: var(--gMaxWidth);
  margin: 0 auto;
  text-align: center;
  padding-bottom: var(--gGap);
}

.maps_module_container {
  max-width: var(--gMaxWidth);
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: var(--gGap);
  width: 100%;
  height: 500px;
}

.maps_module_container > :first-child {
  flex-basis: 33%;
  flex-grow: 0;
  flex-shrink: 0;
}

.maps_module_container > :last-child {
  flex: 1;
  min-width: 0;
}

.maps_module_block {
  display: flex;
  flex-direction: column;
  gap: var(--gGap);
  width: 100%;
  height: 100%;
}

.maps_module_block_item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 2.5rem;
  border: 2px solid #a5b2b5;
  height: 100%;
}

.maps_block_item_header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.maps_block_item_header h2 {
  font-size: 37px;
  font-weight: 700;
  letter-spacing: 0em;
  text-transform: none;
  color: #174959;
}

.maps_block_item_header_icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.maps_module_map_container {
  width: 100%;
  height: 100%;
  border: 2px solid #a5b2b5;
}

.maps_module_map_container iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

.maps_module_map_container_error {
  color: red;
  padding: 20px;
  border: 1px dashed red;
}

@media (max-width: 1280px) {
}

@media (max-width: 1024px) {
  .maps_module_container {
    display: flex;
    flex-direction: column;
    height: auto;
  }

  .maps_module_container > :first-child,
  .maps_module_container > :last-child {
    flex-basis: auto;
    flex-grow: 1;
    flex-shrink: 1;
  }

  .maps_module_block {
    display: flex;
    flex-direction: row;
  }

  .maps_module_block_item {
    padding: 2rem;
    width: 100%;
  }

  .maps_module_map_container {
    height: 450px;
  }
}

@media (max-width: 768px) {
  .maps_module_block {
    flex-direction: column;
  }

  .maps_module_block_item {
    padding: 1rem;
  }

  .maps_module_title {
    max-width: var(--gMaxWidth);
    margin: 0 auto;
    text-align: center;
    padding-bottom: 40px;
  }

  .maps_module_map_container {
    height: 350px;
  }
}
