﻿/* ===== 子頁面通用樣式 ===== */

/* 頁面 Hero Banner */
.page-hero {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 20% 50%, rgba(0, 152, 255, 0.22), transparent 70%),
    radial-gradient(500px 300px at 85% 40%, rgba(51, 176, 255, 0.15), transparent 70%);
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.page-hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  color: #4db8ff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.page-hero h1 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}
.page-hero h1 .gradient {
  background: linear-gradient(135deg, #4db8ff 0%, #0098FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-hero p {
  font-size: 17px;
  color: var(--color-text-dim);
  line-height: 1.85;
  max-width: 680px;
  margin: 0 auto;
}

/* 通用 Section */
.page-section {
  padding: 80px 0;
}
.page-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.page-section-eyebrow {
  display: inline-block;
  font-size: 12px;
  color: #4db8ff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.page-section-title {
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 14px;
}
.page-section-desc {
  font-size: 15.5px;
  color: var(--color-text-dim);
  line-height: 1.85;
}

@media (max-width: 720px) {
  .page-hero { padding: 56px 0 40px; }
  .page-section { padding: 56px 0; }
}
