/* =====================================================================
   公司 Logo 公共样式 (被 critical/ 和 medical/ 共用)
   引入方式: <link rel="stylesheet" href="../shared/css/company-logo.css">
   配合 shared/js/company-logo.js 一起使用
   ===================================================================== */

.product-item .company-logo {
  overflow: hidden;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-item .company-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* 移动端统一缩为 60x32 (sidebar 紧凑布局, ~57% 桌面尺寸) */
@media (max-width: 768px) {
  .product-item .company-logo {
    width: 60px;
    height: 32px;
    font-size: 9px;
  }
}