/* Photo sizing: preserve the complete image, without stretching or forced crops.
 * Wide hero/banner backgrounds retain their intentional panoramic crop.
 * Loaded after theme.css and interiors.css, including their mobile rules. */
.mme-service-row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(28px, 5vw, 65px);
}
.mme-service-row > img {
    display: block;
    width: 100%;
    max-width: 440px;
    height: 390px;
    min-height: 0;
    object-fit: contain;
    object-position: center;
    justify-self: center;
    align-self: center;
    background: var(--mme-pale);
    padding: 12px;
}
.mme-about .mme-duo {
    align-items: center;
}
.mme-about .mme-duo > img {
    display: block;
    width: 100%;
    max-width: 440px;
    height: 390px;
    min-height: 0;
    object-fit: contain;
    object-position: center;
    justify-self: center;
    padding: 16px;
}
.mme-feature {
    height: 330px;
    background: #9b7d83;
}
.mme-feature > .mme-cover {
    object-fit: contain;
    object-position: center;
}
.mme-feature > div {
    padding: 35px clamp(24px, 4vw, 55px);
}
.mme-feature:after {
    background: linear-gradient(90deg, rgba(47,28,34,.60), rgba(47,28,34,.18));
}
/* Keep catalog framing consistent without affecting WooCommerce gallery zoom. */
.woocommerce ul.products li.product a img {
    object-fit: contain;
    object-position: center;
}
@media (max-width: 850px) {
    .mme-service-row > img,
    .mme-about .mme-duo > img {
        height: 330px;
    }
    .mme-feature {
        height: 310px;
    }
}
@media (max-width: 680px) {
    .mme-service-row {
        grid-template-columns: minmax(0, 1fr);
        gap: 24px;
    }
    .mme-service-row > img,
    .mme-about .mme-duo > img {
        height: 300px;
        max-width: 380px;
        padding: 10px;
    }
    .mme-feature {
        height: 300px;
    }
    .mme-feature > div {
        padding: 30px 24px;
    }
    .mme-feature h3 {
        font-size: 26px;
    }
}
@media (max-width: 400px) {
    .mme-service-row > img,
    .mme-about .mme-duo > img {
        height: 260px;
    }
}
