@media (min-width: 768px) {
  body.page-vacation-rentals .hero-search-container, body.vacation-rentals-single .hero-search-container {
    bottom: auto;
    top: 7rem;
  }
}

.module-accommodations h2 {
  font-weight: bold;
}

.vacation-rental-tiles {
  margin-top: 3em;
}
@media (min-width: 992px) {
  .vacation-rental-tiles {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
  }
}
.vacation-rental-tiles .item {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  margin-bottom: 2em;
}
@media (min-width: 992px) {
  .vacation-rental-tiles .item {
    margin-bottom: 0;
  }
}
.vacation-rental-tiles .item:before {
  content: "";
  width: 100%;
  height: 5rem;
  z-index: 1;
  bottom: 0;
  position: absolute;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.5);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 25%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
}
.vacation-rental-tiles .item > a {
  display: block;
  position: relative;
  overflow: hidden;
}
.vacation-rental-tiles .item > a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  background-color: #0d6b55;
  transition: opacity 500ms ease;
}
.vacation-rental-tiles .item > a:hover:before, .vacation-rental-tiles .item > a:focus:before {
  opacity: 0.75;
}
.vacation-rental-tiles .item > a:hover img, .vacation-rental-tiles .item > a:focus img {
  filter: blur(1px);
}
.vacation-rental-tiles .item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.vacation-rental-tiles .tile-title {
  pointer-events: none;
  position: absolute;
  bottom: 1rem;
  display: block;
  z-index: 5;
  color: #fff;
  font-family: "rockwell", serif;
  font-weight: bold;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 24px;
  font-size: clamp(20px, 3vw, 24px);
}

.destination-carousel .slick-track:has(> .slick-active ~ .slick-active) {
  gap: 2rem;
}
.destination-carousel .slick-slide img {
  width: 100%;
  height: auto;
}
.destination-carousel .item {
  overflow: hidden;
  border-radius: 2rem;
}
@media (min-width: 992px) {
  .destination-carousel .slick-next {
    right: auto;
    left: 45%;
  }
}
.destination-carousel .slick-disabled {
  display: none !important;
}

.rental-locations-list {
  list-style: none;
  display: grid;
}
@media (min-width: 768px) {
  .rental-locations-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .rental-locations-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.rental-locations-list li {
  margin-bottom: 1em;
}
.rental-locations-list li a {
  font-weight: bold;
  text-decoration: none;
}
.rental-locations-list li span {
  display: block;
}

.rental-carousel .slick-track:has(> .slick-active ~ .slick-active) {
  gap: 2rem;
}
.rental-carousel .slick-slide img {
  width: 100%;
  height: auto;
}
.rental-carousel .item {
  overflow: hidden;
  border-radius: 2rem;
}
@media (min-width: 992px) {
  .rental-carousel .slick-next {
    right: auto;
    left: 45%;
  }
}
.rental-carousel .slick-disabled {
  display: none !important;
}

.module-featured-destination {
  background: url(../images/bg-topo.jpg) repeat 0 0 #fbf9f6;
}
.module-featured-destination .content-col {
  margin: 2em 0 3em;
}
@media (min-width: 992px) {
  .module-featured-destination .content-col {
    margin: 0;
  }
}

.locations-h2 {
  color: #0d6b55;
  font-weight: bold;
  margin-top: 2em;
}