.knowledge-main {
  padding-top: 22px;
}

.knowledge-page {
  --knowledge-copy-width: 780px;
  --knowledge-figure-width: 980px;
  --knowledge-wide-width: 1280px;
  padding-bottom: 30px;
}

.knowledge-page * {
  letter-spacing: 0;
}

.knowledge-breadcrumbs {
  display: block;
  width: min(var(--knowledge-wide-width), 100%);
  margin: 0 auto 20px;
  color: var(--muted);
  font-size: 14px;
}

.knowledge-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.knowledge-breadcrumbs li {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.knowledge-breadcrumbs li:not(:last-child)::after {
  content: "/";
  color: var(--line-strong);
  font-weight: 700;
}

.knowledge-breadcrumbs a {
  color: var(--muted);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.knowledge-breadcrumbs [aria-current="page"] {
  color: var(--text);
  font-weight: 720;
}

.knowledge-eyebrow {
  display: inline-flex;
  width: fit-content;
  color: var(--accent);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.knowledge-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 300px);
  gap: clamp(26px, 3vw, 40px);
  align-items: center;
  width: min(var(--knowledge-wide-width), 100%);
  margin: 0 auto;
  padding: clamp(14px, 2.4vw, 28px) 0 clamp(30px, 4vw, 46px);
  border-bottom: 1px solid var(--line);
}

.knowledge-hero-copy,
.knowledge-hero > * {
  min-width: 0;
}

.knowledge-hero h1,
.knowledge-index-hero h1 {
  max-width: 820px;
  margin: 10px 0 13px;
  color: var(--text);
  font-size: clamp(34px, 3.5vw, 44px);
  line-height: 1.12;
  font-weight: 850;
  overflow-wrap: normal;
  hyphens: manual;
}

.knowledge-intro,
.knowledge-index-hero > p {
  max-width: 68ch;
  margin: 0;
  color: #4e5c58;
  font-size: clamp(18px, 1.7vw, 20px);
  line-height: 1.68;
}

.knowledge-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 15px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 680;
}

.knowledge-byline a,
.knowledge-correction-link a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: .18em;
}

.knowledge-sources-review,
.knowledge-correction-link {
  width: min(820px, 100%);
  margin: 2rem auto;
}

.knowledge-byline span:not(:last-child)::after {
  content: "·";
  margin-left: 15px;
  color: var(--sand);
}

.knowledge-control-visual {
  margin: 0;
}

.knowledge-schedule {
  overflow: hidden;
  border: 1px solid rgba(47, 117, 109, .18);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(37, 49, 46, .08);
}

.knowledge-schedule-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  background: #fbfaf6;
}

.knowledge-schedule-head strong {
  font-size: 14px;
}

.knowledge-schedule-head span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 720;
}

.knowledge-schedule-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  padding: 12px;
}

.knowledge-day {
  color: var(--muted);
  font-size: 11px;
  font-weight: 780;
  text-align: center;
  text-transform: uppercase;
}

.knowledge-slot {
  display: grid;
  place-items: center;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 6px;
  font-size: 10px;
  font-weight: 780;
  line-height: 1.2;
  text-align: center;
}

.knowledge-slot.public {
  border-color: rgba(47, 117, 109, .42);
  background: var(--brand-primary-soft);
  color: var(--brand-primary-dark);
}

.knowledge-slot.public::before {
  content: "✓";
  display: block;
}

.knowledge-slot.portal {
  border-style: dashed;
  border-color: #b29a72;
  background: #fbf5e9;
  color: #6f582e;
}

.knowledge-slot.portal::before {
  content: "↳";
  display: block;
  font-size: 12px;
}

.knowledge-slot.internal {
  background: #f4f2ed;
  color: #727b78;
}

.knowledge-slot.internal::before {
  content: "–";
  display: block;
}

.knowledge-schedule-legend {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0 14px 15px;
  color: var(--muted);
  font-size: 11px;
  list-style: none;
}

.knowledge-schedule-legend li {
  display: flex;
  gap: 8px;
  align-items: center;
}

.knowledge-schedule-legend li > span {
  width: 14px;
  height: 10px;
  flex: 0 0 auto;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
}

.knowledge-schedule-legend .legend-public {
  border-color: rgba(47, 117, 109, .42);
  background: var(--brand-primary-soft);
}

.knowledge-schedule-legend .legend-portal {
  border-style: dashed;
  border-color: #b29a72;
  background: #fbf5e9;
}

