.guesty-carousel {
    height: 350px;
    margin-bottom: 3rem;
}
.result {
    width: calc((100%/3) - 2rem);
    margin: 1rem;
    /* position: relative; */
    border-radius: 10px;
    /* overflow: hidden; */
}
.result > svg {
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    transform: translate(10px, -10px);
    z-index: 1000000;
}
.result > svg[data-pet-friendly="false"] { display: none }
.result .wrapping-link {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.result .thumbnail {
    height: 250px;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    border-radius: 8px;
    margin: 0 0 1rem;
}
.result .info-container-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 1;
}
.result .info-container-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 80%;
    opacity: 1;
    line-height: 1;
}
.result .info-container .name {
    line-height: 0.9;
    font-size: 2rem;
    margin: 0 !important;
}
.result .info-container .price {
    font-size: 1.25rem;
    font-family: var(--fontB) !important;
    line-height: 1;
}


/* Mobile */

@media screen and (max-width: 768px) {

    .result {
        width: 100%;
    }

}