/* ============================================================
   NON-SURGICAL OVERVIEW TEMPLATE
   Layout for the non-surgical overview page — page hero, content
   grid with sidebar, assessment block, numbered sections,
   treatment items, surgery note, and sidebar navigation.
   Shared base (tokens, nav, breadcrumb, footer, sec-eye, sec-h2,
   body-text) is in main.css — not repeated here.
   ============================================================ */

/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero {
  padding: 5rem 3.75rem 4rem;
  border-bottom: 0.5px solid var(--surface-alt);
  max-width: 800px;
}

.page-category {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-category::before {
  content: '';
  width: 24px;
  height: 0.5px;
  background: var(--accent);
  display: block;
}

.page-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: 1.4rem;
}

.page-h1 em { font-style: italic; color: var(--accent); }

.page-intro {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 2.5rem;
}

/* Quote block in hero */
.page-quote {
  border-left: 2px solid var(--accent);
  padding: 1.3rem 1.8rem;
  background: var(--surface);
  max-width: 640px;
  margin: 0;
}

.page-quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.75;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.page-attribution {
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-style: normal;
  display: block;
}

/* ============================================================
   CONTENT GRID (main + sidebar)
   ============================================================ */
.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  border-top: 0.5px solid var(--surface-alt);
}

.content-main {
  padding: 5rem 3.75rem;
  border-right: 0.5px solid var(--surface-alt);
}

.content-side { padding: 3rem 2rem; }

/* ============================================================
   ASSESSMENT BLOCK
   ============================================================ */
.assessment-block {
  padding-bottom: 4rem;
  margin-bottom: 4rem;
  border-bottom: 0.5px solid var(--surface-alt);
}

.assessment-body {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-secondary);
  max-width: 580px;
  margin-bottom: 2rem;
}

.assessment-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--surface-alt);
  border: 0.5px solid var(--surface-alt);
}

.ai-item {
  background: var(--bg);
  padding: 0.9rem 1.2rem;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.ai-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 7px;
  flex-shrink: 0;
}

.ai-text {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================================
   NUMBERED SECTIONS (01–05)
   ============================================================ */
.ns-section {
  padding-bottom: 4rem;
  margin-bottom: 4rem;
  border-bottom: 0.5px solid var(--surface-alt);
}

.ns-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.ns-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 300;
  color: var(--accent);
  opacity: 0.12;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.ns-body {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-secondary);
  max-width: 580px;
  margin-bottom: 2rem;
}

/* Treatment items within a section */
.ns-treatments {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--surface-alt);
  border: 0.5px solid var(--surface-alt);
}

.ns-treatment {
  background: var(--bg);
  padding: 1.4rem 1.6rem;
}

.ns-treatment-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.55rem;
}

.ns-treatment-body {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ============================================================
   SURGERY NOTE
   ============================================================ */
.surgery-note {
  background: var(--surface);
  border: 0.5px solid var(--surface-alt);
  border-left: 3px solid var(--accent);
  padding: 3rem 2.5rem;
  margin-top: 4rem;
}

.surgery-note-body {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 1.2rem;
}

.surgery-note-body:last-of-type { margin-bottom: 0; }

.surgery-note-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--surface-alt);
  border: 0.5px solid var(--surface-alt);
  margin-top: 2rem;
}

.sni-item {
  background: var(--bg);
  padding: 0.9rem 1.2rem;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.sni-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 7px;
  flex-shrink: 0;
}

.sni-text {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.side-sticky { position: sticky; top: 90px; }

.side-card {
  border: 0.5px solid var(--accent-light);
  padding: 1.8rem;
  margin-bottom: 1.5rem;
  border-radius: 1px;
  background: var(--bg);
}

.side-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.side-card-sub {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.side-btn {
  width: 100%;
  background: var(--accent);
  color: var(--inv-text);
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px;
  border: none;
  cursor: pointer;
  border-radius: 1px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: opacity 0.15s;
}

.side-btn:hover { opacity: 0.88; }

.side-btn-s {
  width: 100%;
  background: transparent;
  color: var(--accent);
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px;
  border: 0.5px solid var(--accent);
  cursor: pointer;
  border-radius: 1px;
  text-decoration: none;
  display: block;
  text-align: center;
  transition: background 0.15s;
}

.side-btn-s:hover { background: var(--surface); }

.side-note {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 300;
  text-align: center;
  margin-top: 12px;
  display: block;
}

/* Sidebar page navigation */
.side-nav {
  display: flex;
  flex-direction: column;
  margin-top: 0.5rem;
}

.side-nav a {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.6rem 0;
  border-bottom: 0.5px solid var(--surface-alt);
  transition: color 0.15s;
  line-height: 1.4;
}

.side-nav a:first-child { border-top: 0.5px solid var(--surface-alt); }
.side-nav a:hover { color: var(--accent); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .page-hero { padding: 3rem 1.5rem 2.5rem; }
  .page-h1 { font-size: 36px; }
  .content-grid { grid-template-columns: 1fr; }
  .content-main {
    padding: 3rem 1.5rem;
    border-right: none;
    border-bottom: 0.5px solid var(--surface-alt);
  }
  .content-side { padding: 2rem 1.5rem; }
  .side-sticky { position: static; }
  .assessment-items { grid-template-columns: 1fr; }
  .surgery-note-items { grid-template-columns: 1fr; }
  .surgery-note { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
  .page-h1 { font-size: 28px; }
  .ns-num { font-size: 48px; }
}
