/* 住宿地点模块 - 与 room-detail-page 同宽对齐 */
.room-location {
  margin-top: 48px;
  padding-top: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.dark .room-location {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.room-location__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 8px;
}

.room-location__address {
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 16px;
  color: #484848;
}

.dark .room-location__address {
  color: rgba(255, 255, 255, 0.75);
}

.room-location__map {
  width: 100%;
  height: 360px;
  border-radius: 16px;
  overflow: hidden;
  background: #f3f4f6;
}

.room-location__map-message {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 360px;
  padding: 24px;
  text-align: center;
  font-size: 0.9375rem;
  color: #6b7280;
  box-sizing: border-box;
}

.dark .room-location__map-message {
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 768px) {
  .room-location {
    margin-top: 32px;
  }

  .room-location__title {
    font-size: 20px;
  }

  .room-location__map {
    height: 280px;
  }

  .room-location__map-message {
    min-height: 280px;
  }
}
