@charset "UTF-8";
/******* Healy  ******/
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --j-blue: #1c6daf;
  --j-blue-dark: #154e80;
  --j-blue-light: #e8f2fa;
  --j-green: #2b7a36;
  --j-green-light: #e8f5ea;
  --j-orange: #d9600a;
  --j-orange-light: #fef3e8;
  --j-gray-50: #f8f9fa;
  --j-gray-100: #eff0f1;
  --j-gray-200: #d7d9dd;
  --j-gray-400: #9098a9;
  --j-gray-600: #4e5461;
  --j-gray-800: #2b2f3a;
  --j-white: #ffffff;
  --j-border: #d7d9dd;
  --j-shadow: 0 2px 8px rgba(0,0,0,.08);
  --j-shadow-md: 0 4px 16px rgba(0,0,0,.12);
  --radius: 4px;
  --radius-lg: 8px;
  --font-sans: 'IBM Plex Sans', system-ui, sans-serif;
  --font-serif: 'Source Serif 4', Georgia, serif;
  --font-mono: 'IBM Plex Mono', monospace;
}

body {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--j-gray-800);
  background: var(--j-gray-50);
  line-height: 1.6;
}

a {
  color: var(--j-blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ── TOP BAR ─────────────────────────────── */
.topbar {
  background: var(--j-gray-800);
  color: #bfc4cf;
  font-size: 12px;
  padding: 6px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 24px;
}

.topbar a {
  color: #bfc4cf;
}

.topbar a:hover {
  color: #fff;
  text-decoration: none;
}

.topbar-links {
  display: flex;
  gap: 16px;
}

/* ── HEADER ──────────────────────────────── */
.site-header {
  background: var(--j-white);
  border-bottom: 3px solid var(--j-blue);
  box-shadow: var(--j-shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  height: 68px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 18px;
  color: var(--j-gray-800);
  text-decoration: none;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--j-blue);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 22px;
  height: 22px;
  fill: white;
}

.site-logo span {
  color: var(--j-blue);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.main-nav a {
  padding: 8px 14px;
  border-radius: var(--radius);
  color: var(--j-gray-600);
  font-size: 14px;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}

.main-nav a:hover, .main-nav a.active {
  background: var(--j-blue-light);
  color: var(--j-blue);
  text-decoration: none;
}

.main-nav a.active {
  font-weight: 600;
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--j-gray-50);
  border: 1px solid var(--j-border);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  color: var(--j-gray-400);
}

/* ── HERO / BREADCRUMB BAR ───────────────── */
.hero-band {
  background: linear-gradient(135deg, var(--j-blue-dark) 0%, var(--j-blue) 60%, #2585cc 100%);
  color: white;
  padding: 48px 24px 52px;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.breadcrumb {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
  color: white;
  text-decoration: none;
}

.breadcrumb-sep {
  opacity: 0.5;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.3px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  flex-wrap: wrap;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.hero-meta svg {
  width: 14px;
  height: 14px;
  opacity: 0.8;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 500;
}

/* ── MAIN LAYOUT (CSS Grid) ──────────────── */
.site-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 64px;
  display: grid;
  grid-template-columns: 1fr 300px;
  grid-template-rows: auto;
  gap: 32px;
  align-items: start;
}

/* ── CONTENT AREA ────────────────────────── */
.content-area {
  min-width: 0;
}

/* intro info banner */
.info-banner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.info-card {
  background: var(--j-white);
  border: 1px solid var(--j-border);
  border-radius: var(--radius-lg);
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: var(--j-shadow);
}

.info-card-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-card-icon svg {
  width: 20px;
  height: 20px;
}

.info-card-label {
  font-size: 11px;
  color: var(--j-gray-400);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 2px;
}

.info-card-value {
  font-size: 13px;
  font-weight: 500;
  color: var(--j-gray-800);
}

/* article card */
.article-card {
  background: var(--j-white);
  border: 1px solid var(--j-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--j-shadow);
  overflow: hidden;
  margin-bottom: 24px;
}

.article-header {
  padding: 24px 28px 0;
  border-bottom: 2px solid var(--j-blue);
  padding-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.step-badge {
  width: 36px;
  height: 36px;
  background: var(--j-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  flex-shrink: 0;
}

.article-header h2 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--j-gray-800);
}

.article-body {
  padding: 24px 28px;
}

.article-body p {
  margin-bottom: 14px;
  line-height: 1.7;
  color: var(--j-gray-600);
}

.article-body p:last-child {
  margin-bottom: 0;
}

/* note / tip box */
.note-box {
  border-left: 4px solid var(--j-blue);
  background: var(--j-blue-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 14px 18px;
  margin: 18px 0;
  font-size: 14px;
  color: var(--j-blue-dark);
}

.note-box.tip {
  border-color: var(--j-green);
  background: var(--j-green-light);
  color: var(--j-green);
}

.note-box.warning {
  border-color: var(--j-orange);
  background: var(--j-orange-light);
  color: var(--j-orange);
}

.note-box strong {
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* code block */
.code-block {
  background: #1e2233;
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  margin: 16px 0;
  position: relative;
  overflow: hidden;
}

.code-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #56b6c2, #c678dd, #e06c75);
}

.code-block pre {
  font-family: var(--font-mono);
  font-size: 13px;
  color: #abb2bf;
  line-height: 1.7;
  overflow-x: auto;
}

.code-block .cmd {
  color: #98c379;
}

.code-block .comment {
  color: #5c6370;
  font-style: italic;
}

.code-block .flag {
  color: #56b6c2;
}

.code-block .str {
  color: #e5c07b;
}

.copy-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  padding: 4px 10px;
  font-size: 11px;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: background 0.15s;
}

.copy-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  color: white;
}

/* step list */
.step-list {
  list-style: none;
  counter-reset: step;
  margin: 16px 0;
}

.step-list li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--j-gray-600);
}

.step-list li::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--j-blue);
  color: white;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 600;
  margin-top: 2px;
  flex-shrink: 0;
}

