/**
 * retech/page-hero —— Page Hero(页面首屏)块样式。
 *
 * 唯一属主声明:
 *   共享 Hero 基座 `.retech-x-hero` / `__media` / `__media img` / `__tint` /
 *   `::before` / `__inner` / `__title` / `__lede` / `__actions`,以及
 *   `.retech-x-wrap` / `.retech-x-eyebrow(--light)` / `.retech-x-btn*` /
 *   `.retech-x-breadcrumb*` —— 全部由 blocks/style-index.css 拥有
 *   (原型 solutions.css 里 `.sol-hero, .page-hero` 是合并选择器,共享部分已上收)。
 *   本文件**不得**重复定义它们:块文件里再锚一次会被 check-css 判 E5,
 *   且会和 retech/detail-hero 抢属主。
 *
 * 本块只写增量:
 *   原型 solutions.css:43 —— `.page-hero { min-height: 58vh; }`,
 *   与详情页 hero(`.sol-hero`)的 62vh 是二者唯一的差异。
 *   基座当前也是 58vh;这里显式再声明一次,是为了让 detail-hero 上收 62vh 时
 *   page-hero 不被一起带走(块层晚于 base 层,声明即锁值)。
 *
 * 未在此处落地的原型规则(属共享,应上收 style-index.css 的 retech-responsive 层):
 *   solutions.css:584-590 的 `@media (max-width: 700px)` 段:
 *     .sol-hero, .page-hero { min-height: auto; padding-top: calc(var(--header-h) + 56px); padding-bottom: 60px; }
 *     .sol-title { max-width: none; }  .sol-lede { font-size: 16px; }  .sol-actions .btn { width: 100%; }
 *   这些是 `.sol-hero, .page-hero` 合并规则,page-hero 与 detail-hero 共用,
 *   在块文件里写会重复属主,故留给主进程在全局 responsive 层统一落地。
 *
 * 面包屑 class 刻意不在此定义(属主在别处)。
 */
@layer retech-block {
  .retech-x-page-hero {
    min-height: 58vh;
  }
}
