

.location-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.location-card:hover {
  background-color: #f9fafb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transform: translateX(3px);
}

.location-card.active {
  border-color: #EBCF01;
  background-color: #fef9e7;
}

.location-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: black;
    margin-bottom: 0.25rem;
}

.location-card p {
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 0.25rem;
}

.location-image img {
    max-width: 162px !important;
}

 .location-content a.btn {
    background: #9294C5 !important;
    border: none;
    border-radius: 20px;
    color:#ffffff;
    font-size: 15px;
}
.location-content a.btn:hover {
    background: #7a7cb0 !important; 
    transform: scale(1.03); 
}
.map-wrapper {
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-content {
  width: 100%;
  height: 500px;
  display: none;
}

.map-content.active {
  display: block;
}




.location-wrapper iframe {
    width: 100%;
    height: 800px;
}

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

  .map-column {
    order: -1;
    height: 300px;
    margin-bottom: 1.5rem;
  }

  .location-cards-wrapper {
    overflow: visible;
  }
}


.location-wrapper {
  overflow-x: hidden;
  width: 100%;
  box-sizing: border-box;
}

/* Prevent individual scrollable columns from overflowing */
.location-cards-wrapper
/* .map-column, */
/* .map-wrapper, */
/* .map-content */
 {
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}