.knowledge-schedule-legend .legend-internal {
  background: #f4f2ed;
}

.knowledge-package-strip {
  display: grid;
  gap: 13px;
  overflow: hidden;
  border: 1px solid rgba(47, 117, 109, .18);
  border-radius: 14px;
  padding: 14px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(37, 49, 46, .08);
}

.knowledge-package-strip-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 11px;
  border-bottom: 1px solid var(--line);
}

.knowledge-package-strip-head strong {
  font-size: 14px;
}

.knowledge-package-strip-head span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--brand-primary-soft);
  color: var(--brand-primary-dark);
  font-size: 14px;
  font-weight: 850;
}

.knowledge-package-sessions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.knowledge-package-sessions span {
  display: grid;
  place-items: center;
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 7px;
  font-size: 10px;
  font-weight: 820;
  line-height: 1.15;
  text-align: center;
}

.knowledge-package-sessions .used {
  background: #f4f2ed;
  color: #727b78;
}

.knowledge-package-sessions .used::before {
  content: "✓";
  display: block;
}

.knowledge-package-sessions .reserved {
  border-style: dashed;
  border-color: #b29a72;
  background: #fbf5e9;
  color: #6f582e;
}

.knowledge-package-sessions .reserved::before {
  content: "↳";
  display: block;
}

.knowledge-package-sessions .available {
  border-color: rgba(47, 117, 109, .42);
  background: var(--brand-primary-soft);
  color: var(--brand-primary-dark);
}

.knowledge-package-sessions .available::before {
  content: "+";
  display: block;
}

.knowledge-package-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  text-align: center;
}

.knowledge-booking-group-card {
  display: grid;
  gap: 13px;
  overflow: hidden;
  border: 1px solid rgba(47, 117, 109, .18);
  border-radius: 14px;
  padding: 14px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(37, 49, 46, .08);
}

.knowledge-booking-group-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 11px;
  border-bottom: 1px solid var(--line);
}

.knowledge-booking-group-card-head strong {
  font-size: 14px;
}

.knowledge-booking-group-card-head span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}

.knowledge-booking-group-bars {
  display: grid;
  gap: 9px;
}

.knowledge-booking-group-bars span {
  display: grid;
  gap: 5px;
  color: #33413d;
  font-size: 12px;
  font-weight: 780;
}

.knowledge-booking-group-bars em {
  display: block;
  width: var(--bar-width);
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--sage));
  opacity: .85;
}

.knowledge-booking-group-bars span:first-child em {
  background: linear-gradient(90deg, #c9d8d3, #e8f4f1);
}

.knowledge-booking-group-bars span:last-child em {
  background: linear-gradient(90deg, #b29a72, #e7d6b9);
}

.knowledge-booking-group-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  line-height: 1.45;
  text-align: center;
}

.knowledge-control-visual figcaption,
.knowledge-product-screenshot figcaption {
  margin: 10px auto 0;
  max-width: 62ch;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.knowledge-article-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: clamp(30px, 4vw, 56px);
  justify-content: stretch;
  align-items: start;
  width: min(var(--knowledge-wide-width), 100%);
  margin: 0 auto;
  padding-top: clamp(24px, 3vw, 38px);
}

.knowledge-setup-preamble {
  display: grid;
  gap: 22px;
  width: min(var(--knowledge-copy-width), 100%);
  margin: clamp(26px, 3vw, 38px) auto 0;
}

.knowledge-series-progress {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 15px;
  background: #fffdfa;
}

.knowledge-series-progress > strong {
  color: var(--text);
  font-size: 13px;
}

.knowledge-series-progress ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0 !important;
  list-style: none;
}

.knowledge-series-progress li {
  min-width: 0;
}

.knowledge-series-progress a,
.knowledge-series-progress li > span {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px;
  color: #40504b;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.25;
  min-width: 0;
  overflow-wrap: anywhere;
}

.knowledge-series-progress a:hover,
.knowledge-series-progress a:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
}

.knowledge-series-progress li.is-current > span {
  border-color: rgba(47, 117, 109, .44);
  background: var(--brand-primary-soft);
  color: var(--brand-primary-dark);
}

.knowledge-series-progress b {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #e7ece9;
  color: var(--text);
  font-size: 12px;
}

.knowledge-series-progress .is-current b {
  background: var(--accent);
  color: #fff;
}

.knowledge-series-progress em,
.knowledge-setup-step em {
  border-radius: 999px;
  padding: 2px 6px;
  background: #f3ead9;
  color: #725c30;
  font-size: 10px;
  font-style: normal;
  font-weight: 850;
  text-transform: uppercase;
}

