:root {
  --lsb-navy: #061d31;
  --lsb-navy-2: #0d2f4d;
  --lsb-green: #22c875;
  --lsb-green-2: #13a965;
  --lsb-cyan: #0ea5c9;
  --lsb-gold: #f2c94c;
  --lsb-ink: #172639;
  --lsb-muted: #617286;
  --lsb-line: #d9e4ed;
  --lsb-soft: #f4f8fb;
  --lsb-card: #ffffff;
  --lsb-shadow: 0 18px 42px rgba(8, 31, 52, .08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.lsb-theme {
  margin: 0;
  background: var(--lsb-soft);
  color: var(--lsb-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.lsb-theme a {
  color: inherit;
  text-decoration: none;
}

body.lsb-theme img {
  display: block;
  max-width: 100%;
  height: auto;
}

.lsb-skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--lsb-green);
  color: #061d31;
  font-weight: 700;
}

.lsb-skip-link:focus {
  top: 12px;
}

.lsb-container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.lsb-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 78px;
  background: rgba(6, 29, 49, .98);
  border-bottom: 1px solid rgba(255, 255, 255, .10);
  box-shadow: 0 14px 34px rgba(6, 29, 49, .22);
  backdrop-filter: blur(16px);
}

.lsb-header-inner {
  width: min(1160px, calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.lsb-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  color: #fff;
}

.lsb-brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--lsb-green);
  color: #061d31;
  font-size: .84rem;
  font-weight: 700;
}

.lsb-brand strong {
  display: block;
  color: #fff;
  font-size: 1.18rem;
  line-height: 1.1;
}

.lsb-brand em {
  display: block;
  margin-top: 2px;
  color: #9fb9cb;
  font-size: .78rem;
  font-style: normal;
  font-weight: 600;
}

.lsb-primary-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lsb-nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lsb-theme .lsb-nav-list a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 8px;
  color: #d8e8f2;
  font-size: .92rem;
  font-weight: 700;
  transition: background .18s ease, color .18s ease;
}

.lsb-theme .lsb-nav-list a:hover,
.lsb-theme .lsb-nav-list .current-menu-item > a,
.lsb-theme .lsb-nav-list .current_page_item > a {
  background: rgba(255, 255, 255, .10);
  color: #fff;
}

.lsb-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  min-width: 54px;
  padding: 9px 14px;
  border-radius: 8px;
  background: var(--lsb-green);
  color: #062238;
  font-weight: 700;
}

.lsb-menu-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  position: relative;
  padding: 0 12px 0 38px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font: inherit;
  font-weight: 700;
}

.lsb-menu-toggle span {
  display: block;
  position: absolute;
  left: 12px;
  width: 16px;
  height: 2px;
  background: #fff;
}

.lsb-menu-toggle span:nth-child(1) {
  top: 13px;
}

.lsb-menu-toggle span:nth-child(2) {
  top: 20px;
}

.lsb-menu-toggle span:nth-child(3) {
  top: 27px;
}

.lsb-menu-toggle b {
  font-size: .9rem;
}

.lsb-site-main {
  min-height: 70vh;
}

.lsb-home-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  background-color: var(--lsb-navy);
  background-position: center right;
  background-size: cover;
  overflow: hidden;
}

.lsb-home-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 130px;
  background: linear-gradient(180deg, transparent, var(--lsb-soft));
  pointer-events: none;
}

.lsb-home-hero-inner {
  position: relative;
  z-index: 1;
  padding: 72px 0 96px;
}

.lsb-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #8fb2c8;
  font-size: .74rem;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.lsb-section-heading .lsb-eyebrow,
.lsb-empty-state .lsb-eyebrow {
  border-color: transparent;
  background: transparent;
  color: #536a80;
}

.lsb-home-hero .lsb-eyebrow,
.lsb-workflow-panel .lsb-eyebrow,
.lsb-single-hero .lsb-eyebrow,
.lsb-archive-hero .lsb-eyebrow,
.lsb-page-hero .lsb-eyebrow {
  border-color: transparent;
  background: transparent;
  color: #b9d1df;
}

