/* ===========================================
   Component — Page Hero (sub-page banner)
   Used by: all pages except TOP
   =========================================== */

.page-hero {
  position: relative;
  height: 280px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 20, 30, 0.55) 0%, rgba(20, 20, 30, 0.25) 70%);
}

.page-hero-title {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1.6px;
}

/* Sub navigation (anchor tabs) */
.subnav {
  border-bottom: 1px solid var(--color-border);
  overflow-x: auto;
}
.subnav-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  gap: 36px;
  padding: 18px 20px;
  white-space: nowrap;
}
.subnav-inner a {
  font-size: 14px;
  color: var(--color-text-soft);
  transition: color 0.2s ease;
}
.subnav-inner a:hover { color: var(--color-accent); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .page-hero       { height: 200px; }
  .page-hero-title { font-size: 26px; }
}
