/* Nearby Hotels Section */
.nearby-hotels-section {
  background-color: #000;
  padding: 50px 40px;
}

.nearby-hotels-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.nearby-hotels-title {
  text-align: center;
  margin: 0 0 50px 0;
}

.nearby-hotels-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.nearby-hotel-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(176, 166, 223, 0.2);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 26px;
}

.nearby-hotel-image-wrap {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.nearby-hotel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nearby-hotel-name {
  color: #fff;
  font-size: 26px;
  line-height: 1.3;
  font-weight: 700;
  margin: 22px 20px;
  min-height: 2.6em;
}

.nearby-hotel-map-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background-color: var(--event-color);
  color: var(--event-text-color, #000);
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  padding: 14px 24px;
  transition: opacity 0.25s ease;
}

.nearby-hotel-map-button:hover {
  opacity: 0.9;
}

@media (max-width: 1024px) {
  .nearby-hotels-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .nearby-hotels-section {
    padding: 40px 20px;
  }

  .nearby-hotels-title {
    margin-bottom: 30px;
  }

  .nearby-hotels-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .nearby-hotel-image-wrap {
    height: 250px;
  }

  .nearby-hotel-name {
    font-size: 22px;
  }
}
