/*!
 * Generic page baseline styling
 * Applies to default pages using the vu-page shell (hero/title + content card).
 */

.vu-page {
  --page-ink: var(--vu-ink, #1f2c57);
  --page-muted: rgba(31, 44, 87, 0.72);
  --page-surface: linear-gradient(140deg, rgba(255, 255, 255, 0.95), rgba(245, 248, 255, 0.9));
  --page-outline: rgba(15, 24, 52, 0.08);
  --page-shadow: 0 24px 60px rgba(5, 7, 19, 0.12);
  --page-radius: 22px;
  --page-gap: clamp(18px, 3vw, 28px);
  position: relative;
  padding: clamp(16px, 3vw, 28px);
  background: radial-gradient(circle at 20% 20%, rgba(255, 217, 0, 0.08), transparent 32%), radial-gradient(circle at 80% 0%, rgba(15, 24, 52, 0.08), transparent 32%);
}

.vu-page__article {
  position: relative;
  z-index: 1;
  background: var(--page-surface);
  border: 1px solid var(--page-outline);
  border-radius: var(--page-radius);
  box-shadow: var(--page-shadow);
  padding: clamp(22px, 3.4vw, 36px);
  overflow: hidden;
}

.vu-page__article::before {
  content: "";
  position: absolute;
  inset: -40% auto auto -10%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(255, 217, 0, 0.22) 0%, rgba(255, 217, 0, 0) 65%);
  filter: blur(12px);
  opacity: 0.8;
  pointer-events: none;
}

.vu-page-hero {
  text-align: center;
  margin-bottom: var(--page-gap);
}

.vu-page-title {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 1.2;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  color: var(--page-ink);
  text-wrap: balance;
}

.vu-page-lede {
  margin: 0.6em auto 0;
  max-width: 48ch;
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--page-muted);
  line-height: 1.65;
  text-wrap: pretty;
}

.vu-page-content {
  display: grid;
  gap: clamp(14px, 2vw, 22px);
  color: var(--page-ink);
}

.vu-page-content p {
  margin: 0;
  line-height: 1.7;
}

.vu-page-content h2,
.vu-page-content h3 {
  color: var(--page-ink);
  font-weight: 800;
  letter-spacing: 0.02em;
  margin: 1.4em 0 0.4em;
  text-wrap: balance;
}

.vu-page-content h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  text-transform: uppercase;
  display: inline-block;
  padding-bottom: 0.35rem;
  border-bottom: 3px solid var(--vu-gold, #ffd900);
}

.vu-page-content h3 {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: rgba(31, 44, 87, 0.92);
}

.vu-page-content ul,
.vu-page-content ol {
  padding-left: 1.3em;
  margin: 0.2em 0 0.8em;
  line-height: 1.6;
}

.vu-page-content a {
  color: inherit;
  text-decoration-color: rgba(255, 217, 0, 0.6);
  text-underline-offset: 3px;
  font-weight: 600;
}

.vu-page-content blockquote {
  margin: 1.4em 0;
  padding: 1em 1.5em;
  border-left: 4px solid var(--vu-gold, #ffd900);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  color: rgba(31, 44, 87, 0.86);
}

@media (max-width: 720px) {
  .vu-page {
    padding: clamp(12px, 4vw, 20px);
  }

  .vu-page__article {
    padding: clamp(18px, 5vw, 26px);
  }
}
