/* ==========================================
   THEPETGRID — SHARED PET CARD
========================================== */
.profile-pets-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}.profile-pet-card{min-width:0;overflow:hidden;background:#fff;border:1px solid rgba(15,23,42,.08);border-radius:24px;box-shadow:0 12px 30px rgba(15,23,42,.08);transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease}.profile-pet-card:hover{transform:translateY(-6px);border-color:rgba(255,132,0,.28);box-shadow:0 22px 46px rgba(15,23,42,.14)}.profile-pet-card__image-link{display:block;color:inherit;text-decoration:none}.profile-pet-card__image-wrapper{position:relative;width:100%;aspect-ratio:4/3;overflow:hidden;background:#f1f5f9}.profile-pet-card__image{display:block;width:100%;height:100%;object-fit:cover;transition:transform .35s ease}.profile-pet-card:hover .profile-pet-card__image{transform:scale(1.055)}.profile-pet-card__verified,.profile-pet-card__status{position:absolute;top:14px;display:inline-flex;align-items:center;padding:7px 10px;border-radius:999px;font-size:11px;font-weight:800;backdrop-filter:blur(8px)}.profile-pet-card__verified{left:14px;color:#fff;background:rgba(37,99,235,.92);border:1px solid rgba(255,255,255,.35)}.profile-pet-card__status{right:14px;color:#713f12;background:rgba(255,247,237,.94);border:1px solid rgba(251,146,60,.3)}.profile-pet-card__content{display:flex;flex-direction:column;padding:20px}.profile-pet-card__type{margin:0 0 5px;color:#f97316;font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:.08em}.profile-pet-card__name{margin:0;color:#172033;font-size:22px;line-height:1.2;font-weight:800}.profile-pet-card__name a{color:inherit;text-decoration:none}.profile-pet-card__name a:hover{color:#f97316}.profile-pet-card__breed{margin:12px 0 0;color:#64748b;font-size:14px;font-weight:500}.profile-pet-card__location{margin:14px 0 0;color:#334155;font-size:14px;font-weight:600}.profile-pet-card__stats{display:flex;align-items:center;flex-wrap:wrap;gap:9px;margin-top:18px}.profile-pet-card__stats span{display:inline-flex;align-items:center;justify-content:center;min-height:34px;padding:0 11px;color:#475569;background:#f8fafc;border:1px solid rgba(15,23,42,.07);border-radius:10px;font-size:13px;font-weight:700}.profile-pet-card__button{display:inline-flex;align-items:center;justify-content:center;width:100%;min-height:44px;margin-top:18px;padding:0 18px;color:#fff;background:linear-gradient(135deg,#ffb020,#ff7a00);border-radius:12px;font-size:14px;font-weight:800;text-decoration:none;box-shadow:0 10px 22px rgba(255,122,0,.22);transition:transform .2s ease,box-shadow .2s ease}.profile-pet-card__button:hover{transform:translateY(-2px);box-shadow:0 14px 28px rgba(255,122,0,.3)}@media(max-width:1000px){.profile-pets-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(max-width:650px){.profile-pets-grid{grid-template-columns:1fr;gap:18px}.profile-pet-card{border-radius:20px}.profile-pet-card__content{padding:17px}.profile-pet-card__name{font-size:20px}}
