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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

      .su-nav a { text-decoration: none; border: 1px solid var(--su-border); border-radius: 999px; padding: .25rem .65rem; background: #fff; }
    

      .su-main h1, .su-main h2, .su-main h3 { letter-spacing: 0; font-weight: 650; }
    

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

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

