:root {
  --rso-text-inline-link: blue;
  --rso-text-heading-first: 1.62em;
  --rso-text-heading-second: 1.44em;
  --rso-text-weight-heavy: 700;
  --rso-gap-sm: 0.62em;
  --rso-gap-base: 1em;
  --rso-gap-lg: 1.25em;

  --rso-el-space-sm: 0.38em;
  --rso-el-space-base: 0.79em;
  --rso-el-space-lg: 1em;
  --rso-el-space-xl: 1.62em;
  --rso-el-space-2xl: 2.89em;
  --rso-el-space-4xl: 4.86em;
  --rso-el-space-box-sm: 0.21rem 0.38em;
  --rso-el-border-radius-sm: 0.21em;
  --rso-el-flex-gap-sm: 0.21em;
  --rso-el-flex-gap-md: 0.38em;
  --rso-color-default-dark: rgb(23, 16, 38);
  --rso-color-default-light: #f2f4f7;
  --rso-color-default-light-border: #d8d9dd;

  --rso-color-default-light-hover: rgb(244, 243, 249);
  --rso-color-primary: rgb(50, 91, 255);
  --rso-color-primary-hover: rgb(90, 122, 249);
  --rso-color-danger: rgb(255, 50, 50);
  --rso-color-danger-hover: rgb(249, 90, 90);
  --rso-color-white: white;
  --rso-color-black: rgb(23, 16, 38);
  --rso-iframe-mobile-frame-border: 12px;
  --rso-iframe-mobile-scale: 0.5;
  --rso-iframe-mobile-src-width: 390px;
  --rso-iframe-mobile-src-height: 844px;
  --rso-iframe-mobile-content-width: calc(
    var(--rso-iframe-mobile-src-width) * var(--rso-iframe-mobile-scale)
  );
  --rso-iframe-mobile-content-height: calc(
    var(--rso-iframe-mobile-src-height) * var(--rso-iframe-mobile-scale)
  );
  --rso-iframe-mobile-wrap-width: calc(
    var(--rso-iframe-mobile-content-width) +
      (2 * var(--rso-iframe-mobile-frame-border))
  );
  --rso-iframe-mobile-wrap-height: calc(
    var(--rso-iframe-mobile-content-height) +
      (2 * var(--rso-iframe-mobile-frame-border))
  );
  --rso-home-carousel-scrollbar-width: 0px;

  --dialog-bg: #ffffff;
  --dialog-text: inherit;
  --dialog-border: #e5e7eb;
  --dialog-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --dialog-backdrop: rgba(17, 24, 39, 0.62);
  --dialog-item-bg: #f9fafb;
  --dialog-muted-text: #6b7280;
  --rso-scroll-highlight: yellow;
  --rso-scroll-highlight-text: #111827;
}