.lsb-home-hero h1 {
  max-width: 760px;
  margin: 20px 0 0;
  color: #fff;
  font-size: 4rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.lsb-home-hero p {
  max-width: 700px;
  margin: 20px 0 0;
  color: #d5e6f0;
  font-size: 1.16rem;
  line-height: 1.7;
}

.lsb-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.lsb-button,
.lsb-search-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 0;
  border-radius: 8px;
  font-weight: 700;
  line-height: 1.1;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.lsb-button:hover,
.lsb-search-form button:hover {
  transform: translateY(-2px);
}

.lsb-button.is-primary,
.lsb-search-form button {
  background: var(--lsb-green);
  color: #062238;
  box-shadow: 0 12px 30px rgba(34, 200, 117, .24);
}

.lsb-button.is-ghost {
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .10);
  color: #fff;
}

.lsb-topic-stage {
  position: relative;
  z-index: 2;
  margin-top: -66px;
  padding-bottom: 42px;
}

.lsb-section-heading {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin-bottom: 24px;
}

.lsb-section-heading.is-centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  justify-items: center;
}

.lsb-section-heading h2,
.lsb-workflow-panel h2,
.lsb-empty-state h2,
.lsb-aside-card h2 {
  margin: 0;
  color: var(--lsb-navy);
  font-size: 2.35rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.lsb-section-heading p,
.lsb-workflow-panel p,
.lsb-empty-state p {
  margin: 0;
  color: var(--lsb-muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

.lsb-topic-stage .lsb-section-heading h2 {
  color: var(--lsb-navy);
}

.lsb-topic-stage .lsb-section-heading p {
  color: var(--lsb-muted);
}

.lsb-topic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.lsb-topic-card {
  position: relative;
  min-height: 196px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(210, 224, 235, .96);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(247, 251, 253, .98)),
    linear-gradient(90deg, rgba(14, 165, 201, .08), transparent 56%);
  box-shadow: 0 16px 38px rgba(8, 31, 52, .08);
  overflow: hidden;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.lsb-topic-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--lsb-cyan), var(--lsb-green));
}

.lsb-topic-card:hover {
  transform: translateY(-3px);
  border-color: rgba(14, 165, 201, .34);
  box-shadow: 0 22px 52px rgba(8, 31, 52, .12);
}

.lsb-topic-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.lsb-topic-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  border: 1px solid #d9e7f0;
  background: #eef5f9;
  color: var(--lsb-navy);
  font-size: .86rem;
  font-weight: 700;
}

.lsb-topic-group {
  color: #65788b;
  font-size: .73rem;
  font-weight: 700;
  text-transform: uppercase;
}

.lsb-topic-card strong {
  position: relative;
  z-index: 1;
  color: var(--lsb-navy);
  font-size: 1.24rem;
  font-weight: 700;
  line-height: 1.15;
}

.lsb-topic-card em {
  position: relative;
  z-index: 1;
  color: var(--lsb-muted);
  font-size: .95rem;
  font-style: normal;
  line-height: 1.45;
}

.lsb-topic-link {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #e3edf4;
  color: #23485f;
  font-size: .9rem;
  font-weight: 700;
}

.lsb-topic-link::after {
  content: ">";
  color: #6f8293;
}

.lsb-workflow {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: stretch;
  padding: 10px 0 54px;
}

.lsb-workflow-panel {
  padding: 28px;
  border-radius: 8px;
  background: var(--lsb-navy);
  box-shadow: var(--lsb-shadow);
}

.lsb-workflow-panel h2 {
  margin-top: 14px;
  color: #fff;
}

.lsb-workflow-panel p {
  margin-top: 14px;
  color: #cfe0ec;
}

.lsb-workflow-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.lsb-workflow-steps div {
  padding: 20px;
  border: 1px solid var(--lsb-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(8, 31, 52, .08);
}

.lsb-workflow-steps strong {
  display: inline-flex;
  margin-bottom: 18px;
  color: #6c7f91;
  font-size: .86rem;
  font-weight: 600;
}

.lsb-workflow-steps span {
  display: block;
  color: var(--lsb-navy);
  font-size: 1.2rem;
  font-weight: 700;
}

.lsb-workflow-steps p {
  margin: 8px 0 0;
  color: var(--lsb-muted);
}

.lsb-section {
  padding: 46px 0;
}

.lsb-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.lsb-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.lsb-post-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--lsb-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--lsb-shadow);
}

.lsb-post-card.is-featured {
  min-height: 430px;
}

