/* CSS Document */
/* Banner 外層容器設定 */
.hero-banner {
  /* 請將此處的 url 替換為你實際的「背景圖」路徑 */
  background: url('../images/_banner/banner-bk.png') no-repeat center center;
  background-size: cover;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden; /* 防止內容溢出 */
  /* 如果你還沒有背景圖，可以先用下面這行 CSS 漸層來模擬圖中的斜角效果：
               background: linear-gradient(105deg, #f4f6f8 55%, #e1eff2 55.1%); */
}
/* 左側文字區塊樣式 */
.hero-subtitle {
  color: #8c98a4;
  font-size: 1rem;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  margin-top: 2rem;
}
.hero-title {
  color: #2A8D91; /* 接近原圖的藍綠色 */
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}
.hero-title-icon {
  width: 220px;
  height: auto;
  margin-right: 12px;
}
.hero-title sup {
  font-size: 1.2rem;
  margin-left: 2px;
  top: -0.5em;
}
.hero-desc {
  color: #1a1a1a;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 0;
}
/* 右側情境圖樣式 */
.device-mockup {
  max-width: 100%;
  height: auto;
  /* 加上一點柔和的陰影，讓設備圖更有疊加在背景上的立體感 */
  filter: drop-shadow(0px 15px 25px rgba(0, 0, 0, 0.15));
}
/* 手機版排版微調 */
@media (max-width: 991px) {
  .hero-banner {
    padding: 40px 0;
    text-align: center;
  }
  .hero-title {
    justify-content: center;
    font-size: 1.4rem;
  }
  .device-mockup {
    margin-top: 2rem;
  }
  .hero-title-icon {
    width: 140px; /* 根據需求調小數值，或使用百分比例如 70% */
    height: auto;
    margin-right: 12px;
  }