@font-face {
  font-display: swap;
  font-family: "Merriweather";
  font-style: normal;
  font-weight: 400;
  src: url("/Content/fonts/merriweather-v33-latin-regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Merriweather";
  font-style: italic;
  font-weight: 400;
  src: url("/Content/fonts/merriweather-v33-latin-italic.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url("/Content/fonts/inter-v20-latin-regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  src: url("/Content/fonts/inter-v20-latin-700.woff2") format("woff2");
}
.results-container {
  display: flex;
  flex-direction: column;
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .results-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
  }
}
@media (min-width: 1024px) {
  .results-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.results-grid .item {
  clip-path: none;
  position: relative;
}
.results-grid .item .image-container {
  width: 100%;
  overflow: hidden;
  background: #333 no-repeat center center url("/Content/images/default-park-image.webp");
  background-size: cover;
  clip-path: polygon(30px 0, 100% 0, 100% 100%, 0 100%, 0 30px);
  position: relative;
  aspect-ratio: 7/5;
}
.results-grid .item .image-container .thumbnail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.results-grid .item .image-container .icon {
  position: absolute;
  bottom: 5px;
  right: 5px;
  border-radius: 50%;
  overflow: hidden;
  height: 50px;
  width: 50px;
}
.results-grid .item .text {
  color: #333;
  padding: 10px 0;
}
.results-grid .item .text .teaser {
  line-height: 2;
  font-family: "Merriweather", serif;
}
.results-grid .item h2 {
  padding: 10px 0;
  font-size: 16px;
  color: #c15727;
}
@media (min-width: 1024px) {
  .results-grid .item:after {
    content: "";
    width: 80px;
    height: 80px;
    background: #c79d3b url(/Content/images/icons/arrow-go-white.png) center center no-repeat;
    position: absolute;
    left: 50%;
    top: 40%;
    margin: -40px 0 0 -40px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    clip-path: polygon(15px 0, 100% 0, 100% 100%, 0 100%, 0 15px);
  }
}
.results-grid .item:hover .image-container,
.results-grid .item:hover .text {
  filter: blur(2px);
}
.results-grid .item:hover .text {
  background: rgba(0, 0, 0, 0.05);
}
.results-grid .item:hover:after {
  display: block;
  opacity: 1;
}
.results-grid .keywords span {
  font-size: 10px;
  line-height: 16px;
  height: 16px;
  padding: 0 3px;
  margin: 0 2px 2px 0;
  text-transform: uppercase;
  color: #999;
  border: 1px solid #999;
  font-family: "inter", "Arial Narrow", Arial, sans-serif;
}
.results-grid.results-grid-horz {
  grid-template-columns: 1fr;
  padding: 0 0 30px;
}
.results-grid.results-grid-horz .item-container {
  border-bottom: 1px solid #dadada;
}
.results-grid.results-grid-horz .item-container .text h2 {
  padding: 0 0 5px;
}
.results-grid.results-grid-horz .item-container::after {
  display: none;
}
.results-grid.results-grid-horz .item-container:hover .image,
.results-grid.results-grid-horz .item-container:hover .text {
  filter: none;
}
.results-grid.results-grid-horz .icon {
  width: 30px;
  height: 30px;
  margin: 0 15px 0 0;
  line-height: 30px;
}
.results-grid.results-grid-horz .icon img {
  width: 30px;
}
.results-grid.results-grid-horz .url {
  margin-top: 5px;
  color: #c15727;
}

/*# sourceMappingURL=listing-grids.css.map */
