.homepage-booking-widget {
    background: #242424 url(https://assets.simpleviewinc.com/simpleview/image/upload/v1/clients/travelsantaana/grainy_texture_bf1835c9-05f3-465b-a27f-0e030a7e405b.png);
    background-repeat: repeat;
    background-position: 50% 50%;
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    padding: 64px 35px;
    margin-bottom: 48px;
}

.homepage-booking-widget .booking-wrapper {
    position: relative;
    background-color: var(--yellow-fc);
    padding: 50px 0;
}

.homepage-booking-widget .booking-wrapper::after {
    content: "";
    pointer-events: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(/includes/public/assets/shared/decorations/patterns/booking-pattern.svg);
    background-repeat: repeat;
    background-position: 50% 50%;
    /* background-size: 100%; */
    opacity: 0.1;
}

.homepage-booking-widget .image-wrapper {
    position: relative;
}

.homepage-booking-widget .image-wrapper::before {
    content:"";
    pointer-events: none;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 107px;
    height: 136px;
    transform: translate(-50%, -50%);
    background-image: url(/includes/public/assets/shared/culture.svg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: contain;
    z-index: 2;
}

.homepage-booking-widget .image-wrapper .img-cont {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    aspect-ratio: 606 / 438;
}

.homepage-booking-widget .image-wrapper .img-cont::before {
    content:"";
    pointer-events: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.6);
    z-index: 1;
    display: block;
}

.homepage-booking-widget .img-cont img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    background-color: #eee;
    background-position: 130% 0;
    background-size: 200% 100%;
    background-repeat: no-repeat;
    background-image: linear-gradient(to right, #eee 45%, #f6f6f6, #eee 65%);
}

@media screen and (min-width: 40em) {
    .homepage-booking-widget .image-wrapper::before {
        width: 206px;
        height: 263px;
    }
}

@media screen and (min-width: 64em) {
    .homepage-booking-widget {
        flex-direction: row;
        padding: 125px 35px;
    }
    .homepage-booking-widget .booking-wrapper {
        width: calc(100vw * 586 / 1440);
        max-width: 586px;
    }


}