.yacht-details-placeholder {
    width: 100%;
    height: 150px;
    background-color: #d8d8d8;
	background: -webkit-gradient(linear, left top, right top, from(#eee), color-stop(50%, #ccc), to(#eee));
	background: -o-linear-gradient(left, #eee 0%, #ccc 50%, #eee 100%);
	background: linear-gradient(to right, #eee 0%, #ccc 50%, #eee 100%);
	background-size: 200% 100%;
	-webkit-animation: gradient-flow 2s linear infinite;
	        animation: gradient-flow 2s linear infinite;
    position: relative;
    overflow: hidden;
    display: block;
	margin: 1em 0;
}

@-webkit-keyframes gradient-flow {
  0% {
    background-position: 100% 0; /* Start with the gradient off to the right */
  }
  100% {
    background-position: -100% 0; /* Move the gradient off to the left */
  }
}

@keyframes gradient-flow {
  0% {
    background-position: 100% 0; /* Start with the gradient off to the right */
  }
  100% {
    background-position: -100% 0; /* Move the gradient off to the left */
  }
}

#gwdyd_destination_search_results {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    gap: 1rem;
}

#gwdyd_destination_search_results .yacht-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(33.33% - 1rem);
            flex: 0 1 calc(33.33% - 1rem);
    max-width: calc(33.33% - 1rem);
	position: relative;
}

#gwdyd_destination_search_results .yacht-serp-template-img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    -o-object-fit: cover;
       object-fit: cover;
}

#gwdyd_destination_search_results h4 {
    color: #fff;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    margin: 0;
    padding: 3rem 0.5rem 0.25rem;
    font-size: 1.5rem;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(34, 58, 66, 1)), to(rgba(34, 58, 66, 0))) !important;
    background: -o-linear-gradient(bottom, rgba(34, 58, 66, 1) 0%, rgba(34, 58, 66, 0) 100%) !important;
    background: linear-gradient(0deg, rgba(34, 58, 66, 1) 0%, rgba(34, 58, 66, 0) 100%) !important;
    font-style: italic;
}

@media (max-width: 767px) {
	#gwdyd_destination_search_results .yacht-item {
		-webkit-box-flex: 1;
		    -ms-flex: 1 1 100%;
		        flex: 1 1 100%;
		max-width: 100%;
	}
}