@php $img_src = $art->thumb ?? ''; $img_srcset = $art->thumb_srcset ?? ''; $base_height = 360; $orig_width = (int) ($art->width ?? 0); $orig_height = (int) ($art->height ?? 0); $img_height = $base_height; $img_width = ($orig_width > 0 && $orig_height > 0) ? (int) round($orig_width * ($base_height / $orig_height)) : 600; @endphp