:root {
  --cs-primary: #2563eb;
  --cs-primary-hover: #1d4ed8;
  --cs-secondary: #1e40af;
  --cs-text: #1e293b;
  --cs-muted: #64748b;
  --cs-bg: #ffffff;
  --cs-border: #e2e8f0;
  --cs-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(--cs-text);
  background: var(--cs-bg);
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

      .cs-nav a { text-decoration: none; border: 1px solid var(--cs-border); border-radius: var(--cs-radius); padding: .3rem .55rem; background: #fff; }
    

      .cs-main h1, .cs-main h2, .cs-main h3 { font-weight: 600; color: color-mix(in srgb, var(--cs-text) 86%, #223); }
    

      .cs-header, .cs-footer, .cs-related li, .cs-plist li { border-width: 2px; }
    

      .cs-footer { border: 1px solid var(--cs-border); border-radius: var(--cs-radius); padding: .9rem 1rem; margin-bottom: 1rem; }
    
/* ---- End Dynamic Site Style Profile ---- */