.lsb-post-media {
  position: relative;
  display: block;
  min-height: 210px;
  background: linear-gradient(135deg, var(--lsb-navy), var(--lsb-green-2));
  overflow: hidden;
}

.lsb-post-card.is-featured .lsb-post-media {
  min-height: 240px;
}

.lsb-post-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform .25s ease;
}

.lsb-post-card:hover .lsb-post-media img {
  transform: scale(1.035);
}

.lsb-post-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.lsb-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #7b8a9b;
  font-size: .82rem;
  font-weight: 600;
}

.lsb-post-chip,
.lsb-article-chip {
  width: fit-content;
  margin-top: 12px;
  padding: 0 0 2px;
  border-bottom: 1px solid #c8d8e4;
  border-radius: 0;
  background: transparent;
  color: #526a7e;
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.lsb-post-card h2 {
  margin: 14px 0 0;
  color: var(--lsb-navy);
  font-size: 1.35rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.lsb-post-card.is-featured h2 {
  font-size: 1.65rem;
}

.lsb-post-card p {
  margin: 12px 0 0;
  color: var(--lsb-muted);
  line-height: 1.58;
}

.lsb-read-more {
  width: fit-content;
  margin-top: auto;
  padding-top: 16px;
  color: #183c55;
  font-weight: 700;
}

.lsb-read-more::after {
  content: " >";
  color: #7a8b9b;
}

.lsb-archive-hero,
.lsb-page-hero {
  padding: 82px 0 58px;
  background:
    linear-gradient(90deg, rgba(6, 29, 49, .98), rgba(8, 55, 75, .88)),
    radial-gradient(circle at 78% 30%, rgba(34, 200, 117, .22), transparent 32%);
  color: #fff;
}

.lsb-archive-hero h1,
.lsb-page-hero h1,
.lsb-single-hero h1 {
  max-width: 880px;
  margin: 18px 0 0;
  color: #fff;
  font-size: 3.4rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.lsb-archive-hero p {
  max-width: 720px;
  margin: 16px 0 0;
  color: #d5e6f0;
}

.lsb-topic-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin-top: -26px;
}

.lsb-topic-strip a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 12px 13px;
  border: 1px solid var(--lsb-line);
  border-left: 3px solid #c8d8e4;
  border-radius: 8px;
  background: #fff;
  color: var(--lsb-navy);
  font-size: .9rem;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(8, 31, 52, .08);
}

.lsb-topic-strip a::after {
  content: ">";
  color: #7a8b9b;
  font-weight: 600;
}

.lsb-single-hero {
  min-height: 390px;
  display: flex;
  align-items: center;
  background-color: var(--lsb-navy);
  background-position: center right;
  background-size: cover;
  color: #fff;
}

.lsb-single-hero .lsb-container {
  padding: 70px 0;
}

.lsb-single-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
  color: #cfe0ec;
  font-weight: 600;
}

.lsb-single-hero p {
  max-width: 740px;
  margin: 18px 0 0;
  color: #d7e8f1;
  font-size: 1.08rem;
}

.lsb-single-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 280px;
  gap: 36px;
  align-items: start;
  padding: 48px 0 72px;
}

.lsb-single-content {
  min-width: 0;
  padding: 34px;
  border: 1px solid var(--lsb-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--lsb-shadow);
}

.lsb-single-content,
.lsb-page-content {
  color: #293b50;
  font-size: 1.08rem;
}

.lsb-single-content h2,
.lsb-page-content h2 {
  margin: 36px 0 12px;
  color: var(--lsb-navy);
  font-size: 2rem;
  line-height: 1.16;
  letter-spacing: 0;
  scroll-margin-top: 110px;
}

.lsb-single-content h3,
.lsb-page-content h3 {
  margin: 28px 0 10px;
  color: var(--lsb-navy);
  font-size: 1.34rem;
}

.lsb-single-content p,
.lsb-page-content p,
.lsb-single-content li,
.lsb-page-content li {
  line-height: 1.78;
}

.lsb-single-content a,
.lsb-page-content a {
  color: #0d4f71;
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.lsb-single-content ul,
.lsb-page-content ul {
  padding-left: 1.2rem;
}

.lsb-single-aside {
  position: sticky;
  top: 102px;
  display: grid;
  gap: 14px;
}

.lsb-aside-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--lsb-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(8, 31, 52, .08);
}

.lsb-aside-card h2 {
  font-size: 1.28rem;
}

