.yandex-map-wrapper {
  display: grid;
  height: 600px;
  max-width: 100%;
  grid-template-columns: 380px auto;
}

.object-list {
  overflow-y: auto;
  padding: 20px 0;
  color: var(--body-text);
  font-family: var(--font-primary);
}

.object-list h3 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: bold;
  padding-left: 30px;
  padding-right: 30px;
}

.object-list-item {
  padding: 10px 15px;
  margin-bottom: 5px;
  cursor: pointer;
  transition: background 0.2s;
  padding-left: 30px;
  padding-right: 30px;
}

.object-list-item:hover {
  background: #333;
  color: white;
}

.ymap-container {
  flex-grow: 1;
  min-height: 100%;
  position: relative;
}




/* ADAPTIVE */
@media (max-width: 768px) {
  .yandex-map-wrapper {
    grid-template-columns: 1fr;
    row-gap: 2rem;
  }
}