/* ============================================================
   HUB / INFO TEMPLATE
   Layout styles for hub and standalone info pages that use
   the hub-layout (2fr/1fr main+side) pattern.
   e.g. international-patients.html
   Shared base (tokens, nav, breadcrumb, footer, typography,
   buttons) is in main.css — not repeated here.
   ============================================================ */

/* ============================================================
   PAGE HEADER — 2-col split hero
   ============================================================ */
.page-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 50vh;
  border-bottom: 0.5px solid var(--surface-alt);
}

.ph-left {
  padding: 5rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.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.06;
  color: var(--text-primary);
  margin-bottom: 1.2rem;
}
.page-h1 em { font-style: italic; color: var(--accent); }

.page-intro {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-secondary);
  max-width: 460px;
}

.ph-right {
  background: var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}

.ph-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 360px;
  margin-bottom: 0.8rem;
}

.ph-attr {
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* ============================================================
   HUB LAYOUT — 2fr / 1fr
   ============================================================ */
.hub-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  border-top: 0.5px solid var(--surface-alt);
}

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

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

/* Section spacing */
.section-block { margin-bottom: 4.5rem; }
.section-block:last-child { margin-bottom: 0; }

/* ============================================================
   CANDIDACY GRID
   ============================================================ */
.cand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--surface-alt);
  border: 0.5px solid var(--surface-alt);
  margin: 1.5rem 0;
}
.cand-item {
  background: var(--bg);
  padding: 1rem 1.2rem;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.cand-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 6px;
  flex-shrink: 0;
}
.cand-text {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================================
   PATHWAY STEPS
   ============================================================ */
.pathway { display: flex; flex-direction: column; margin: 2rem 0; }

.pathway-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 0.5px solid var(--surface-alt);
  align-items: flex-start;
}
.pathway-step:last-child { border-bottom: none; }

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  padding-top: 2px;
}

.step-title {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 5px;
}

.step-body {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================================================
   STAY DURATION GRID
   ============================================================ */
.stay-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--surface-alt);
  border: 0.5px solid var(--surface-alt);
  margin: 1.5rem 0;
}
.stay-item { background: var(--bg); padding: 1.3rem 1.4rem; }
.stay-proc {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.stay-dur {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 300;
  color: var(--accent);
  margin-bottom: 4px;
}
.stay-note {
  font-size: 10px;
  font-weight: 300;
  color: var(--text-faint);
  line-height: 1.5;
}

/* ============================================================
   CARE / CONTINUITY NOTE — accent-left technique block style
   ============================================================ */
.care-note {
  background: var(--surface);
  border-left: 2px solid var(--accent);
  padding: 1.95rem 2.1rem;
  margin: 2.5rem 0;
}
.cn-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.7rem;
}
.cn-body {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.85;
}

/* ============================================================
   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;
}

.side-info { display: flex; flex-direction: column; margin-top: 0.5rem; }

.si-row {
  display: flex;
  gap: 10px;
  padding: 0.65rem 0;
  border-bottom: 0.5px solid var(--surface-alt);
  align-items: flex-start;
}
.si-row:last-child { border-bottom: none; }

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

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

/* vc-note is shared — defined in main.css */

/* ============================================================
   RESPONSIVE — hub template (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  .page-header { grid-template-columns: 1fr; min-height: auto; }
  .ph-left { padding: 3rem 1.5rem 2rem; }
  .page-h1 { font-size: 36px; }
  .ph-right { min-height: 38vw; padding: 1.5rem; }

  .hub-layout { grid-template-columns: 1fr; }
  .hub-main { padding: 3rem 1.5rem; border-right: none; border-bottom: 0.5px solid var(--surface-alt); }
  .hub-side { padding: 2rem 1.5rem; }
  .side-sticky { position: static; }

  .stay-grid { grid-template-columns: 1fr; }
  .cand-grid { grid-template-columns: 1fr; }
  .pathway-step { grid-template-columns: 40px 1fr; }
}
