/* ============================================================
   內頁共用 Hero（.hero-background/.news-hero-/.news-breadcrumb，6 內頁共用）
   來源 style.css 行 4373-4478（純搬移，內容未改）
   ============================================================ */

/* === HERO === */
.hero-background {
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-hero-img {
  position: absolute;
  top: 0;
  right: 0;
}

#case-hero .news-hero-img {
  top: 60%;
  bottom: 0;
  right: -3%;
  transform: translateY(-50%);
  width: clamp(380px, 42vw, 823px);
  object-fit: contain;
}
#case-hero .hero-circular {
  top: 55%;
  right: clamp(-10px, 3vw, 0px);
  transform: translateY(-50%);
  width: clamp(350px, 42vw, 750px);
}

#sw-hero.sg-hero .hero-circular {
  top: 48%;
  right: clamp(-10px, 5vw, 100px);
  transform: translateY(-50%) rotate(135deg);
  width: clamp(250px, 42vw, 750px);
}
#sw-hero.sp-hero .hero-circular {
  top: 45%;
  right: clamp(-10px, 5vw, 80px);
  transform: translateY(-50%) rotate(135deg);
  width: clamp(250px, 42vw, 750px);
}
.hero-circular {
  position: absolute;
  right: 0;
  bottom: 0;
}

#news-hero .hero-circular {
  z-index: -1;
}

.news-hero {
  position: relative;
  padding: clamp(60px, 17vw, 310px) 0 100px;
}

.news-hero-inner {
  margin-bottom: 143px;
}

.news-hero-eyebrow {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(48px, 6vw, 96px);
  color: var(--c-text);
  margin: 0;
  line-height: 1;
  letter-spacing: 1px;
}

.news-hero-eyebrow .accent {
  color: var(--c-brand);
}

.news-hero-title {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-body);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 32px);
  margin: 24px 0;
  letter-spacing: 2px;
}

.news-hero-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.news-hero-desc {
  font-size: var(--fs-sm);
  line-height: 1.8;
  color: var(--c-text);
  max-width: 790px;
  min-height: 87px;
  margin: 0;
}
@media (max-width: 991.98px) {
  .hero-background {
    height: 70%;
  }
  .news-hero {
    padding: clamp(60px, 17vw, 310px) 0 30px;
  }
  #case-hero .news-hero-img {
    top: 12%;
    right: -10%;
    transform: none;
    width: clamp(300px, 70vw, 520px);
  }
  #case-hero .hero-circular {
    right: -10%;
    top: 35%;
    transform: translateY(-50%) rotate(90deg);
  }
  #sw-hero.sg-hero .hero-circular {
    right: -5%;
    top: 40%;
  }
  #sw-hero.sp-hero .hero-circular {
    right: -5%;
    top: 35%;
  }
  .news-hero-inner {
    margin-bottom: 30px;
  }
  .news-hero-icon {
    width: 32px;
    height: 32px;
  }
  .news-hero-desc {
    font-size: var(--fs-xs);
  }
}
@media (max-width: 575.98px) {
  .news-hero {
    padding: 80px 0 30px;
  }
  .news-hero-inner {
    margin-top: 32px;
  }
}
.news-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-sm);
  color: var(--c-placeholder);
  max-width: 790px;
}

.news-breadcrumb a {
  color: var(--c-placeholder);
  text-decoration: none;
  transition: color 0.25s;
}

.news-breadcrumb a:hover {
  color: var(--c-brand);
}

.news-breadcrumb .sep {
  color: var(--c-placeholder);
}

.news-breadcrumb .current {
  color: var(--c-brand);
}
@media (max-width: 991.98px) {
  .news-breadcrumb {
    margin-top: 160px;
    font-size: var(--fs-xs);
  }
}
