.location {
  padding: 80px 0;
  background: #fafafa;
}

.location-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.location-inner {
  max-width: 1400px;
}

.location-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.location-map iframe {
  width: 100%;
  height: 350px;
  border: 0;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.location-map {
  flex: 1.2;
}

.location-info {
  flex: 1;
  font-size: 1rem;
  line-height: 1.5;
}

.location-info p {
  margin-bottom: 20px;
}

.location-btn {
  margin-top: 10px;
  display: inline-block;
}

/* адаптив */
@media (max-width: 900px) {
  .location-grid {
    flex-direction: column;
    text-align: center;
  }

  .location-map iframe {
    height: 300px;
  }
}
