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

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

/* Resist host/theme bleed on shared CMS installs. */
body[class*="-page"] {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
body[class*="-page"] > [class$="-header"],
body[class*="-page"] > [class$="-main"],
body[class*="-page"] > [class$="-footer"] {
  display: block !important;
  float: none !important;
  clear: both !important;
  margin-left: auto !important;
  margin-right: auto !important;
  left: auto !important;
  right: auto !important;
  transform: none !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

      .pv-footer { border-top: 0; opacity: .9; }
    
/* ---- End Dynamic Site Style Profile ---- */

