@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&family=Playfair+Display:wght@600;700;800&display=swap');

.ccstc-hero-scope {
  --ccstc-navy: #1a2a4a;
  --ccstc-blue: #1E90FF;
  --ccstc-blue-dk: #1470D0;
  --ccstc-sky: #e0f0ff;
  --ccstc-sky-lt: #f0f7ff;
  --ccstc-border: #d8e8f5;
  --ccstc-gray: #6b7280;
  --ccstc-ff-h: 'Playfair Display', Georgia, serif;
  --ccstc-ff-b: 'DM Sans', system-ui, sans-serif;
  --ccstc-max: 1100px;
  display: block;
  font-family: var(--ccstc-ff-b);
}

.ccstc-hero-scope *,
.ccstc-hero-scope *::before,
.ccstc-hero-scope *::after {
  box-sizing: border-box;
}

.ccstc-hero-scope .ccstc-page-hero {
  background: linear-gradient(130deg, var(--ccstc-navy) 0%, #0f2040 55%, var(--ccstc-blue) 100%);
  padding: 56px 20px 52px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.ccstc-hero-scope .ccstc-page-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(30, 144, 255, .18);
  pointer-events: none;
}

.ccstc-hero-scope .ccstc-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.ccstc-hero-scope .ccstc-eyebrow {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--ccstc-blue);
  background: rgba(30, 144, 255, .18);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.ccstc-hero-scope .ccstc-page-hero h1 {
  font-family: var(--ccstc-ff-h);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.22;
  margin: 0 0 14px;
}

.ccstc-hero-scope .ccstc-page-hero p {
  color: rgba(255, 255, 255, .76);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

.ccstc-hero-scope .ccstc-meta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 22px;
}

.ccstc-hero-scope .ccstc-meta span {
  font-size: .8rem;
  color: rgba(255, 255, 255, .55);
  display: flex;
  align-items: center;
  gap: 5px;
}

.ccstc-hero-scope .ccstc-meta svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
}

@media (max-width: 768px) {
  .ccstc-hero-scope .ccstc-page-hero { padding: 44px 18px 40px; }
  .ccstc-hero-scope .ccstc-hero-inner { max-width: 100%; }
}

@media (max-width: 480px) {
  .ccstc-hero-scope .ccstc-page-hero { padding: 36px 16px 34px; }
  .ccstc-hero-scope .ccstc-eyebrow { font-size: .65rem; padding: 4px 12px; }
  .ccstc-hero-scope .ccstc-page-hero p { font-size: .92rem; }
  .ccstc-hero-scope .ccstc-meta { gap: 12px; margin-top: 18px; }
  .ccstc-hero-scope .ccstc-meta span { font-size: .74rem; }
}
