/* Home Retreats Section */
.home-retreats-section {
    padding: 0 0 100px 0;
    position: relative;
    overflow: hidden;
    /* Background color handled by body usually, but let's ensure it's not transparent if needed 
       User set body to #F6F6F6, so we can leave transparent or set specific.
    */
}

.retreats-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.retreats-heading {
  color: #000;
  font-family: Golden;
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: 60px;
  letter-spacing: 2.5px;
  margin: 0;
}

/* Arrows - Reuse logic */
.retreats-nav-arrows {
    display: flex;
    gap: 30px;
}

.retreats-prev svg, .retreats-next svg {
    transition: opacity 0.3s, transform 0.2s;
}

.retreats-prev, .retreats-next {
    cursor: pointer;
    opacity: 1; 
}

.retreats-prev:hover, .retreats-next:hover {
    opacity: 0.5;
    transform: scale(1.1);
}

/* Slider */
.swiper.retreatsSwiper {
    overflow: hidden;
    padding-bottom: 20px; /* Keep bottom padding if needed for shadows/clearance */
    width: 100%;
}

.swiper-slide.retreat-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: auto;
}

.retreat-image-wrap {
  height: auto;
  width: 100%;
  overflow: hidden;
  display: flex;
}

.retreat-main-img {
  width: 100%;
  object-fit: cover;
  margin: 20px;
  display: flex;
  border-radius: 20px;
  height: 267px;
  margin-bottom: 0px;
}

.retreat-content {
    padding: 12px 20px 33px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.retreat-title {
  margin-top: 0px;
  margin-bottom: 10px;
  color: #093A58;
  font-family: Outfit;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: 1px;
}

.retreat-date {
  color: #9A9A9A;
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 200;
  line-height: 27px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.retreat-date svg {
    fill: #999;
}

.retreat-desc {
  color: #000;
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 200;
  line-height: 27px;
  margin-bottom: 17px;
}

/* Button */
.retreat-btn-wrapper {
    margin-top: auto;
}

.retreat-btn {
  border-radius: 900px;
  background: #F76A32;
  width: 180px;
  height: 50px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  text-align: center;
  font-family: Golden;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  transition: background-color 0.3s;
}

.retreat-btn:hover {
    background-color: #d95a28;
    color: #fff;
}

/* Responsive */
@media screen and (max-width: 1279px) {
  .retreats-header {
    margin-bottom: 10px;
  }
  .retreats-heading {
    font-size: 40px;
  }
  .retreat-main-img {
    height: 210px;
  }
  .retreat-title {
    font-size: 18px;
  }
  .retreat-date svg {
    width: 21px;
    height: 21px;
  }
  .retreat-date {
    font-size: 16px;
  }
  .retreat-desc {
    font-size: 16px;
  }
  .home-retreats-section {
    padding: 0 0 40px 0;
  }
}
@media screen and (max-width: 726px) {
  .retreats-heading {
    font-size: 27px;
    line-height: unset;
  }
  .retreats-prev svg, .retreats-next svg {
    width: 21px;
    height: 21px;
  }
}