/**
 * Custom child-theme overrides.
 * This file is conditionally enqueued by functions.php if it exists.
 * Add brand-specific styles here.
 */

/* About page (post 6) — force the 3-photo gallery to render as squares so
   portrait + landscape source images don't break the row's visual rhythm.
   Targets only the gallery on the About page; other galleries are unaffected. */
body.page-id-6 .wp-block-gallery .wp-block-image img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    width: 100%;
    height: auto;
}