.lsb-aside-card p {
  margin: 0;
  color: var(--lsb-muted);
  font-size: .94rem;
}

.lsb-post-toc {
  display: grid;
  gap: 8px;
}

.lsb-post-toc a {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid #dbe7ef;
  border-radius: 8px;
  background: #f8fbfd;
  color: var(--lsb-navy);
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.3;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.lsb-post-toc a:hover {
  transform: translateX(2px);
  border-color: #9fc4d8;
  background: #fff;
}

.lsb-post-toc a span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #e9f2f7;
  color: #425b70;
  font-size: .74rem;
  font-weight: 700;
}

.lsb-system-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-top: 42px;
  padding: 26px;
  border: 1px solid #cfdde8;
  border-left: 4px solid var(--lsb-cyan);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(6, 29, 49, .98), rgba(11, 58, 79, .96)),
    var(--lsb-navy);
  color: #fff;
  box-shadow: 0 18px 42px rgba(8, 31, 52, .12);
}

.lsb-system-cta span {
  display: block;
  color: #b7d2e2;
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.lsb-system-cta h2 {
  margin: 10px 0 0;
  color: #fff;
  font-size: 1.62rem;
}

.lsb-system-cta p {
  max-width: 620px;
  margin: 12px 0 0;
  color: #cfe0ec;
  line-height: 1.65;
}

.lsb-system-actions {
  display: grid;
  gap: 10px;
  min-width: 190px;
}

.lsb-single-content .lsb-system-actions a {
  display: inline-flex;
  justify-content: center;
  min-height: 44px;
  padding: 11px 14px;
  border-radius: 8px;
  font-size: .94rem;
  font-weight: 700;
  text-decoration: none;
}

.lsb-single-content .lsb-system-primary {
  background: var(--lsb-green);
  color: #062238;
}

.lsb-single-content .lsb-system-secondary {
  border: 1px solid rgba(255, 255, 255, .28);
  color: #fff;
}

.lsb-page-content {
  max-width: 860px;
  padding: 44px 0 72px;
}

.lsb-search-form {
  display: flex;
  gap: 10px;
  max-width: 720px;
  margin-bottom: 28px;
}

.lsb-search-form label {
  flex: 1;
}

.lsb-search-form input {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid var(--lsb-line);
  border-radius: 8px;
  background: #fff;
  color: var(--lsb-ink);
  font: inherit;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.lsb-empty-state {
  max-width: 720px;
  padding: 28px;
  border: 1px solid var(--lsb-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--lsb-shadow);
}

.lsb-pagination {
  margin-top: 28px;
}

.lsb-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lsb-pagination a,
.lsb-pagination span {
  padding: 8px 12px;
  border: 1px solid var(--lsb-line);
  border-radius: 8px;
  background: #fff;
  font-weight: 700;
}

.lsb-site-footer {
  background: #061d31;
  color: #d5e6f0;
}

.lsb-footer-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, .95fr) minmax(150px, .65fr) minmax(180px, .75fr);
  gap: 30px;
  padding: 42px 0 30px;
}

.lsb-footer-brand {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
}

.lsb-site-footer p {
  max-width: 560px;
  margin: 8px 0 0;
  color: #9fb9cb;
}

.lsb-footer-system h2,
.lsb-footer-links h2,
.lsb-footer-topics h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
  text-transform: uppercase;
}

