/* HL3C V7：前台/商品頁/案例頁圖片尺寸保護 */

/* 全站內容區圖片保護：避免後台貼入大圖後把版面撐爆 */
main img,
.product-v2-content img,
.product-v2-section img,
.page-v2-content img,
.case-v1-panel img,
.cases-v1-body img {
  max-width: 100%;
  height: auto;
}

/* 商品頁主圖 */
.product-v2-image {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #f8fafc;
  border-radius: 28px;
}

.product-v2-image img {
  width: 100%;
  max-width: 720px;
  max-height: 520px;
  height: auto;
  object-fit: contain;
  display: block;
}

/* 商品介紹內若有大圖，限制寬度與高度 */
.product-v2-content img,
.product-v2-section img {
  display: block;
  width: auto;
  max-width: min(100%, 960px);
  max-height: 680px;
  object-fit: contain;
  margin: 18px auto;
  border-radius: 18px;
}

/* 若舊資料內容有 iframe / facebook embed，也避免撐爆 */
.product-v2-content iframe,
.product-v2-section iframe,
.page-v2-content iframe,
.case-v1-panel iframe {
  max-width: 100%;
}

/* 分類頁與商品卡片圖片 */
.brand-v4-product-img,
.product-card-image,
.category-product-image,
.cases-v1-img,
.product-related-case-img {
  overflow: hidden;
}

.brand-v4-product-img img,
.product-card-image img,
.category-product-image img,
.cases-v1-img img,
.product-related-case-img img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 案例詳細頁圖片 */
.case-v1-detail-img {
  overflow: hidden;
}

.case-v1-detail-img img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

/* 後台若不小心也載到前台 CSS，順便保護 */
.admin-content img,
.menu-table-v2 img,
.admin-card img {
  max-width: 180px;
  max-height: 120px;
  object-fit: cover;
  height: auto;
}

@media (max-width: 760px) {
  .product-v2-image img {
    max-height: 340px;
  }

  .product-v2-content img,
  .product-v2-section img {
    max-height: 420px;
  }
}
