/*
 Theme Name:   MLPA Child Theme
 Theme URI:    http://mylostpetalert.com
 Description:  mlpa child theme
 Author:       Brian Freeman
 Template:     petsitter
*/

/* ── Lost Pets listing ─────────────────────────────────────────────────────
   Parent theme sets width:25% in grid view, letting tall originals stretch.
   Lock thumbnail to a fixed 64×64 circle regardless of source dimensions.
   ───────────────────────────────────────────────────────────────────────── */
.job_img img.company_logo,
#job-manager-job-dashboard td.pet_image img.company_logo {
    width: 64px !important;
    height: 64px !important;
    object-fit: cover;
    flex-shrink: 0;
}

/* ── Homepage "Recent Lost Pets" cards + single listing cover image ─────────
   Parent theme sets height:auto, allowing portrait images to stretch tall.
   Force square crop via aspect-ratio so all cards/covers are uniform.
   ───────────────────────────────────────────────────────────────────────── */
.job_summary_shortcode img.company_logo,
figure.job-cover-img img.company_logo {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    height: auto;
}