.lsb-footer-system a {
  display: inline-flex;
  margin-top: 14px;
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.lsb-footer-links,
.lsb-footer-topics {
  display: grid;
  align-content: start;
  gap: 9px;
}

.lsb-footer-links a,
.lsb-footer-topics a {
  width: fit-content;
  padding: 0 0 4px;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  color: #d5e6f0;
  font-weight: 600;
}

.lsb-footer-bottom {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: #8fabbd;
  font-size: .86rem;
}

.lsb-single-content .ls-article-shell {
  width: auto;
  margin: 0;
  overflow: visible;
}

.lsb-single-content .ls-article-hero {
  display: none;
}

.lsb-single-content .ls-article-card {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.lsb-single-content .ls-summary-box {
  margin: 26px 0;
  padding: 18px 20px;
  border-left: 5px solid var(--lsb-green);
  border-radius: 8px;
  background: #eef9f3;
}

.lsb-single-content .ls-sources {
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid var(--lsb-line);
}

.lsb-single-content .ls-sources a {
  color: #0d4f71;
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1080px) {
  .lsb-primary-nav {
    gap: 8px;
  }

  .lsb-nav-list a {
    padding-right: 9px;
    padding-left: 9px;
    font-size: .86rem;
  }

  .lsb-topic-grid,
  .lsb-post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lsb-topic-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  body.lsb-theme {
    font-size: 16px;
  }

  .lsb-container,
  .lsb-header-inner,
  .lsb-footer-inner {
    width: min(720px, calc(100% - 32px));
  }

  .lsb-site-header,
  .lsb-header-inner {
    min-height: 72px;
  }

  .lsb-brand {
    min-width: 0;
  }

  .lsb-brand-mark {
    display: none;
  }

  .lsb-brand em {
    display: none;
  }

  .lsb-menu-toggle {
    display: inline-flex;
  }

  .lsb-primary-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    background: #082238;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .28);
  }

  .lsb-primary-nav.is-open {
    display: flex;
  }

  .lsb-nav-list {
    display: grid;
    gap: 4px;
  }

  .lsb-nav-list a,
  .lsb-nav-cta {
    width: 100%;
    justify-content: flex-start;
  }

  .lsb-home-hero {
    min-height: 520px;
    background-position: center;
  }

  .lsb-home-hero-inner {
    padding: 64px 0 82px;
  }

  .lsb-home-hero h1 {
    max-width: 620px;
    font-size: 2.65rem;
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .lsb-home-hero p {
    font-size: 1rem;
  }

  .lsb-topic-stage {
    margin-top: -44px;
  }

  .lsb-section-heading h2,
  .lsb-workflow-panel h2,
  .lsb-empty-state h2 {
    font-size: 1.9rem;
  }

  .lsb-topic-grid,
  .lsb-feature-grid,
  .lsb-post-grid,
  .lsb-workflow,
  .lsb-workflow-steps,
  .lsb-single-layout,
  .lsb-footer-inner {
    grid-template-columns: 1fr;
  }

  .lsb-single-aside {
    position: static;
    order: -1;
  }

  .lsb-archive-hero h1,
  .lsb-page-hero h1,
  .lsb-single-hero h1 {
    font-size: 2.45rem;
  }

  .lsb-single-content {
    padding: 24px;
  }

  .lsb-system-cta {
    grid-template-columns: 1fr;
  }

  .lsb-system-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-width: 0;
  }
}

@media (max-width: 560px) {
  .lsb-container,
  .lsb-header-inner,
  .lsb-footer-inner {
    width: calc(100% - 28px);
  }

  .lsb-brand strong {
    font-size: 1rem;
  }

  .lsb-home-hero {
    min-height: auto;
  }

  .lsb-home-hero-inner {
    padding: 54px 0 70px;
  }

  .lsb-home-hero h1 {
    max-width: 330px;
    font-size: 1.78rem;
  }

  .lsb-hero-actions,
  .lsb-search-form {
    display: grid;
    grid-template-columns: 1fr;
  }

  .lsb-button,
  .lsb-search-form button {
    width: 100%;
  }

  .lsb-topic-stage {
    margin-top: -32px;
  }

  .lsb-section-heading.is-centered {
    text-align: left;
    justify-items: start;
  }

  .lsb-topic-card {
    min-height: 178px;
  }

  .lsb-topic-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lsb-section {
    padding: 34px 0;
  }

  .lsb-post-media,
  .lsb-post-card.is-featured .lsb-post-media {
    min-height: 190px;
  }

  .lsb-archive-hero,
  .lsb-page-hero {
    padding: 58px 0 42px;
  }

  .lsb-archive-hero h1,
  .lsb-page-hero h1,
  .lsb-single-hero h1 {
    font-size: 2rem;
  }

  .lsb-single-hero .lsb-container {
    padding: 52px 0;
  }

  .lsb-single-layout {
    padding: 30px 0 52px;
  }

  .lsb-single-content {
    padding: 20px;
    font-size: 1rem;
  }

  .lsb-single-content h2,
  .lsb-page-content h2 {
    font-size: 1.55rem;
  }

  .lsb-system-cta {
    margin-top: 34px;
    padding: 20px;
  }

  .lsb-system-actions {
    grid-template-columns: 1fr;
  }

  .lsb-footer-bottom {
    width: calc(100% - 28px);
  }
}