/* partition table */
.partition-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin: 16px 0;
}

.partition-table th {
  background: var(--j-blue);
  color: white;
  padding: 10px 14px;
  text-align: left;
  font-weight: 500;
}

.partition-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--j-border);
  color: var(--j-gray-600);
}

.partition-table tr:nth-child(even) td {
  background: var(--j-gray-50);
}

.partition-table td:first-child {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--j-blue-dark);
}

/* requirements grid */
.req-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 16px 0;
}

.req-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--j-gray-50);
  border: 1px solid var(--j-border);
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--j-gray-600);
}

.req-item svg {
  width: 18px;
  height: 18px;
  color: var(--j-blue);
  flex-shrink: 0;
}

.req-label {
  font-weight: 500;
  color: var(--j-gray-800);
  font-size: 12px;
  margin-bottom: 1px;
}

/* progress tracker */
.progress-bar-wrap {
  margin-bottom: 28px;
}

.progress-bar-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  background: var(--j-white);
  border: 1px solid var(--j-border);
  border-radius: 100px;
  overflow: hidden;
  box-shadow: var(--j-shadow);
}

.progress-step {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 10px 4px;
  font-size: 11px;
  font-weight: 500;
  color: var(--j-gray-400);
  text-align: center;
  border-right: 1px solid var(--j-border);
  gap: 3px;
}

.progress-step:last-child {
  border-right: none;
}

.progress-step.done {
  background: var(--j-blue);
  color: white;
}

.progress-step.active {
  background: var(--j-blue-light);
  color: var(--j-blue);
}

.progress-step .ps-num {
  font-size: 15px;
  font-weight: 600;
}

/* ── SIDEBAR ─────────────────────────────── */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-widget {
  background: var(--j-white);
  border: 1px solid var(--j-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--j-shadow);
  overflow: hidden;
}

.widget-header {
  background: var(--j-blue);
  color: white;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.widget-header svg {
  width: 16px;
  height: 16px;
  opacity: 0.85;
}

.widget-body {
  padding: 16px 18px;
}

/* toc */
.toc-list {
  list-style: none;
}

.toc-list li {
  border-bottom: 1px solid var(--j-border);
  padding: 9px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.toc-list li:last-child {
  border-bottom: none;
}

.toc-num {
  width: 22px;
  height: 22px;
  background: var(--j-blue);
  color: white;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.toc-list a {
  color: var(--j-gray-600);
  font-size: 13px;
}

.toc-list a:hover {
  color: var(--j-blue);
  text-decoration: none;
}

/* related articles */
.related-list {
  list-style: none;
}

.related-list li {
  border-bottom: 1px solid var(--j-border);
  padding: 10px 0;
}

.related-list li:last-child {
  border-bottom: none;
}

.related-list a {
  font-size: 13px;
  color: var(--j-gray-600);
  line-height: 1.4;
  display: block;
}

.related-list a:hover {
  color: var(--j-blue);
  text-decoration: none;
}

.related-cat {
  font-size: 11px;
  color: var(--j-blue);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-top: 3px;
  display: block;
}

/* sys req widget */
.req-mini {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.req-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  padding: 7px 0;
  border-bottom: 1px solid var(--j-border);
}

.req-row:last-child {
  border-bottom: none;
}

.req-row-label {
  color: var(--j-gray-400);
  font-size: 12px;
}

.req-row-val {
  font-weight: 500;
  color: var(--j-gray-800);
  font-size: 13px;
}

/* download btn */
.dl-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  background: var(--j-blue);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
  text-decoration: none;
}

.dl-btn:hover {
  background: var(--j-blue-dark);
  color: white;
  text-decoration: none;
}

.dl-btn svg {
  width: 18px;
  height: 18px;
}

.dl-note {
  font-size: 11px;
  color: var(--j-gray-400);
  text-align: center;
  margin-top: 8px;
}

/* ── FOOTER ──────────────────────────────── */
.site-footer {
  background: var(--j-gray-800);
  color: #9098a9;
  padding: 40px 24px 20px;
  margin-top: 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  margin-top: 12px;
  max-width: 260px;
}

.footer-col h4 {
  color: white;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #9098a9;
  font-size: 13px;
}

.footer-col ul li a:hover {
  color: white;
  text-decoration: none;
}

.footer-bottom {
  max-width: 1200px;
  margin: 16px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.footer-joomla {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #9098a9;
}

.j-badge {
  background: var(--j-blue);
  color: white;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 600;
}

.tag {
  display: inline-flex;
  align-items: center;
  background: var(--j-blue-light);
  color: var(--j-blue);
  border-radius: 20px;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 500;
  margin: 2px 2px;
}

.article-tags {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--j-border);
}

.article-tags-label {
  font-size: 12px;
  color: var(--j-gray-400);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.4px;
  margin-bottom: 8px;
}/*# sourceMappingURL=template.css.map */