/* App */
/* App */
/* App */
body.rs-orbit-app {
  background-color: var(--rso-color-default-light);
  background-color: var(--rso-color-white);
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

@media only screen and (min-width: 40rem) {
  body.rs-orbit-app {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 64rem) {
  body.rs-orbit-app {
    font-size: 1.44rem;
  }
}

.rs-orbit-app .rs-l-content-wrap {
  --var-rss-content-wrap-max-width: 100%;
  margin: 0 auto;
  width: var(--var-rss-content-wrap-max-width);
  /* box-shadow: var(--dialog-shadow); */
}

@media only screen and (min-width: 64rem) {
  .rs-orbit-app .rs-l-content-wrap {
    --var-rss-content-wrap-max-width: 92%;
  }
}

body.rs-orbit-app header {
  nav {
    display: flex;
    justify-content: space-between;
    padding-top: var(--rso-el-space-sm);
    padding-bottom: var(--rso-el-space-sm);
  }
  nav ul {
    display: flex;
    gap: var(--rso-el-flex-gap-md);
  }
  nav ul li {
    display: flex;
    align-items: center;
  }
}
body.rs-orbit-app main {
  h1 {
    font-size: var(--rso-text-heading-first);
    font-weight: 500;
    /* margin-top: var(--rso-el-space-xl); */
  }
}
body.rs-orbit-app.rs-is-editor-fullscreen {
  overflow: hidden;
}
body.rs-orbit-app.rs-is-editor-fullscreen main {
  overflow: hidden;
}
body.rs-orbit-app footer {
  margin-top: auto;
  padding-top: var(--rso-el-space-2xl);

  small {
    font-size: 0.62em;
  }
}

/* Layout */
/* Layout */
/* Layout */

.rs-u-content-indent {
  padding: var(--rso-el-space-lg);
}

@media only screen and (min-width: 64rem) {
  .rs-u-content-indent {
    margin-left: var(--rso-el-space-2xl);
    margin-right: var(--rso-el-space-2xl);
  }
}

.rs-u-relative {
  display: relative;
}
.rs-u-absolute-inset {
  display: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
/* Components */
/* Components */
/* Components */

article.rs-c-detail-surface {
  background-color: var(--rso-color-white);
  /* border-radius: var(--rso-el-space-lg); */

  > p {
    line-height: 1.2;
  }
}

article.rs-c-detail-surface .rs-c-detail-surface__heading {
  font-size: var(--rso-text-heading-second);
  font-weight: var(--rso-text-weight-heavy);
  text-wrap: balance;
  line-height: 1.2;
  margin-bottom: 0.15em;
  margin-top: 1.5em;
}

@media only screen and (min-width: 64rem) {
  article.rs-c-detail-surface {
    margin-left: var(--rso-el-space-2xl);
    margin-right: var(--rso-el-space-2xl);
  }
}

header.rs-c-orbit-website-overview {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: var(--rso-el-space-lg);
  margin-bottom: var(--rso-el-space-lg);

  img {
    width: calc(8 * var(--rso-gap-lg));
    height: calc(5 * var(--rso-gap-lg));
    border-radius: var(--rso-el-space-base);
    object-fit: cover;
  }

  > div {
    display: flex;
    flex-direction: column;
  }

  > div .rs-c-detail-surface__heading {
    margin-top: 0;
    margin-bottom: 0;
  }
}

button.rs-c-btn,
a.rs-c-btn {
  display: flex;
  align-items: center;
  gap: var(--rso-el-flex-gap-md);
  background-color: var(--rso-color-default-light);
  border-radius: var(--rso-el-border-radius-sm);
  width: max-content;
  height: max-content;
  transition: background-color 100ms ease;
  font-weight: var(--rso-text-weight-heavy);
  padding: var(--rso-el-space-box-sm);
}
button.rs-c-btn:hover,
a.rs-c-btn:hover {
  transition: none;
  background-color: var(--rso-color-default-light-hover);
}
button.rs-c-btn.rs-c-btn--primary,
a.rs-c-btn.rs-c-btn--primary {
  background-color: var(--rso-color-primary);
  color: var(--rso-color-white);
}
button.rs-c-btn.rs-c-btn--primary:hover,
a.rs-c-btn.rs-c-btn--primary:hover {
  background-color: var(--rso-color-primary-hover);
}
button.rs-c-btn.rs-c-btn--danger,
a.rs-c-btn.rs-c-btn--danger {
  background-color: var(--rso-color-danger);
  color: var(--rso-color-white);
}
button.rs-c-btn.rs-c-btn--danger:hover,
a.rs-c-btn.rs-c-btn--danger:hover {
  background-color: var(--rso-color-danger-hover);
}
button.rs-c-btn.rs-c-btn--transparent,
a.rs-c-btn.rs-c-btn--transparent {
  background-color: transparent;
}
button.rs-c-btn.rs-c-btn--transparent:hover,
a.rs-c-btn.rs-c-btn--transparent:hover {
  background-color: transparent;
}
button.rs-c-btn.rs-c-btn--inline,
a.rs-c-btn.rs-c-btn--inline {
  padding: 0 var(--rso-el-space-sm);
}

form.rs-c-form {
  input {
    padding: var(--rso-el-space-box-sm);
    border-radius: var(--rso-el-border-radius-sm);
    border: 1px solid var(--rso-color-default-light-border);
  }
  textarea {
    width: 100%;
    padding: var(--rso-el-space-box-sm);
    border-radius: var(--rso-el-border-radius-sm);
    min-height: 16rem;
  }
}
form.rs-c-form .rs-c-form__controls {
  display: flex;
  margin-top: var(--rso-el-space-lg);
}
form.rs-c-form.rs-c-form--grid {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  gap: var(--rso-el-space-sm) 0;
}
form.rs-c-form.rs-c-form--grid .rs-c-form__controls {
  grid-column: 1 / -1;
  grid-row: auto;
}
form.rs-c-form.rs-c-form--stacked {
  display: flex;
  flex-direction: column;
  gap: var(--rso-el-space-sm);
}

dl.rs-c-data-list {
  margin-top: var(--rso-el-space-lg);
  display: grid;
  grid-template-columns: minmax(max-content, 30%) 1fr;
  grid-template-rows: auto;

  > div {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: subgrid;
    padding: var(--rso-el-space-lg) 0;
    border-top: 1px solid var(--rso-color-default-light);
  }
  > div dt {
    grid-column: 1;
  }
  > div dd {
    grid-column: 2;
  }
}

.rs-c-inbox-read-indicator {
  display: inline-flex;
  align-items: center;
  margin-left: var(--rso-el-space-sm);
}

.rs-c-inbox-unread-dot {
  width: 0.62rem;
  height: 0.62rem;
  display: inline-block;
  border-radius: 999px;
  background-color: var(--rso-color-primary);
  box-shadow: 0 0 0 0.12rem rgba(50, 91, 255, 0.18);
}

div.rs-c-empty-state {
  text-align: center;
  border: var(--rso-el-space-sm) solid var(--rso-color-default-light);
  border-radius: var(--rso-el-border-radius-sm);
  padding: var(--rso-el-space-lg) 0;

  svg {
    height: 3rem;
    width: 3rem;
    margin: 0 auto;
    color: var(--rso-color-default-light);
  }
  svg + span {
    margin-top: var(--rso-el-space-sm);
  }
}

dialog.rs-c-dialog {
  /* Positioning & Sizing */
  position: fixed;
  top: calc(50% - 4.86rem);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90vw;
  max-width: 50ch;
  max-height: 85vh;
  overflow: auto;
  margin: 0;

  /* Styling */
  padding: 2em;
  border-radius: 0.75rem;
  background-color: var(--dialog-bg);
  color: var(--dialog-text);
  box-shadow: var(--dialog-shadow);

  &::backdrop {
    background-color: var(--dialog-backdrop);
    backdrop-filter: blur(4px);
  }

  h2 {
    font-size: 1.62rem;
    font-weight: var(--rso-text-weight-heavy);
    margin-bottom: var(--rso-el-space-lg);
    text-wrap: balance;
  }
}

dialog.rs-c-dialog.rs-c-dialog--wide {
  max-width: 89ch;
  max-height: 89vh;
}

/* App Cohort Manager */
/* App Cohort Manager */
/* App Cohort Manager */

ul.rs-c-site-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
li.rs-c-site-list-el {
  article {
    display: flex;
    justify-content: space-between;
  }

  article > img {
    border-radius: var(--rso-el-border-radius-sm);
  }
}

/* App Builder Styles */
/* App Builder Styles */
/* App Builder Styles */

form.rs-c-editor-layout {
  --editor-pane-height: clamp(640px, 70vh, 52rem);
  --preview-basis: 50%;
  display: grid;
  grid-template-rows: auto var(--editor-pane-height);
  grid-template-columns: minmax(0, 1fr) minmax(320px, var(--preview-basis));
}
form.rs-c-editor-layout .rs-c-editor-controls {
  grid-column: 1 / -1;
  grid-row: 1;
  margin-bottom: var(--rso-el-space-lg);
  display: flex;
  justify-content: space-between;
}
.rs-c-editor-tabs {
  display: none;
}

form.rs-c-editor-layout:has(#preview-size-sm:checked) {
  --preview-basis: 10%;
}
form.rs-c-editor-layout:has(#preview-size-md:checked) {
  --preview-basis: 50%;
}
form.rs-c-editor-layout:has(#preview-size-lg:checked) {
  --preview-basis: 88%;
}
form.rs-c-editor-layout .rs-c-editor-preview-code {
  grid-column: 1;
  grid-row: 2;

  .CodeMirror {
    border-top-left-radius: var(--rso-el-space-lg);
    border-bottom-left-radius: var(--rso-el-space-lg);
    font-family:
      "JetBrains Mono", "SFMono-Regular", Consolas, "Liberation Mono", Menlo,
      monospace;
    font-size: 0.94rem;
    line-height: 1.44;
    min-height: 28rem;
  }

  .CodeMirror .rs-is-editor-scroll-highlight {
    background-color: var(--rso-scroll-highlight, yellow);
    color: var(--rso-scroll-highlight-text, #111827) !important;
  }

  .CodeMirror .rs-is-editor-scroll-highlight * {
    color: var(--rso-scroll-highlight-text, #111827) !important;
  }
}
form.rs-c-editor-layout .rs-c-editor-preview-render {
  grid-column: 2;
  grid-row: 2;

  iframe {
    border-top-right-radius: var(--rso-el-space-lg);
    border-bottom-right-radius: var(--rso-el-space-lg);
    width: 100%;
    height: 100%;
  }
}
form.rs-c-editor-layout[data-editor-fullscreen="true"] {
  position: fixed;
  inset: 0;
  z-index: 1100;
  margin: 0;
  width: 100vw;
  height: 100dvh;
  max-width: none;
  box-sizing: border-box;
  padding: var(--rso-el-space-sm);
  background-color: var(--rso-color-white);
  grid-template-rows: auto minmax(0, 1fr);
  align-content: stretch;
}
form.rs-c-editor-layout[data-editor-fullscreen="true"] .rs-c-editor-controls {
  margin-bottom: var(--rso-el-space-sm);
  position: sticky;
  top: 0;
  z-index: 1;
  padding-bottom: 0.5rem;
  background-color: var(--rso-color-white);
}
form.rs-c-editor-layout[data-editor-fullscreen="true"] .rs-c-editor-preview-code,
form.rs-c-editor-layout[data-editor-fullscreen="true"] .rs-c-editor-preview-render {
  min-height: 0;
  overflow: hidden;
}
form.rs-c-editor-layout[data-editor-fullscreen="true"] .rs-c-editor-preview-code .CodeMirror {
  min-height: 0;
  height: 100% !important;
}
form.rs-c-editor-layout[data-editor-fullscreen="true"] .rs-c-editor-preview-code .CodeMirror-scroll {
  height: 100%;
}

@media only screen and (max-width: 48rem) {
  form.rs-c-editor-layout {
    display: flex;
    flex-direction: column;
    height: 100dvh;
    min-height: 100dvh;
  }

  form.rs-c-editor-layout .rs-c-editor-controls {
    margin-bottom: 0.75rem;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  form.rs-c-editor-layout .rs-c-editor-controls [role="group"] {
    display: none;
  }

  form.rs-c-editor-layout .rs-c-editor-tabs {
    display: flex;
    flex: 0 0 auto;
    border-bottom: 1px solid var(--rso-color-default-light-border);
  }

  form.rs-c-editor-layout .rs-c-editor-tabs button {
    flex: 1;
    padding: 0.6rem 0;
    border: 0;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    background: none;
    color: inherit;
    font-size: 0.9rem;
    font-weight: var(--rso-text-weight-heavy);
    cursor: pointer;
  }

  form.rs-c-editor-layout .rs-c-editor-tabs button[aria-selected="true"] {
    border-bottom-color: var(--rso-color-primary);
  }

  form.rs-c-editor-layout .rs-c-editor-preview-code,
  form.rs-c-editor-layout .rs-c-editor-preview-render {
    flex: 1 1 0;
    min-height: 0;
    overflow: hidden;
    padding-top: 0.75rem;
  }

  form.rs-c-editor-layout .rs-c-editor-preview-code {
    display: none;
  }

  form.rs-c-editor-layout .rs-c-editor-preview-render {
    display: flex;
    flex-direction: column;
  }

  form.rs-c-editor-layout .rs-c-editor-preview-render iframe {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: var(--rso-el-space-lg);
  }

  form.rs-c-editor-layout[data-mobile-tab="code"] .rs-c-editor-preview-render {
    display: none;
  }

  form.rs-c-editor-layout[data-mobile-tab="code"] .rs-c-editor-preview-code {
    display: flex;
    flex-direction: column;
  }

  form.rs-c-editor-layout[data-mobile-tab="code"]
    .rs-c-editor-preview-code
    .CodeMirror {
    flex: 1;
    height: 100% !important;
    min-height: 0;
    border-radius: var(--rso-el-space-lg);
  }

  form.rs-c-editor-layout[data-mobile-tab="code"]
    .rs-c-editor-preview-code
    .CodeMirror-scroll {
    height: 100%;
  }

  form.rs-c-editor-layout[data-editor-fullscreen="true"] {
    padding: 0.5rem;
  }

  form.rs-c-editor-layout[data-editor-fullscreen="true"] .rs-c-editor-controls {
    margin-bottom: 0.5rem;
  }
}

.rs-c-published-preview-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  width: 100%;
  max-width: 1200px;
  margin: 2rem auto;
}
.rs-c-published-preview {
  box-sizing: content-box;
  border: var(--rso-iframe-mobile-frame-border) solid var(--rso-color-black);
  border-radius: 20px;
  overflow: hidden;
  background-color: var(--rso-color-white);
  position: relative;
}
.rs-c-published-preview iframe {
  border: none;
  transform-origin: top left;
}
div.rs-c-published-preview.rs-c-published-preview--mobile {
  width: var(--rso-iframe-mobile-content-width);
  height: var(--rso-iframe-mobile-content-height);
  flex-shrink: 0;
}
div.rs-c-published-preview.rs-c-published-preview--mobile iframe {
  width: var(--rso-iframe-mobile-src-width);
  height: var(--rso-iframe-mobile-src-height);
  transform: scale(var(--rso-iframe-mobile-scale));
}
div.rs-c-published-preview.rs-c-published-preview--desktop {
  width: 720px;
  height: 450px;
  flex-shrink: 0;
}
div.rs-c-published-preview.rs-c-published-preview--desktop iframe {
  width: 1440px;
  height: 900px;
  transform: scale(0.5);
}

/* Utilities */
/* Utilities */
/* Utilities */

.rs-u-m0-auto {
  margin: 0 auto;
}
.rs-u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.rs-u-inline-flex-els {
  display: inline-flex;
  gap: var(--rso-gap-sm);
  align-items: center;
  flex-wrap: wrap;
}

.rs-u-flex-grow {
  flex-grow: 1;
}

.rs-u-flex-justify-center {
  justify-content: center;
}

.rs-u-mt-base {
  margin-top: var(--rso-el-space-lg);
}

.rs-u-mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.rs-u-px-base {
  padding-left: var(--rso-gap-base);
  padding-right: var(--rso-gap-base);
}

.rs-u-font-bold {
  font-weight: 700;
}
/* Home */
/* Home */
/* Home */

section.rs-c-home-hero {
  background-color: var(--rso-color-default-dark);
  background-image:
    linear-gradient(
      rgba(2, 3, 5, 0.62),
      rgba(2, 3, 5, 0.88),
      rgba(2, 3, 5, 0.92)
    ),
    url("/static/images/orbit-v1-static-mobile-prime--utility-demo-rotate--crop-780.jpg");
  background-image:
    linear-gradient(
      rgba(2, 3, 5, 0.62),
      rgba(2, 3, 5, 0.88),
      rgba(2, 3, 5, 0.92)
    ),
    -webkit-image-set(
        url("/static/images/orbit-v1-static-mobile-prime--utility-demo-rotate--crop-780.webp")
          type("image/webp") 1x,
        url("/static/images/orbit-v1-static-mobile-prime--utility-demo-rotate--crop-780.jpg")
          type("image/jpeg") 1x
      );
  background-image:
    linear-gradient(
      rgba(2, 3, 5, 0.62),
      rgba(2, 3, 5, 0.88),
      rgba(2, 3, 5, 0.92)
    ),
    image-set(
      url("/static/images/orbit-v1-static-mobile-prime--utility-demo-rotate--crop-780.webp")
        type("image/webp") 1x,
      url("/static/images/orbit-v1-static-mobile-prime--utility-demo-rotate--crop-780.jpg")
        type("image/jpeg") 1x
    );
  background-size: 78em;
  color: var(--rso-color-white);
  padding-top: 7em;
  padding-bottom: 4em;
  text-align: center;

  h1 {
    font-size: var(--rso-text-heading-first);
    font-weight: 700;
    text-wrap: balance;
  }
}

@media only screen and (min-width: 40rem) {
  section.rs-c-home-hero {
    background-image:
      linear-gradient(
        rgba(2, 3, 5, 0.62),
        rgba(2, 3, 5, 0.88),
        rgba(2, 3, 5, 0.92)
      ),
      url("/static/images/orbit-v1-static-mobile-prime--utility-demo-rotate--crop-2560.jpg");
    background-image:
      linear-gradient(
        rgba(2, 3, 5, 0.62),
        rgba(2, 3, 5, 0.88),
        rgba(2, 3, 5, 0.92)
      ),
      -webkit-image-set(
          url("/static/images/orbit-v1-static-mobile-prime--utility-demo-rotate--crop-2560.webp")
            type("image/webp") 1x,
          url("/static/images/orbit-v1-static-mobile-prime--utility-demo-rotate--crop-2560.jpg")
            type("image/jpeg") 1x
        );
    background-image:
      linear-gradient(
        rgba(2, 3, 5, 0.62),
        rgba(2, 3, 5, 0.88),
        rgba(2, 3, 5, 0.92)
      ),
      image-set(
        url("/static/images/orbit-v1-static-mobile-prime--utility-demo-rotate--crop-2560.webp")
          type("image/webp") 1x,
        url("/static/images/orbit-v1-static-mobile-prime--utility-demo-rotate--crop-2560.jpg")
          type("image/jpeg") 1x
      );
  }
}

/* Home */
/* Home */
/* Home */

div.rs-scope-home-wrap {
  p {
    max-width: 64ch;
    line-height: 1.5;
  }
}
ul.rs-c-home-points,
ol.rs-c-home-steps {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}
ul.rs-c-home-points {
  list-style: none;
  padding-left: 0;
}
div.rs-c-home-role-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}
article.rs-c-home-role-card {
  padding: 1rem;
  border-radius: 0.4rem;
  background-color: var(--rso-color-default-light);
}

div.rs-c-home-mobile-carousel {
  max-width: 100%;
  margin-top: var(--rso-el-space-xl);
  overflow-x: hidden;
  position: relative;
  min-height: calc(
    var(--rso-iframe-mobile-wrap-height) + var(--rso-el-space-2xl) +
      var(--rso-home-carousel-scrollbar-width) + 1px
  ); /* Absolute rail: reserve frame height plus controls, scrollbar, and a 1px guard. */
}

div.rs-c-home-mobile-carousel > ul {
  display: flex;
  padding-bottom: var(--rso-el-space-sm);
  gap: var(--rso-el-space-2xl);
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  position: absolute;
  inset: 0;
  height: 100%;
}
div.rs-c-home-mobile-carousel > ul > li {
  flex: 0 0 auto;
}

div.rs-c-home-evolution-wrap {
  overflow-x: auto;
}
aside.rs-c-home-builder-focus {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 0.4rem;
  background-color: var(--rso-color-default-light);
}
aside.rs-c-home-builder-focus h3 {
  font-size: 1.05rem;
  font-weight: var(--rso-text-weight-heavy);
  text-wrap: balance;
}
aside.rs-c-home-builder-focus ul {
  margin-top: 0.65rem;
  display: grid;
  gap: 0.5rem;
}

@media only screen and (max-width: 48rem) {
  table.rs-c-table {
    min-width: 34rem;
  }
}

/* Publisher */
/* Publisher */
/* Publisher */

div.rs-scope-publisher-wrap {
  article.rs-c-detail-surface {
    text-align: center;
  }
  article.rs-c-detail-surface h1 {
    font-size: 3.8em;
    font-weight: 700;
    margin-top: var(--rso-gap-base);
  }
  article.rs-c-detail-surface p {
    margin-left: auto;
    margin-right: auto;
    max-width: 64ch;
    line-height: 1.5;
  }
}

/* Tables */
/* Tables */
/* Tables */

table.rs-c-table {
  width: 100%;
  min-width: 44rem;
  border-collapse: collapse;
  background-color: var(--rso-color-white);
}

table.rs-c-table th.rs-u-mobile-remove,
table.rs-c-table td.rs-u-mobile-remove {
  display: none;
}
@media only screen and (min-width: 40rem) {
  table.rs-c-table th.rs-u-mobile-remove,
  table.rs-c-table td.rs-u-mobile-remove {
    display: table-cell;
  }
}

table.rs-c-table th,
table.rs-c-table td {
  border: 1px solid var(--rso-color-default-light-border);
  padding: 0.65rem;
  text-align: left;
  vertical-align: top;
}
table.rs-c-table thead th {
  background-color: var(--rso-color-default-light);
  font-weight: var(--rso-text-weight-heavy);
}
table.rs-c-table tbody th {
  font-weight: var(--rso-text-weight-heavy);
}