.knowledge-quick-setup {
  border-left: 4px solid var(--accent);
  border-radius: 0 8px 8px 0;
  padding: 17px 20px;
  background: var(--brand-primary-soft);
}

.knowledge-quick-setup h2 {
  margin: 0 0 12px;
  font-size: 20px;
}

.knowledge-quick-setup ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 24px;
  margin: 0;
  padding-left: 22px;
}

.knowledge-quick-setup li {
  color: #33413d;
  font-size: 15px;
  line-height: 1.5;
}

.knowledge-toc {
  position: sticky;
  top: 92px;
  border-right: 1px solid var(--line);
  padding-right: 18px;
  color: var(--muted);
  font-size: 13px;
}

.knowledge-toc summary {
  display: block;
  margin: 0 0 10px;
  color: var(--text);
  font-size: 13px;
  font-weight: 820;
  cursor: default;
  list-style: none;
}

.knowledge-toc summary::-webkit-details-marker {
  display: none;
}

.knowledge-toc ol {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.knowledge-toc a {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  color: var(--muted);
  line-height: 1.25;
}

.knowledge-toc a:hover,
.knowledge-toc a:focus-visible {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.knowledge-article-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-content: start;
  min-width: 0;
}

.knowledge-article-body > *,
.knowledge-article-body section > * {
  max-width: var(--knowledge-copy-width);
}

.knowledge-article-body section {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-content: start;
  width: 100%;
  max-width: none;
  justify-self: start;
  margin-top: 44px;
  scroll-margin-top: 104px;
}

.knowledge-series-navigation {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: min(var(--knowledge-copy-width), 100%);
  margin-top: 46px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.knowledge-series-navigation-link {
  display: grid;
  gap: 5px;
  min-height: 82px;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 14px 16px;
  background: #fffdfa;
}

.knowledge-series-navigation-link.is-next {
  grid-column: 2;
  text-align: right;
}

.knowledge-series-navigation-link > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.knowledge-series-navigation-link strong {
  color: var(--accent);
  line-height: 1.35;
}

.knowledge-article-body h2 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: clamp(26px, 2.6vw, 31px);
  line-height: 1.22;
  font-weight: 830;
}

.knowledge-article-body h3 {
  margin: 26px 0 10px;
  color: var(--text);
  font-size: 20px;
  line-height: 1.3;
  font-weight: 810;
}

.knowledge-article-body p,
.knowledge-article-body li {
  color: #33413d;
  font-size: clamp(17px, 1.4vw, 18px);
  line-height: 1.7;
}

.knowledge-article-body p {
  margin: 0 0 17px;
}

.knowledge-article-body a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.knowledge-article-body ul,
.knowledge-article-body ol {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding-left: 22px;
}

.knowledge-lead {
  display: grid;
  gap: 16px;
  padding-bottom: 6px;
}

.knowledge-lead p {
  margin: 0;
  color: #33413d;
  font-size: clamp(17px, 1.4vw, 18px);
  line-height: 1.7;
}

.knowledge-callout,
.knowledge-example {
  margin: 24px 0;
  border: 1px solid rgba(47, 117, 109, .2);
  border-radius: 8px;
  padding: 18px 20px;
  background: #fffdfa;
}

.knowledge-callout strong,
.knowledge-example-label {
  display: block;
  margin-bottom: 7px;
  color: var(--brand-primary-dark);
  font-size: 15px;
  font-weight: 840;
}

.knowledge-callout p,
.knowledge-example p {
  margin: 0;
}

.knowledge-callout-note {
  background: var(--brand-primary-soft);
}

.knowledge-question-list,
.knowledge-checklist {
  padding-left: 0;
  list-style: none;
}

.knowledge-definition-list {
  display: grid;
  gap: 12px;
  margin: 0 0 18px;
}

.knowledge-definition-list div {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.knowledge-definition-list dt {
  margin-bottom: 5px;
  color: var(--text);
  font-size: 17px;
  font-weight: 830;
}

.knowledge-definition-list dd {
  margin: 0;
  color: #33413d;
  font-size: clamp(17px, 1.4vw, 18px);
  line-height: 1.7;
}

.knowledge-question-list li,
.knowledge-checklist li {
  position: relative;
  padding-left: 28px;
}

.knowledge-question-list li::before,
.knowledge-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: .12em;
  color: var(--accent);
  font-weight: 850;
}

.knowledge-workflow-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 22px 0;
}

