:root {
  --hc-primary: #2563eb;
  --hc-primary-hover: #1d4ed8;
  --hc-secondary: #1e40af;
  --hc-text: #1e293b;
  --hc-muted: #64748b;
  --hc-bg: #ffffff;
  --hc-border: #e2e8f0;
  --hc-radius: 8px;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--hc-text);
  background: var(--hc-bg);
  -webkit-font-smoothing: antialiased;
}

.hc-page { min-height: 100vh; display: flex; flex-direction: column; }
.hc-main { flex: 1; }

.hc-header,
.hc-main,
.hc-footer {
  width: 100%;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem 1.25rem;
}
@media (min-width: 640px) {
  .hc-header,
  .hc-main,
  .hc-footer { padding: 1.5rem 2rem; }
}

.hc-header {
  border-bottom: 1px solid var(--hc-border);
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.hc-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}
.hc-nav a {
  color: var(--hc-primary);
  text-decoration: none;
  font-weight: 500;
}
.hc-nav a:hover { color: var(--hc-primary-hover); text-decoration: underline; }

.hc-breadcrumb {
  font-size: 0.813rem;
  color: var(--hc-muted);
  margin-bottom: 1rem;
}
.hc-breadcrumb a {
  color: var(--hc-primary);
  text-decoration: none;
}
.hc-breadcrumb a:hover { text-decoration: underline; }

.hc-main h1 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 1rem 0;
}
@media (min-width: 640px) {
  .hc-main h1 { font-size: 1.75rem; }
}

.hc-main h2 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 2rem 0 0.75rem 0;
}
@media (min-width: 640px) {
  .hc-main h2 { font-size: 1.25rem; }
}

.hc-main h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem 0;
}

.hc-main p { margin: 0 0 1rem 0; }
.hc-intro { margin-bottom: 1.5rem; }

.hc-sbody ul,
.hc-sbody ol {
  margin: 0.75rem 0 1rem 1.25rem;
  padding-left: 1.25rem;
}
.hc-sbody li { margin-bottom: 0.4rem; }

.hc-sbody table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.9rem;
  overflow-x: auto;
  display: block;
}
@media (min-width: 480px) {
  .hc-sbody table { display: table; }
}
.hc-sbody th,
.hc-sbody td {
  border: 1px solid var(--hc-border);
  padding: 0.6rem 0.75rem;
  text-align: left;
}
.hc-sbody th {
  background: var(--hc-border);
  font-weight: 600;
}

.hc-faq { margin-top: 2rem; }
.hc-faq h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--hc-text);
}

.hc-related ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hc-related li {
  margin: 0.5rem 0;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--hc-border);
}
.hc-related li:last-child { border-bottom: none; }
.hc-related a {
  color: var(--hc-primary);
  text-decoration: none;
}
.hc-related a:hover { text-decoration: underline; }

.hc-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--hc-border);
  font-size: 0.875rem;
  color: var(--hc-muted);
}
.hc-footer a {
  color: var(--hc-primary);
  text-decoration: none;
}
.hc-footer a:hover { text-decoration: underline; }

.hc-hubinfo {
  color: var(--hc-muted);
  margin-bottom: 1.5rem;
}
.hc-plist {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hc-plist li {
  margin: 0;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--hc-border);
}
.hc-plist li:last-child { border-bottom: none; }
.hc-plist a {
  color: var(--hc-primary);
  text-decoration: none;
  display: block;
}
.hc-plist a:hover { text-decoration: underline; }

.hc-pager {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.hc-pager a {
  color: var(--hc-primary);
  text-decoration: none;
  padding: 0.5rem 1rem;
  background: var(--hc-bg);
  border: 1px solid var(--hc-border);
  border-radius: var(--hc-radius);
}
.hc-pager a:hover {
  background: var(--hc-primary);
  color: white;
  border-color: var(--hc-primary);
}
.hc-pginfo {
  color: var(--hc-muted);
  font-size: 0.875rem;
}


/* ---- Dynamic Site Style Profile ---- */
:root { --hc-radius: 12px; }
.hc-header, .hc-main, .hc-footer { max-width: 820px; }
body { font-size: 15px; line-height: 1.5; }
.hc-header, .hc-main, .hc-footer { padding: 0.7rem 1rem; }
.hc-main h2 { margin-top: 1.4rem; }
.hc-pager a, .hc-sbody th, .hc-sbody td { border-radius: var(--hc-radius); }

      .hc-nav a { text-decoration: none; border: 0; padding: 0; }
    

      .hc-main h1, .hc-main h2, .hc-main h3 { font-weight: 760; letter-spacing: .1px; }
    

      .hc-header, .hc-footer, .hc-related li, .hc-plist li { border-width: 1px; }
    

      .hc-footer { border-top-style: solid; background: transparent; }
    
/* ---- End Dynamic Site Style Profile ---- */

