/* Content Pages Base Styles */
.content-page {
  --content-surface: rgba(255, 255, 255, 0.03);
  --content-border: rgba(255, 255, 255, 0.12);
  --content-muted: rgba(255, 255, 255, 0.7);
  --content-accent: #ffffff;
  flex: 1;
  padding: 96px 20px 56px;
  position: relative;
}

.content-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 45%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.04), transparent 40%);
  pointer-events: none;
  z-index: 0;
}

.content-shell {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  z-index: 1;
}

.content-hero {
  padding: 32px 28px;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  border: 1px solid var(--content-border);
  position: relative;
  overflow: hidden;
}

.content-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.content-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 12px;
}

.content-hero h1 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 800;
  margin-bottom: 12px;
  color: #ffffff;
}

.content-hero p {
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
  color: var(--content-muted);
  font-size: 1.05rem;
}

.content-hero p + p {
  margin-top: 10px;
}

.content-meta {
  margin-top: 12px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.content-section {
  padding: 24px;
  border-radius: 16px;
  background: var(--content-surface);
  border: 1px solid var(--content-border);
}

.content-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
}

.content-section p {
  line-height: 1.75;
  margin-bottom: 12px;
  color: var(--content-muted);
}

.content-section ul {
  list-style: none;
  margin: 12px 0;
  padding: 0;
}

.content-section li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  line-height: 1.7;
  color: var(--content-muted);
}

.content-section li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

.content-section a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}

.content-section a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.content-section strong {
  color: #ffffff;
  font-weight: 600;
}

.content-callout {
  padding: 16px 18px;
  margin: 16px 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.content-callout p {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 768px) {
  .content-page {
    padding: 72px 16px 40px;
  }

  .content-hero {
    padding: 28px 20px;
  }

  .content-hero p {
    font-size: 1rem;
  }

  .content-section {
    padding: 20px;
  }
}