.knowledge-workflow-grid > section {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #fffdfa;
  scroll-margin-top: 104px;
}

.knowledge-workflow-grid h3 {
  margin-top: 0;
}

.knowledge-product-screenshot {
  width: min(var(--knowledge-figure-width), 100%);
  max-width: min(var(--knowledge-figure-width), 100%) !important;
  justify-self: start;
  margin: 28px 0 32px;
}

.knowledge-screenshot-window {
  aspect-ratio: auto;
  border-radius: 12px;
  box-shadow: 0 14px 42px rgba(36, 49, 42, .12);
}

.knowledge-screenshot-window .hero-mac-canvas {
  height: auto;
}

.knowledge-screenshot-window img {
  height: auto;
  object-fit: contain;
  background: #fff;
}

.knowledge-table-hint {
  color: var(--muted) !important;
  font-size: 14px !important;
}

.knowledge-table-scroll {
  width: min(var(--knowledge-figure-width), 100%);
  max-width: min(var(--knowledge-figure-width), 100%) !important;
  justify-self: start;
  overflow-x: auto;
  margin: 14px 0 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.knowledge-comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 15px;
}

.knowledge-comparison-table th,
.knowledge-comparison-table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  color: #33413d;
  text-align: left;
  vertical-align: top;
}

.knowledge-comparison-table thead th {
  background: #f8f6f0;
  color: var(--text);
  font-weight: 820;
}

.knowledge-comparison-table tbody th {
  color: var(--text);
  font-weight: 800;
}

.knowledge-comparison-table tbody tr:last-child th,
.knowledge-comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.knowledge-implementation-steps {
  counter-reset: knowledge-step;
  padding-left: 0 !important;
  list-style: none;
}

.knowledge-implementation-steps li {
  counter-increment: knowledge-step;
  position: relative;
  padding-left: 36px;
}

.knowledge-implementation-steps li::before {
  content: counter(knowledge-step);
  position: absolute;
  left: 0;
  top: .22em;
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: var(--brand-primary-soft);
  color: var(--brand-primary-dark);
  font-size: 12px;
  font-weight: 850;
}

.knowledge-faq-section {
  padding-top: 4px;
}

.knowledge-faq-list {
  display: grid;
  gap: 16px;
}

.knowledge-faq-item {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.knowledge-faq-item h3 {
  margin-top: 0;
  font-size: 18px;
}

.knowledge-related {
  padding: 22px 0 0;
}

.knowledge-related ul {
  padding-left: 0;
  list-style: none;
}

.knowledge-related li {
  border-top: 1px solid var(--line);
  padding: 10px 0;
}

.knowledge-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  width: min(var(--knowledge-wide-width), 100%);
  margin: 54px auto 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
}

.knowledge-cta h2 {
  max-width: 640px;
  margin: 8px 0 9px;
  font-size: clamp(26px, 2.6vw, 32px);
  line-height: 1.25;
}

.knowledge-cta p {
  max-width: 62ch;
  margin: 0;
  color: #4e5c58;
  font-size: 17px;
  line-height: 1.65;
}

.knowledge-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  align-items: center;
  justify-content: flex-end;
}

.knowledge-cta-actions a:not(.button) {
  font-weight: 760;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.knowledge-index-page {
  width: min(var(--knowledge-wide-width), 100%);
  margin: 0 auto;
}

.knowledge-index-hero {
  max-width: min(840px, 100%);
  padding: clamp(16px, 3vw, 34px) 0 30px;
}

.knowledge-index-section {
  display: grid;
  grid-template-columns: 220px minmax(0, 900px);
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
  border-top: 1px solid var(--line);
  padding-top: 30px;
}

.knowledge-index-section-spaced {
  margin-top: 38px;
}

.knowledge-setup-hero {
  grid-template-columns: minmax(0, 1fr);
}

.knowledge-setup-box ol {
  margin-bottom: 0;
}

.knowledge-setup-step {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  background: #edf6f4;
  padding: 5px 11px 5px 7px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 840;
}

.knowledge-setup-step span {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
}

.knowledge-section-heading h2 {
  margin: 7px 0 0;
  font-size: 26px;
  line-height: 1.25;
}

.knowledge-section-heading > p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.knowledge-card-list {
  display: grid;
  gap: 26px;
}

.knowledge-setup-sequence {
  position: relative;
}

.knowledge-setup-sequence::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 36px;
  bottom: 36px;
  width: 1px;
  background: var(--line-strong);
}

