@charset 'UTF-8';

/* 石晶薄板燚系列 - 圖片並排排版 (修正置中與比例問題) */
.custom-img-row {
  display: flex !important;
  flex-direction: row !important;
  gap: 20px !important;
  align-items: stretch !important; /* 讓兩張圖自動等高 */
  width: 100% !important;
  margin: 30px auto !important; /* ★ 關鍵修正：把 0 改成 auto，讓區塊跟隨文字一起置中 */
  justify-content: center !important; /* 確保內容水平置中 */
}
.custom-img-row a {
  display: block !important;
  overflow: hidden !important;
}
/* ★ 修正比例：扣除中間的 gap 寬度，避免總寬度超過 100% */
.custom-img-row .img-landscape {
  width: calc(60% - 10px) !important; 
}
.custom-img-row .img-square {
  width: calc(40% - 10px) !important; 
}
.custom-img-row img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important; /* 確保圖片填滿且不變形 */
  display: block !important;
}

/* 手機版：螢幕太小時自動變成上下排列 */
@media (max-width: 768px) {
  .custom-img-row {
    flex-direction: column !important;
  }
  .custom-img-row .img-landscape,
  .custom-img-row .img-square {
    width: 100% !important;
  }
}