/* ═══════════════════════════════════════════════════════
   NetScan Prep Hub — Auxiliary Pages Stylesheet
   Used by: about.html, privacy.html, terms.html, cookies.html
   Extends: style.css (must be loaded first)
═══════════════════════════════════════════════════════ */

/* ─── PAGE NAV (auxiliary header extension) ───────── */
.header-inner {
  justify-content: space-between;
}
.page-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.page-nav a {
  font-size: .9rem;
  font-weight: 600;
  color: var(--muted);
}
.page-nav a:hover,
.page-nav-active {
  color: var(--sky) !important;
}

/* ─── PAGE HERO ────────────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding-block: 64px 56px;
}
.page-eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 12px;
}
.page-title {
  color: var(--white);
  margin-bottom: 14px;
  text-wrap: balance;
}
.page-sub {
  color: rgba(255,255,255,.65);
  font-size: 1.05rem;
  max-width: 560px;
  text-wrap: pretty;
}

/* ─── GENERIC PAGE SECTION ─────────────────────────── */
.page-section { }

/* ─── ABOUT PAGE ───────────────────────────────────── */
.about-split {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
.about-text { flex: 1.2; }
.about-visual { flex: 1; }
.about-photo { width: 100%; aspect-ratio: 4/3; border-radius: 14px; object-fit: cover; }
.about-para {
  color: var(--muted);
  margin-bottom: 18px;
  line-height: 1.75;
  font-size: .97rem;
  text-wrap: pretty;
}
.about-para:last-child { margin-bottom: 0; }

/* VALUES GRID */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.value-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--sky);
}
.value-desc {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.65;
}

/* TEAM GRID */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
}
.team-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
}
.team-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}
.team-role {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.45;
}

/* ─── PROSE PAGES (privacy, terms, cookies) ─────────── */
.prose-container {
  max-width: 800px;
  margin-inline: auto;
}

/* Empty content notice — shown while content is pending */
.empty-content-notice {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 56px 40px;
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
}

/* ─── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 900px) {
  .about-split { flex-direction: column; gap: 36px; }
  .about-visual { width: 100%; }
  .page-nav { gap: 16px; }
}

@media (max-width: 600px) {
  .page-hero { padding-block: 44px 36px; }
  .page-nav { display: none; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}

/* ─── POLICY CONTENT STYLING ────────────────────────── */
.policy-content {
  color: var(--muted);
  line-height: 1.8;
}

.policy-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 32px;
  margin-bottom: 16px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

.policy-content h2:first-child {
  border-top: none;
  margin-top: 0;
}

.policy-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: 20px;
  margin-bottom: 12px;
}

.policy-content p {
  margin-bottom: 16px;
  font-size: .98rem;
  text-wrap: pretty;
}

.policy-content ul {
  margin: 16px 0 20px 28px;
  padding: 0;
}

.policy-content li {
  margin-bottom: 12px;
  font-size: .98rem;
}

.policy-content strong {
  color: var(--navy);
  font-weight: 600;
}

.policy-footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 2px solid var(--border);
  color: var(--muted);
  font-size: .9rem;
  text-align: center;
}

/* ─── VALUE CARD ICONS ──────────────────────────────── */
.value-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.value-icon svg {
  width: 60px;
  height: 60px;
}

/* ─── TEAM PHOTO SVG PLACEHOLDER ────────────────────── */
.team-photo-svg {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--light);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── CENTER CONTENT UTILITIES ──────────────────────── */
.center-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.center-content .section-header {
  max-width: 600px;
  margin-inline: auto;
}

.center-content .about-split {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}

.center-content .about-text {
  flex: 1;
  text-align: center;
}

.center-content .values-grid {
  max-width: 900px;
}

.center-content .team-grid {
  max-width: 1000px;
}

/* ─── RESPONSIVE ADJUSTMENTS ────────────────────────– */
@media (max-width: 900px) {
  .policy-content h2 { font-size: 1.15rem; }
  .policy-content h3 { font-size: .98rem; }
  .policy-content ul { margin-left: 24px; }
  .about-split { flex-direction: column; gap: 36px; }
}

@media (max-width: 600px) {
  .policy-content { padding: 0 8px; }
  .policy-content h2 { margin-top: 28px; }
  .policy-content ul { margin-left: 20px; }
  .page-nav { display: none; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .center-content .about-split { gap: 24px; }
}