.knowledge-setup-card {
  position: relative;
}

.knowledge-setup-card::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 34px;
  width: 9px;
  height: 9px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 1px var(--line-strong);
}

.knowledge-card {
  display: grid;
  grid-template-columns: minmax(260px, 380px) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  padding: 4px 0;
  background: transparent;
}

.knowledge-card-thumb {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  aspect-ratio: 16 / 9;
}

.knowledge-card-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: top left;
}

.knowledge-card-content {
  display: grid;
  align-content: center;
  gap: 10px;
}

.knowledge-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 14px;
  margin: 0 0 11px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.knowledge-card h3 {
  margin: 0;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.22;
}

.knowledge-card p {
  margin: 0;
  color: #4e5c58;
  font-size: 17px;
  line-height: 1.65;
}

.knowledge-card-link {
  margin-top: 4px;
  width: fit-content;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.knowledge-marketing-footer {
  width: 100%;
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  scroll-margin-top: 96px;
}

@media (max-width: 1120px) {
  .knowledge-main {
    padding-top: 18px;
  }
}

@media (max-width: 980px) {
  .knowledge-hero,
  .knowledge-article-layout,
  .knowledge-index-section,
  .knowledge-card,
  .knowledge-cta {
    grid-template-columns: 1fr;
  }

  .knowledge-control-visual {
    max-width: 460px;
  }

  .knowledge-article-layout {
    width: 100%;
    margin: 0 auto;
    gap: 28px;
  }

  .knowledge-setup-preamble {
    width: 100%;
  }

  .knowledge-series-progress ol,
  .knowledge-quick-setup ol,
  .knowledge-series-navigation {
    grid-template-columns: 1fr;
  }

  .knowledge-series-navigation-link.is-next {
    grid-column: 1;
  }

  .knowledge-toc {
    position: static;
    order: 0;
    border-right: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0;
    background: #fffdfa;
  }

  .knowledge-toc summary {
    min-height: 44px;
    margin: 0;
    padding: 12px 16px;
    cursor: pointer;
  }

  .knowledge-toc summary::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-left: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
  }

  .knowledge-toc[open] summary::after {
    transform: rotate(225deg) translateY(-2px);
  }

  .knowledge-toc ol {
    padding: 0 16px 14px;
  }

  .knowledge-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .knowledge-main {
    padding-top: 14px;
  }

  .knowledge-breadcrumbs {
    margin-bottom: 14px;
    font-size: 13px;
  }

  .knowledge-hero {
    padding-top: 8px;
  }

  .knowledge-hero h1,
  .knowledge-index-hero h1 {
    font-size: clamp(30px, 9vw, 34px);
    line-height: 1.15;
  }

  .knowledge-intro,
  .knowledge-index-hero > p,
  .knowledge-lead p {
    font-size: 18px;
    line-height: 1.68;
  }

  .knowledge-byline {
    gap: 6px 11px;
  }

  .knowledge-byline span:not(:last-child)::after {
    margin-left: 11px;
  }

  .knowledge-article-body section {
    margin-top: 38px;
  }

  .knowledge-article-body h2 {
    font-size: 27px;
  }

  .knowledge-article-body p,
  .knowledge-article-body li {
    font-size: 17px;
  }

  .knowledge-workflow-grid {
    grid-template-columns: 1fr;
  }

  .knowledge-product-screenshot {
    width: 100%;
    max-width: 100% !important;
    margin: 24px 0 28px;
  }

  .knowledge-table-scroll {
    width: 100%;
    max-width: 100% !important;
  }

  .knowledge-cta {
    margin-top: 42px;
  }

  .knowledge-index-section {
    gap: 18px;
  }

  .knowledge-series-progress ol,
  .knowledge-quick-setup ol,
  .knowledge-series-navigation {
    grid-template-columns: 1fr;
  }

  .knowledge-series-navigation-link.is-next {
    grid-column: 1;
  }

  .knowledge-setup-sequence::before,
  .knowledge-setup-card::before {
    display: none;
  }
}

@media (max-width: 390px) {
  .knowledge-hero h1,
  .knowledge-index-hero h1 {
    font-size: 30px;
    hyphens: manual;
    overflow-wrap: break-word;
  }

  .knowledge-article-body h2 {
    font-size: 25px;
  }

  .knowledge-slot {
    min-height: 42px;
    font-size: 9px;
  }

  .knowledge-schedule-head {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .knowledge-page *,
  .knowledge-page *::before,
  .knowledge-page *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
