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

.le-page { min-height: 100vh; display: flex; flex-direction: column; }
.le-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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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


/* ---- Dynamic Site Style Profile ---- */
:root { --le-radius: 4px; }
.le-header, .le-main, .le-footer { max-width: 980px; }
body { font-size: 16px; line-height: 1.62; }
.le-header, .le-main, .le-footer { padding: 1rem 1.25rem; }
.le-main h2 { margin-top: 1.8rem; }
.le-pager a, .le-sbody th, .le-sbody td { border-radius: var(--le-radius); }

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

      .le-main h1, .le-main h2, .le-main h3 { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: -.2px; }
    

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

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

