.camp-row{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em;
}
.camp-column {
  width: calc(33% - 2em);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
    position: relative;
  }
  .camp-column .product-wrapper {
    position: relative;
    z-index: 99;
    flex-grow: 1;
    padding: 2em;
}
  .camp_overlay {
    display: block;
    width: 100%;
    height: 100%;
    transition: all .2s ease-in-out; 
    position: absolute;
    opacity: .95;
    border-radius: 15px;
}    
.camp-column:hover .camp_overlay {
    opacity: 1;
}  

.camp_img_overlay {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover!important;
  background-position: center!important;
  border-radius: 15px;
}

.camp-column h2{
  font-size:1.9em;
  margin-bottom: 0;
}
.camp-column h4{
  margin-bottom: 1.5em!important;
}
.additional_details {
  margin: 1.75em 0;
}
.camp-column a.book-now {
  color: #2d85bd!important;
  background: #fff;
  opacity: 1!important;
  display: inline-block;
  padding: 1em 2em;
  border-radius: 30px;
}
a.fully_booked {
  background: transparent;
  opacity: 1!important;
  display: inline-block;
  padding: 1em 2em;
  border-radius: 30px;
  color: #fff;
  border: 1px solid #fff;
  transition: all .2s ease-in-out!important; 
}
a.fully_booked:hover {
  background: #000;
  border-color: #000;
}

@media only screen and (max-width: 767px) {
  .camp-column {
    width: 100%;
  }
}



/*************** 21 / 08 changes **********/

.camp-row.one-col .camp-column{
  width: calc(100% - 2em);
}
.camp-row.two-col .camp-column{
  width: calc(50% - 2em);
}

/* Message displayed when there are no camps available for provided shortcode filters */
.no_camps {
    padding: 1em;
    background: #f0f0f0;
    font-weight: 300;
    width: auto!important;
    display: flex;
    max-width: 920px;
    text-align: center;
    justify-content: center;
    margin: auto;
}

/* Mobile version */
@media (max-width: 768px) {  /* Adjust the breakpoint as needed */
    .camp-column {
        width: 100%!important;
    }
}
