/* ========================================
   PAGES — Sicut Lex Estudio
   Shared styles for sub-pages (hero, breadcrumb)
   ======================================== */

/* ===== PAGE HERO (SUB) ===== */
.page-hero {
  position: relative;
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-light) 60%, #0F2040 100%);
  padding: 4rem 3rem;
  min-height: 40vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  opacity: 0.03;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 2px, var(--gold) 2px, var(--gold) 3px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, var(--gold) 2px, var(--gold) 3px);
  background-size: 60px 60px;
}
.page-hero-glow {
  position: absolute;
  top: -30%; left: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(193,162,122,0.06) 0%, transparent 65%);
  border-radius: 50%;
}
.page-hero-content { position: relative; z-index: 2; max-width: 700px; }
.breadcrumb {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { margin: 0 0.5rem; }
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.page-hero h1 .gold { color: var(--gold); }
.page-hero p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  max-width: 520px;
}

@media (max-width: 768px) {
  .page-hero { padding: 2.5rem 1.5rem; min-height: auto; }
  .page-hero h1 { font-size: 2rem; }
}
