.super-error {
  height: 100%;
  min-height: calc(100vh - var(--navbar-height));
  width: 100%;
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.super-error__not-found {
  cursor: pointer;
}

.super-error__content {
  padding-bottom: 10vh;
}

.super-error__text {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.8;
  color: var(--color-text-default);
}

@media (max-width: 680px) {
  .super-error__text {
    font-size: 24px;
  }
}
@media (max-width: 546px) {
  .super-error__text {
    font-size: 18px;
  }
}
.super-footer {
  margin-top: auto;
  padding: 48px var(--padding-right) 48px var(--padding-left);
  box-shadow: 11px 14px 10px -8px rgba(0, 0, 0, 0.02);
  color: var(--footer-text-color);
  background: var(--footer-background-color);
}

.super-footer__content {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  grid-template-rows: auto;
}

.super-footer.has-sidebar.corners,
.super-footer.has-sidebar.stack {
  border-top: 1px solid var(--sidebar-border-color);
}

.super-footer * {
  color: inherit;
}

.super-footer__logo {
  grid-area: logo;
  height: 48px;
  position: relative;
  cursor: pointer;
  white-space: nowrap;
  justify-self: start;
  margin-bottom: 24px;
}

.super-footer__logo span {
  font-weight: 600;
}

.super-footer__icons {
  grid-area: icons;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 4px;
  gap: 16px;
  font-size: 0px; /* Fixes a positioning issue */
  margin-bottom: 24px;
}

.super-footer__footnote {
  grid-area: footnote;
  font-size: 1rem;
  color: var(--footer-text-color);
  opacity: 0.8;
}

.super-footer__link {
  display: block;
  padding: 2px;
  text-decoration: none;
  /* border-bottom: 1px solid #e5e5e5; */
}

.super-footer__links {
  grid-area: links;
  font-size: 1rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 32px;
  gap: 12px;
}

.super-footer.has-list .super-footer__links {
  display: grid;
  gap: 24px 12px;
}

.super-footer__list-heading {
  color: var(--footer-text-color);
  cursor: default;
  margin-bottom: 2px;
}

.super-footer__list .super-footer__link {
  color: var(--footer-text-color);
  opacity: 0.7;
  transition: opacity 200ms ease-in-out;
  padding: 0px;
}

.super-footer__list .super-footer__link:hover {
  opacity: 0.85;
}

.super-footer__list,
.super-footer__list-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.super-footer__divider {
  grid-area: divider;
  width: 100%;
  border-top: 1px solid var(--footer-text-color);
  opacity: 0.4;
  margin-top: 8px;
  margin-bottom: 32px;
}

/************* Stack *************/
.super-footer.stack .super-footer__content {
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-areas: "logo logo logo" "icons icons icons" "links links links" "divider divider divider" "footnote footnote footnote";
  align-items: center;
}

.super-footer.stack .super-footer__links {
  justify-content: center;
}

.super-footer.stack.has-list .super-footer__links {
  grid-template-columns: repeat(auto-fit, 146px);
}

.super-footer.stack .super-footer__logo,
.super-footer.stack .super-footer__icons,
.super-footer.stack .super-footer__footnote {
  justify-self: center;
  text-align: center;
}

.super-footer.stack.no-footnote.no-socials.no-logo .super-footer__divider {
  display: none;
}

/************* Corners and Floating *************/
.super-footer.floating {
  margin: 20px;
  border-radius: 24px;
  padding-left: 60px;
  padding-right: 60px;
}

.super-footer.corners .super-footer__content,
.super-footer.floating .super-footer__content {
  grid-template-areas: "logo logo icons" "links links links" "divider divider divider" "footnote footnote footnote";
}

.super-footer.corners.has-list .super-footer__links,
.super-footer.floating.has-list .super-footer__links {
  grid-template-columns: repeat(auto-fill, minmax(min(146px, 100%), 1fr));
}

.super-footer.corners .super-footer__footnote,
.super-footer.floating .super-footer__footnote {
  margin-top: 4px;
}

.super-footer.corners.no-footnote.no-socials .super-footer__divider,
.super-footer.floating.no-footnote.no-socials .super-footer__divider {
  display: none;
}

/************/
/** MOBILE **/
/************/
.static-renderer.mobile .super-footer.has-sidebar.corners,
.static-renderer.mobile .super-footer.has-sidebar.stack {
  border-top: none;
}

.static-renderer.mobile .super-footer.stack,
.static-renderer.mobile .super-footer.corners {
  padding: 40px;
}

.static-renderer.mobile .super-footer.floating {
  padding: 28px;
}

.static-renderer.mobile .super-footer.stack .super-footer__content,
.static-renderer.mobile .super-footer.corners .super-footer__content,
.static-renderer.mobile .super-footer.floating .super-footer__content {
  grid-template-columns: 1fr;
}

.static-renderer.mobile .super-footer.stack .super-footer__content {
  grid-template-areas: "links" "divider" "logo" "icons" "footnote";
}

.static-renderer.mobile .super-footer.corners .super-footer__content,
.static-renderer.mobile .super-footer.floating .super-footer__content {
  grid-template-areas: "logo" "links" "divider" "icons" "footnote";
}

.static-renderer.mobile .super-footer.stack .super-footer__links {
  margin-bottom: 0px;
}

.static-renderer.mobile .super-footer.corners .super-footer__links,
.static-renderer.mobile .super-footer.floating .super-footer__links {
  justify-content: flex-start;
  margin-bottom: 0px;
}

.static-renderer.mobile .super-footer.floating.has-list .super-footer__links {
  grid-template-columns: repeat(auto-fill, minmax(min(140px, 100%), 1fr));
}

.static-renderer.mobile .super-footer.stack.has-list .super-footer__links {
  grid-template-columns: repeat(auto-fill, minmax(min(146px, 100%), 1fr));
  justify-content: flex-start;
}

.static-renderer.mobile .super-footer.corners .super-footer__icons,
.static-renderer.mobile .super-footer.floating .super-footer__icons {
  justify-content: flex-start;
}

.static-renderer.mobile .super-footer.stack.no-footnote.no-socials .super-footer__divider {
  display: none;
}

@media (max-width: 768px) {
  .super-footer.has-sidebar.corners,
  .super-footer.has-sidebar.stack {
    border-top: none;
  }
  .super-footer.stack,
  .super-footer.corners {
    padding: 40px;
  }
  .super-footer.floating {
    padding: 28px;
  }
  .super-footer.stack .super-footer__content,
  .super-footer.corners .super-footer__content,
  .super-footer.floating .super-footer__content {
    grid-template-columns: 1fr;
  }
  .super-footer.stack .super-footer__content {
    grid-template-areas: "links" "divider" "logo" "icons" "footnote";
  }
  .super-footer.corners .super-footer__content,
  .super-footer.floating .super-footer__content {
    grid-template-areas: "logo" "links" "divider" "icons" "footnote";
  }
  .super-footer.corners .super-footer__links,
  .super-footer.floating .super-footer__links {
    justify-content: flex-start;
  }
  .super-footer.floating.has-list .super-footer__links {
    grid-template-columns: repeat(auto-fill, minmax(min(140px, 100%), 1fr));
  }
  .super-footer.stack.has-list .super-footer__links {
    grid-template-columns: repeat(auto-fill, minmax(min(146px, 100%), 1fr));
    justify-content: flex-start;
  }
  .super-footer.corners .super-footer__icons,
  .super-footer.floating .super-footer__icons {
    justify-content: flex-start;
  }
  .super-footer.stack.no-footnote.no-socials .super-footer__divider {
    display: none;
  }
}
.super-sidebar {
  position: sticky;
  left: 0;
  color: var(--sidebar-text-color);
  background-color: var(--sidebar-background-color);
  min-width: var(--sidebar-width);
  max-width: var(--sidebar-width);
  box-shadow: var(--sidebar-shadow);
  border-right: 1px solid var(--sidebar-border-color);
}

.super-sidebar__content {
  display: flex;
  fle