main {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  justify-content: center;
  align-items: stretch;
  /* align-items: center; */
  /* margin: 1rem auto; */
  /* max-width: 1500px; */
  /* background-color: aquamarine; */
}

/* Map container */
#map {
  /* flex: 1 1 0; */
  flex-grow: 2;
  /* flex-shrink: 1; */
  min-width: 400px;
  min-height: 400px;
  max-width: 800px;
  /* min-height: 80%; */
  /* height: auto; */
  /* width: 400px; */
  /* height: 400px; */
  border: 1px solid #ccc;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.bigCard {
  /* flex: 1 1 0; */
  flex-grow: 3;
  /* flex-shrink: 1; */
  min-width: 400px;
  min-height: 400px;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  color: inherit;
  /* cursor: pointer; */
  /* text-decoration: none; */
  /* overflow: hidden; */
  /* background-color: #fff; */
}

.bigCard img {
  min-width: 50%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
}

.bigCard h3 {
margin: 0 0 0.5rem;
font-size: 1.2rem;
}
.bigCard p {
font-size: 0.9rem;
flex-grow: 1;
margin-bottom: 0.5rem;
}

.bigCard-content {
  padding: 20px;
}

.bigCard-content h1 {
  margin: 1rem 0;
  font-size: 2rem;
}

.bigCard-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 1rem 0;
}


.bigCard-content #description {
  font-size: 1.15rem;
}

.tags {
  margin-top: 15px;
}

.tags span {
  display: inline-block;
  background: #f0f0f0;
  color: #333;
  border-radius: 3px;
  padding: 6px 12px;
  margin: 0 8px 8px 0;
  font-size: 0.85rem;
  pointer-events: none; /*need filter options in url to be able to click on those tags*/
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #map {
    min-width: 300px;
  }

  .bigCard {
    min-width: 300px;
  }
}