.mandylarkhamart-wrapper {
    display: block;
    width: 92%;
    margin: 0 auto;
    overflow: hidden;
}

.mosaic-right, .mosaic-left {
    display: grid;
}


/* Custom, iPhone Retina -- iPhone Portrait*/
@media only screen and (min-width : 320px) {
    .mosaic-right, .mosaic-left {
        grid-template-rows: repeat(3, 1fr);
        margin-top: 1.5rem;
        margin-bottom: 3rem;
    }

    .mosaic--item--right, .mosaic--item--left {
        grid-column: 1;
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }

    .mosaic--item--right > img, .mosaic--item--left > img {
        flex-shrink: 0;
        width: 100%;
        border-radius: 5px;
        border: 1px solid rgba(161,132,86,1);
    }

    .mosaic--item--content {
        display: block;
        width: 80%;
        background-color: rgba(244,241,236,0.95);
        margin: 0 auto;
        border-radius: 5px;
        padding: 2rem;
        box-shadow:
          0 1px 1px hsl(0deg 0% 0% / 0.075),
          0 2px 2px hsl(0deg 0% 0% / 0.075),
          0 4px 4px hsl(0deg 0% 0% / 0.075),
          0 8px 8px hsl(0deg 0% 0% / 0.075),
          0 20px 20px hsl(0deg 0% 0% / 0.075);
    }

    .mosaic--item--content-mobile-margin {
        display: block;
        width: 100%;
        margin-top: 50% ;
    }

    .mosaic--item--right:nth-child(1), .mosaic--item--left:nth-child(1) {
        grid-row: 1 / span 2;
    }

    .mosaic--item--right:nth-child(2), .mosaic--item--left:nth-child(2) {
        display: block;
        position: relative;
        grid-row: 1 / span 3;
    }

}

/* Extra Small Devices, Phones -- iPhone Landscape*/
@media only screen and (min-width : 480px) {
    .mosaic--item--content-mobile-margin {
        display: block;
        width: 100%;
        margin-top: 70% ;
    }
    .mosaic--item--content-mobile-margin-ipad {
        display: block;
        width: 100%;
        margin-top: 85% ;
    }
}

/* Small Devices, Tablets - iPad - Portrait*/
@media only screen and (min-width : 768px) {

}

/* Medium Devices, Desktops - iPad - Landscape*/
@media only screen and (min-width : 992px) {
}

/* Large Devices, Wide Screens - Desktops*/
@media only screen and (min-width : 1200px) {

    .mosaic-right, .mosaic-left {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto;
        margin-top: 1.5rem;
        margin-bottom: 3rem;
    }

    .mosaic--item--right, .mosaic--item--left {
        grid-row: 1;
        grid-column: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .mosaic--item--right > img, .mosaic--item--left > img {
        flex-shrink: 0;
        min-width: 100%;
        min-height: 100%;
        border-radius: 5px;
        border: 1px solid rgba(161,132,86,1);
    }

    .mosaic--item--content {
        display: block;
        min-width: 50%;
        max-width: 100%;
        max-height: 100%;
        width: 0px;
        margin: 0px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        overflow: hidden;
        border: 1px solid #918C83;
        border-radius: 5px;
        padding: 2rem;
        box-shadow:
          0 1px 1px hsl(0deg 0% 0% / 0.075),
          0 2px 2px hsl(0deg 0% 0% / 0.075),
          0 4px 4px hsl(0deg 0% 0% / 0.075),
          0 8px 8px hsl(0deg 0% 0% / 0.075),
          0 20px 20px hsl(0deg 0% 0% / 0.075);
    }

    .mosaic--item--content:after {
        background-color: rgba(244,241,236,0.6);
        content: '';
        height: 100%;
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        z-index: -1;
    }

    .mosaic--item--content-mobile-margin {
        display: none;
    }

    @supports (backdrop-filter: none) {
        .mosaic--item--content:after {
            background-color:  rgba(244,241,236,0.5);
            backdrop-filter: blur(10px) saturate(100%) contrast(45%) brightness(130%);
        }
    }

    .mosaic--item--right > .mosaic--item--content {
        right: 5%;
    }

    .mosaic--item--left > .mosaic--item--content {
        left: 5%;
    }

    .mosaic--item--right:nth-child(1) {
        grid-column: 1/span 2;
        grid-row: 1/1;
    }

    .mosaic--item--right:nth-child(2) {
        display: block;
        position: relative;
        grid-row: 1/1;
        grid-column: 2/span 2;
        align-self: stretch;
    }

    .mosaic--item--left:nth-child(1) {
        grid-column: 2/span 2;
        grid-row: 1/1;
    }

    .mosaic--item--left:nth-child(2) {
        display: block;
        position: relative;
        grid-row: 1/1;
        grid-column: 1/span 2;
        align-self: stretch;
    }
}