/* =========================================================
   OODOMA PROPERTY PAGE
   Shared by Entire Place, By Room, and Large Complex
   ========================================================= */

/* Keep property pages comfortably contained */
body.single-property #main-content .et_pb_row {
    width: calc(100% - 48px);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* =========================================================
   PROPERTY GALLERY
   ========================================================= */

body.single-property .property-slider-wrapper,
body.single-property .oodoma-gallery-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 24px;
    background: #f3f4f6;
}

body.single-property .property-slider,
body.single-property .oodoma-gallery-track {
    display: flex;
    width: 100%;
    gap: 0;
    transition: transform 0.35s ease;
}

body.single-property .property-slide,
body.single-property .oodoma-gallery-slide {
    flex: 0 0 100%;
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f3f4f6;
}

/*
 * Desktop: show the full image at its natural proportions.
 * No forced 520px/560px height and no cropping.
 */
body.single-property .property-slide img,
body.single-property .oodoma-gallery-slide img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: none;
    object-fit: contain;
    object-position: center center;
    border-radius: 0;
}

/* =========================================================
   GALLERY ARROWS
   ========================================================= */

body.single-property .slider-arrow,
body.single-property .oodoma-gallery-prev,
body.single-property .oodoma-gallery-next {
    position: absolute;
    top: 50%;
    width: 48px;
    height: 48px;
    transform: translateY(-50%);
    border: 0;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    cursor: pointer;
    z-index: 10;
}

body.single-property .slider-arrow.left,
body.single-property .oodoma-gallery-prev {
    left: 18px;
}

body.single-property .slider-arrow.right,
body.single-property .oodoma-gallery-next {
    right: 18px;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {
    body.single-property #main-content .et_pb_row {
        width: calc(100% - 24px);
    }

    body.single-property .property-slider-wrapper,
    body.single-property .oodoma-gallery-slider {
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }

    body.single-property .property-slide,
    body.single-property .oodoma-gallery-slide {
        width: 100vw;
        min-width: 100vw;
    }

    body.single-property .property-slide img,
    body.single-property .oodoma-gallery-slide img {
        width: 100vw;
        height: 240px;
        object-fit: cover;
        object-position: center center;
    }

    body.single-property .slider-arrow,
    body.single-property .oodoma-gallery-prev,
    body.single-property .oodoma-gallery-next {
        width: 40px;
        height: 40px;
    }
}