/* TODO: tip element, nested sections, main heading, line spacing?, images - inline and regular, special elements - tabs, accordions, sliders, search results, logo placement, add to github, list style, section, subsection, bridgehead */

:root {
    --primary-color: #179DAB;
    --primary-color-lighter: #02BED1;
    --primary-color-darker: #148995;

    --light-grey: #F7F7F7;
    --medium-grey: #EBEBE9;
    --dark-grey: #696663;

    --color-pink: #D40F7D;
    --color-orange: #FF6A13;

    --color-blue: #2071B3;
    --color-green: #46B670;

    --border-radius-normal: 7px;
    --border-radius-full: 10px;
}

/* BASE */

h1, h2, h3, h4, h5, h6, h7, h8 {
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    margin-top: 35px;
}

h5, .h5 {
    text-transform: none !important;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.5em;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255);
  z-index: 9999;
  display: block;
  opacity: 1;
  transition: opacity 400ms;
  z-index: 9999;
}

body.loaded1::before,
body.loaded1::after {
  /* display: none; */
  opacity: 0;
}

body.loaded2::before,
body.loaded2::after {
  display: none;
  /* opacity: 0; */
}

/* TOP HEADER */

.custom-header {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  position: fixed;
  z-index: 100;
}

.custom-header__inner {
  height: 72px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 36px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.custom-header__spacer {
    height: 72px;
}

.custom-header__left,
.custom-header__right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.custom-header__logo {
  display: inline-flex;
  align-items: center;
  color: #2cc7a5;
  text-decoration: none;
}

.custom-header__logo svg {
  display: block;
  max-height: 30px;
  width: 146px;
}

.custom-header__nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.custom-header__nav a {
  color: #314158;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.custom-header__nav a:hover {
  color: #0f172b;
  text-decoration: none;
}

.custom-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 40px;
  padding: 0 20px;
  border-radius: 6px;

  background: #2cc7a5;
  color: #ffffff;

  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.custom-header__cta:hover {
  background: #24b596;
  color: #ffffff;
  text-decoration: none;
}

@media (max-width: 768px) {
  .custom-header__inner {
    height: auto;
    padding: 18px 20px;
    align-items: flex-start;
    flex-direction: column;
  }

  .custom-header__left,
  .custom-header__right,
  .custom-header__nav {
    flex-wrap: wrap;
    gap: 16px;
  }
}

/* PORTAL HEADER */

.portal-header  {
    /* background-color: var(--primary-color); */
    /* display: flex;
    flex-direction: column;
    align-items: center; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.portal-header .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.portal-header::after {
    opacity: 1;
    filter: none;
}

.portal-header .inner .logo-link {
    display: flex;
    justify-content: center;
}

.portal-header h1 {
    font-size: 42px;
    font-weight: 600;
}

/* .portal-header .portal-search input {
    background-color: white;
    color: var(--dark-grey);
    min-height: 60px;
}

.portal-header .portal-search input::placeholder {
    color: var(--medium-grey);
}

.portal-header .portal-search button {
    display: none;
    background-color: #4C4E56;
    min-height: 60px;
    min-width: 60px;
} */

/* Sidebar */

/* .active-topichead {
    font-weight: bold;
} */

/* .site-body-container {
    position: relative;
    top: 73px;
} */

.topic-link:hover {
    cursor: pointer;
}

.site-sidebar a.topic-link {
    display: flex;
    align-items: flex-start;
    gap: 2px;
}

.site-sidebar a.topic-link .portal-icon {
    padding-top: 2px;
}

.portal-header::before {
    background-color: #0B1320;
}

.internal-search-hero {
    height: 135px;
    position: relative;
        display: flex;
    justify-content: center;
    align-items: center;
}

.internal-search-hero::before {
    background-color: #0B1320;
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
}

.internal-search-hero__search {
    display: flex;
    justify-content: center;
}

.internal-search-hero__search .form-inline {
    max-width: 700px;
}

.portal-header::after {
    background: none !important;
}

/* PORTAL HEADER - QL */

    .portal-header .hero-quicklinks {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 24px;
    font-size: 13px;
    }

    .portal-header .hero-quicklinks__label {
    color: rgba(255, 255, 255, 0.65);
    white-space: nowrap;
    }

    .portal-header .hero-quicklinks__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    }

    .portal-header .hero-quicklinks__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 6px 16px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.04);
    text-decoration: none;
    line-height: 1;
    transition:
        background-color 160ms ease,
        border-color 160ms ease,
        color 160ms ease;
    }

    .portal-header .hero-quicklinks__link:hover,
    .portal-header .hero-quicklinks__link:focus {
    color: #fff;
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(148, 163, 184, 0.6);
    text-decoration: none;
    }

    .portal-header .hero-quicklinks__link:focus-visible {
    outline: 2px solid rgba(45, 212, 191, 0.9);
    outline-offset: 3px;
    }

/* PORTAL HEADER - DESCRIPTION */

.portal-header .hero-description {
    max-width: 680px;
    margin: -20px auto 28px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
}

/* PORTAL HEADER - BADGE */

.portal-header .hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    margin: 0 auto -25px;
    padding: 2px 8px;

    border: 1px solid rgba(0, 211, 183, 0.35);
    border-radius: 999px;

    background: rgba(0, 211, 183, 0.08);

    color: #39d6bf;
    font-size: 12px;
    font-weight: 500;
}

.portal-header .hero-badge__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.portal-header .hero-badge__icon svg {
    width: 14px;
    height: 14px;
}


/* BLOCKS */

.portal-publications-title {
    font-size: 20px;
    text-align: center;
}

.portal-single-publication a {
    color: var(--dark-grey);
    background: linear-gradient(135deg, var(--light-grey), var(--light-grey));
    border: 1px solid var(--medium-grey);
    transition: all 250ms;
    border-radius: 8px;
    box-shadow: none;
}

.portal-single-publication a:hover {
    background: linear-gradient(135deg, var(--color-blue), var(--color-green));
    color: white;
}

.portal-single-publication a:hover .publication-svg {
    color: white;
}

.portal-single-publication .publication-icon {
    display: none; /* hide icons */
    background: none;
}

.portal-single-publication h3 {
    font-size: 14px;
    font-size: 17px; /* increase size in line with hidden icons */
    margin: 0; /* remove margin in line with hidden icons */
}

/* HOME PAGE */

/* Products and Platform 2 */

.products-platform {
  max-width: 1280px;
  margin: 50px auto;
  padding: 0 24px;
}

.products-platform__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.products-platform__eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #2CC7A5;
  margin-bottom: 8px;
}

.products-platform__title {
  margin: 0;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 800;
  color: #1D2433;
}

.products-platform__section {
  padding: 20px 16px 16px;
  margin-top: 22px;
  border: 1px solid #F1F1ED;
  border-radius: 14px;
  background: #f8fafc;
}

.products-platform__section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 16px;
}

.products-platform__section-heading-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.products-platform__section-heading h3 {
  margin: 0;
  color: #182234;
  font-size: 14px;
  font-weight: 700;
}

.products-platform__section-heading p {
  margin: 0;
  color: #8fa1bc;
  font-size: 13px;
}

.products-platform__section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.products-platform__card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.products-platform__card {
  display: block;
  min-width: 0;
  padding: 16px;
  border: 1px solid #d8e0eb;
  border-radius: 7px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 1px 2px rgb(15 23 42 / 12%);
  transition:
    border-color 150ms ease,
    box-shadow 150ms ease,
    transform 150ms ease;
}

a.products-platform__card:hover {
  border-color: #b9c6d8;
  box-shadow: 0 4px 12px rgb(15 23 42 / 10%);
  transform: translateY(-1px);
}

.products-platform__card-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.products-platform__item-icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  align-self: flex-start;
}

/* .products-platform__card-content {
  min-width: 0;
} */

.products-platform__item-title {
  color: #182234;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.products-platform__item-description {
  margin-top: 10px;
  color: #7486a2;
  font-size: 10px;
  line-height: 1.4;
}

.products-platform__explore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #11b998;
  font-size: 12px;
  text-decoration: none;
}

.products-platform__explore-icon {
  display: inline-flex;
}

@media (max-width: 900px) {
  .products-platform__card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .products-platform__section-heading {
    align-items: flex-start;
  }

  .products-platform__section-heading-content {
    align-items: flex-start;
  }

  .products-platform__card-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================
   Products & Platform
========================================================== */

/* .products-platform {
  max-width: 1280px;
  margin: 72px auto;
  padding: 0 24px;
}

.products-platform__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.products-platform__eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #2CC7A5;
  margin-bottom: 8px;
}

.products-platform__title {
  margin: 0;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 800;
  color: #1D2433;
}

.products-platform__explore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 500;
  color: #2CC7A5;
  text-decoration: none;
}

.products-platform__explore:hover {
  text-decoration: none;
}

.products-platform__explore,
.products-platform__section-heading a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.products-platform__explore-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.products-platform__explore-icon svg {
  width: 14px;
  height: 14px;
  display: block;
} */

/* ==========================================================
   Section Header
========================================================== */

/* .products-platform__section {
  margin-bottom: 48px;
}

.products-platform__section--platform {
    padding: 24px;
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    background: #F8FAFC;
}

.products-platform__section-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.products-platform__section-heading > div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.products-platform__section-heading h3 {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;

    font-size: 20px;
    font-weight: 700;
    color: #1D2433;
}

.products-platform__section-heading h3 svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: block;
}

.products-platform__section-heading p {
  margin: 0;
  font-size: 15px;
  color: #8C98B2;
}

.products-platform__section-heading a {
  color: #2CC7A5;
  text-decoration: none;
  font-weight: 500;
} */

/* ==========================================================
   Business AI Cloud
========================================================== */

/* .products-platform__platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.products-platform__platform-card {
  display: flex;
  flex-direction: column;
  justify-content: center;

  min-height: 110px;

  padding: 24px;

  border: 1px solid #E5EAF3;
  border-radius: 18px;

  background: white;

  text-decoration: none;

  transition: .2s ease;
}

.products-platform__platform-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30,41,59,.08);
}

.products-platform__item-title {
  font-size: 16px;
  font-weight: 600;
  color: #1D2433;
}

.products-platform__item-description {
  font-size: 12px;
  color: #75819B;
  line-height: 1.45;
}

.products-platform__item-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
} */

/* ==========================================================
   Business AI Suite
========================================================== */

/* .products-platform__suite-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.products-platform__suite-card {
  background: white;

  border: 1px solid #E2E8F0;
  border-radius: 22px;

  overflow: hidden;

  box-shadow: 0 2px 6px rgba(15,23,42,.04);
}

.products-platform__suite-card-header {
  display: flex;
  gap: 18px;
  align-items: center;

  padding: 24px;

  background: #F8FAFC;
  border-bottom: 1px solid #EDF2F7;
}

.products-platform__suite-icon {
  width: 54px;
  height: 54px;

  border-radius: 14px;

  background: #2CC7A5;
  color: white;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 22px;
}

.products-platform__suite-card-header h3 {
  margin: 0;
  font-size: 16px;
  color: #1D2433;
}

.products-platform__suite-card-header p {
  margin: 4px 0 0;
  color: #75819B;
  font-size: 14px;
} */

/* ==========================================================
   Agent List
========================================================== */

/* .products-platform__suite-list {
  list-style: none;
  margin: 0;
  padding: 12px 0;
}

.products-platform__suite-list li {
  margin: 0;
}

.products-platform__suite-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 8px 24px;

  color: #344054;
  text-decoration: none;

  transition: .15s ease;
}

.products-platform__suite-list a:hover {
  background: #F8FAFC;
}

.products-platform__suite-list a span:first-child {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.products-platform__suite-list a span:first-child::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2CC7A5;
  flex-shrink: 0;
}

.products-platform__suite-list a span:last-child {
  color: #A0AEC0;
} */

/* ==========================================================
   Responsive
========================================================== */

/* @media (max-width: 1100px) {

  .products-platform__platform-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .products-platform__suite-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 700px) {

  .products-platform {
    padding: 0 16px;
  }

  .products-platform__header,
  .products-platform__section-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .products-platform__section-heading > div {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .products-platform__platform-grid {
    grid-template-columns: 1fr;
    padding: 16px;
  }

} */

/* LEGACY PRODUCTS SECTION */

.legacy-products {
  width: 100%;
  margin: 0;
  padding: 72px 0;
  background: #f8fafc;
}

.legacy-products__inner {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  padding: 0 39px;
}

@media (min-width: 768px) {
  .legacy-products__inner {
    width: 750px;
  }
}

@media (min-width: 992px) {
  .legacy-products__inner {
    width: 970px;
  }
}

@media (min-width: 1200px) {
  .legacy-products__inner {
    width: 1140px;
  }
}

.legacy-products__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.legacy-products__meta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.legacy-products__icon-main {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  background: #e2e8f0;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.legacy-products__icon-main svg {
  width: 25px;
  height: 25px;
  display: block;
}

.legacy-products__title {
  margin: 0;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
  color: #0f172b;
}

.legacy-products__description {
  margin: 4px 0 0;
  font-size: 15px;
  line-height: 1.4;
  color: #62748e;
}

.legacy-products__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 6px 10px;
  border-radius: 999px;
  background: #fff7ed;
  color: #bb4d00;

  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.legacy-products__tag svg {
  width: 14px;
  height: 14px;
  display: block;
}

.legacy-products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.legacy-products__card {
  display: flex;
  gap: 12px;
  padding: 18px;

  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;

  color: inherit;
  text-decoration: none;
}

.legacy-products__card:hover {
  text-decoration: none;
}

.legacy-products__icon {
  width: 20px;
  height: 20px;
  background: transparent;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.legacy-products__icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

.legacy-products__content {
  min-width: 0;
}

.legacy-products__card h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
  color: #0f172b;
}

.legacy-products__card p {
  margin: 6px 0 10px;
  font-size: 14px;
  line-height: 1.45;
  color: #62748e;
}

.legacy-products__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;

  font-size: 14px;
  font-weight: 600;
  color: #2cc7a5;
}

.legacy-products__link-icon,
.legacy-products__link-icon svg {
  width: 14px;
  height: 14px;
  display: inline-flex;
}

@media (max-width: 991px) {
  .legacy-products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .legacy-products__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .legacy-products__grid {
    grid-template-columns: 1fr;
  }
}


/* TOPIC PAGE */

.titlepage .date-modified {
    float: none !important;
    font-size: 14px;
    margin-bottom: 24px;
}

#topic-content > section > .titlepage .title {
    margin: 0em 0 0.3em;
}

/* FEEDBACK PANEL */

div.feedback-panel {
    border: 1px solid var(--medium-grey);
    border-radius: var(--border-radius-full);
    font-size: 14px;
    margin-left: 6.66667%;
    max-width: 74%;
    display: flex;
    align-items: center;
    gap: 30px;
    display: none !important; /* temporarily hide */
}

.feedback-panel .voting-title {
    text-align: left;
}

.feedback-panel .feedback-wrapper {
    display: flex;
    align-items: center;
}

.feedback-panel .btn-group {
    display: flex;
    gap: 10px;
}

.feedback-panel .btn-group .btn {
    border-radius: var(--border-radius-normal) !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    background-color: var(--light-grey);
    border: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 7px;
    align-items: center;
}

.feedback-panel .btn-group .btn.focus, .feedback-panel .btn-group .btn.active, .feedback-panel .btn-group .btn:hover  {
    background: linear-gradient(135deg, var(--color-blue), var(--color-green));
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
    color: white;
}

.feedback-panel #email-feedback p {
    margin: 0;
    margin-left: 15px;
    color: var(--dark-grey);
    text-decoration: underline;
}

.feedback-panel #email-feedback p a {
    color: var(--dark-grey);
    text-decoration: underline;
}

/* TOOLBAR */

.toolbar {
    box-shadow: none;
}

.toolbar-tools [data-tooltip] {
    position: relative;
}

/* Tooltip label */
.toolbar-tools [data-tooltip]::after {
    content: attr(data-tooltip);

    position: absolute;
    z-index: 10000;
    bottom: calc(100% + 10px);
    left: 50%;

    width: max-content;
    max-width: 220px;
    padding: 7px 10px;

    border-radius: 6px;
    background: #1e293b;
    box-shadow: 0 4px 12px rgb(15 23 42 / 20%);

    color: #fff;
    font-family: inherit;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
    text-align: center;
    white-space: nowrap;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translate(-50%, 4px);

    transition:
        opacity 140ms ease,
        visibility 140ms ease,
        transform 140ms ease;
}

.toolbar-tools [data-tooltip]:hover::after,
.toolbar-tools [data-tooltip]:focus-within::after,
.toolbar-tools button[data-tooltip]:focus-visible::after {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}


/* TABLE OF CONTENTS */

.page-toc .pager {
    padding-left: 6.66666667%;
    padding-right: 40px;
    float: unset;
}

/* PAGIATION */

/* .pager .previous a, .pager .next a {
    font-weight: 400;
    background: linear-gradient(90deg, var(--color-blue), var(--color-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    border: 1px solid #EBEBE9;
    padding: 7px 25px;
}

.pager .previous a:hover, .pager .next a:hover {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
} */

.pager .next i {
    margin-left:10px;
}

.pager .prev i {
    margin-right:10px;
}

/* udpated styles based on voting */

.pager .previous a, .pager .next a {
    border-radius: var(--border-radius-normal) !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    background-color: var(--light-grey);
    background: linear-gradient(90deg, var(--color-blue), var(--color-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 7px;
    align-items: center;
    color: rgb(85, 85, 85);
    font-weight: bold;
}

.pager .previous a:hover, .pager .next a:hover  {
    background: linear-gradient(135deg, var(--color-blue), var(--color-green));
    -webkit-background-clip: initial;
    -webkit-text-fill-color: white;
    background-clip: initial;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
    color: white;
}


@media (min-width: 768px) {
    .pager {
        padding-left: 16.66666667%;
    }

    .theme1.page-toc main article {
        padding-left: 6.666667%;
    }
}

/* BREADCRUMBS */

.breadcrumb-container .breadcrumb-link span,
.breadcrumb-container .breadcrumb-link a,
.breadcrumb-container .breadcrumb-node {
    /* background: linear-gradient(90deg, var(--color-blue), var(--color-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;     */
    font-size: 12px;
}

h1.title, h2.title, h3.title, h4.title, h5.title, h6.title {
    display: inline-block;
    /* background: linear-gradient(90deg, var(--color-blue), var(--color-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;     */
    color: #2071b3;
}

h1.title {}

h2.title {
    font-size: 34px
}

h3.title {
    font-size: 29px
}

h4.title {
    /* font-size: 25px; */
    font-size: 32px;
}

h5.title {
    /* font-size: 26px; */
    font-size: 28px;
}

h6.title {
    /* font-size: 22px; */
    font-size: 25px;
}

.bridgehead {
    font-size: 17px;
    /* color: var(--color-blue); */
}

h3.bridgehead, h4.bridgehead {
    font-size: 20px
}

h5.bridgehead {
    font-size: 19px
}

h6.bridgehead {
    font-size: 19px
}

h7.bridgehead {
    font-size: 19px
}

.procedure-title, .variablelist-title, .orderedlist-title, .itemizedlist-title, .task-title {
    font-weight: 600;
}

/* SECTION TABLE OF CONTENTS */

.section-toc .topic-link {
    text-decoration: underline;
    color: var(--dark-grey)
}

/* RIGHT HAND SECTION NAV */

.section-nav-container .section-nav li.active a {
    background: linear-gradient(90deg, var(--color-blue), var(--color-green)); /* blue → green */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; /* for Firefox */
    color: transparent;    /* fallback */
}

.section-nav-container .section-nav li.active a::before {
    background-color: var(--color-blue) !important;
}

.section-nav-container .section-nav-title {
    margin-top: 1em;
    margin-bottom: 0;
    font-style: italic;
}

.page-toc .section-nav-container {
  top: 205px;
  /* z-index: -1; */
}


/* SIDEBAR */
.site-sidebar {
    background-color: var(--light-grey);
    position: fixed;
    /* top: 72px; */
}

.site-sidebar #logotype-pageheader.logo {
    padding: 20px 0;
    width: 170px;
    max-width: 170px;
}

.theme1.collapsible-sidebar-nav .site-sidebar-header .navbar-toggle {
    padding-bottom: 0 !important;

    /* hide navigation toggle */
    display: none !important;
}

.theme1.collapsible-sidebar-nav .site-sidebar-header a {
  /* hide navigation toggle */
  padding-left: 15px;
}

.collapse-sidebar-nav .site-sidebar {
    width: 100%;
}

.collapse-sidebar-nav .site-sidebar-header {
    background: linear-gradient(180deg, rgba(255,255,255,.95) 60%, rgba(255,255,255,.25));
}

.theme1 .site-sidebar .logo {
    width: 122px;
}

.collapse-sidebar-nav .site-sidebar .logo {
    width: 122px;
}

/* LEGAL PREFOOTER */

.footer-legal-disclaimer {
  background: #0b1220;
  color: #94a3b8;
  padding: 32px 0 0;
}

.footer-legal-disclaimer__inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 32px;
}

.footer-content-legal {
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.footer-content-legal span {
  display: block;
  /* max-width: 980px; */
  font-size: 12px;
  line-height: 1.7;
}

/* FOOTER */

/* .footer-content {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    font-size: 1.5rem;
    margin: 10px auto 0;
    flex-direction: row;
} */

.portal-footer.custom-footer,
.site-footer.custom-footer {
  background: #0b1220;
  color: #94a3b8;
  padding: 72px 0 88px;
  padding: 20px 0 35px;
  width: 100%;
  border-top: none;
  margin-top: 0;
}

.portal-footer.custom-footer .inner,
.site-footer.custom-footer .inner {
  border-top: none;
}

.portal-footer.custom-footer .inner,
.site-footer.custom-footer .inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 32px;
  display: block;
}

.custom-footer__top {
  display: grid;
  display: none;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 80px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.custom-footer__logo {
  color: #2cc7a5;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 26px;
}

.custom-footer__logo svg{
  width: 146px;
}

.custom-footer__brand p {
  margin: 0;
  max-width: 330px;
  color: #94a3b8;
  font-size: 13px;
  line-height: 1.6;
}

.custom-footer__column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.custom-footer__column h3 {
  margin: 0 0 10px;
  color: #f8fafc;
  font-size: 15px;
  font-weight: 700;
}

.custom-footer__column a,
.custom-footer__legal a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 13px;
}

.custom-footer__column a:hover,
.custom-footer__legal a:hover {
  color: #ffffff;
  text-decoration: none;
}

.custom-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  font-size: 12px;
}

.custom-footer__legal {
  display: flex;
  gap: 28px;
}

.custom-footer__legal a {
  font-size: 12px;
}

@media (max-width: 900px) {
  .custom-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .custom-footer__bottom {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .custom-footer__top {
    grid-template-columns: 1fr;
  }

  .custom-footer__legal {
    flex-direction: column;
    gap: 12px;
  }
}


/* SEARCH */

/* Portal Search */

.portal-header .portal-search {
    position: relative;
    /* width: 500px; */
}

.portal-header .portal-search input, .portal-header .portal-search textarea {
    background-color: white;
    color: var(--dark-grey);
    min-height: 60px;
    border-radius: -1px !important;
    min-width: 700px;
}

@media (max-width: 992px) {

    .portal-header .portal-search {
        width: 100%;
    }

    .portal-header .portal-search .search-field {
        width: 100%;
    }
}

.portal-header .portal-search input::placeholder,  .portal-header .portal-search textarea::placeholder{
    color: #a4a3a2;
}

.portal-header .portal-search button {
    display: none;
    background-color: #4C4E56;
    /* min-height: 60px; */
    min-width: 60px;
}

/* SEARCH */

/* PAGE SEARCH */

.site-sidebar-search {
    margin-left: 15px;
    margin-right: 15px;
    position: relative;
}

.site-sidebar-search input, .portal-search input, .site-sidebar-search textarea, .portal-search textarea {
    background-color: white;
    color: var(--dark-grey);
    padding-left: 40px;
    padding-right: 40px;
    min-height: 60px;
}

.site-sidebar-search input::placeholder, .site-sidebar-search textarea::placeholder {
    color: var(--dark-grey)
}

.site-sidebar-search .search-submit, .portal-search .search-submit {
    display: flex;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    border-radius: 4px;
    cursor: pointer;
    transition: 250ms ease;
    color: #696663;
}

.portal-search .search-submit.ask-ai-button {
  position: absolute;
  right: 8px;
  /* right: 0px; */
  top: 50%;
  transform: translateY(-50%);

  display: inline-flex;
  align-items: center;
  gap: 8px;

  height: 45px;
  min-width: 110px;
  padding: 0 18px;

  border: 0;
  border-radius: 999px;
    background: linear-gradient(
    90deg,
    #12B26D 0%,
    #158C85 100%
  );
  color: #fff;

  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
}

.portal-search .search-submit.ask-ai-button svg {
  width: 16px;
  height: 16px;
  display: block;
}

.portal-search textarea {
    min-width: 700px;
    border-radius: 40px !important;
}

.site-sidebar-search .search-submit.disabled {
    color: var(--medium-grey);
    cursor: default;
}

.site-sidebar-search .search-submit:hover:not(.disabled), .portal-search .search-submit:hover:not(.disabled) {
    background: #74cef81a;
}

.portal-search .search-submit.ask-ai-button:hover:not(.disabled) {
        background: linear-gradient(
    90deg,
    #158C85 0%,
    #158C85 100%
  );
}

.loader.sidebar-loader {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}

.loader-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.loader-content p {
    margin: 0;
    font-size: 14px;
    /* font-weight: bold; */
}

.site-sidebar-search .search-icon,  .portal-search .search-icon {
    display: flex;
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    color: #696663;
}



.site-sidebar .topic-link {
    color: var(--dark-grey);
}

.nav-site-sidebar .active > a, .nav-site-sidebar .active-topichead {
    /* color: var(--dark-grey); */
    background: linear-gradient(90deg, var(--color-blue), var(--color-green)); /* blue → green */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; /* for Firefox */
    color: transparent;    /* fallback */
    font-weight: bold;
}

.site-sidebar-header button .icon-bar {
    background-color: var(--dark-grey) !important;
}


/* styling portal tile icon replacements */
.publication-svg {
    width: 1em;
    height: 1em;
    display: inline-block;
    vertical-align: middle;
}

/* icons */
.icon-path-pink {
    fill: var(--color-pink)
}

.icon-path-orange {
    fill: var(--color-orange)
}

.portal-single-publication a:hover .icon-path-pink, .portal-single-publication a:hover .icon-path-orange {
    fill: white;
}



/* FEATURED CONTENT */

.featured-content, .featured-content-label {
    display: none;
}

/* INLINE MEDIA OBJECTS */

.inlinemediaobject {
    display: inline-block;
    height: 2.1rem;
    vertical-align: -0.275rem;
}

.inlinemediaobject img {
    display: block;
}


/* ARTICLE ELEMENTS */

div.note, div.caution, div.important, div.warning, div.tip {
    border-radius: 12px;
    padding: 12px;
    margin-right: 60px;
}

td div.note, td div.caution, td div.important, td div.warning, td div.tip {
    margin-right: 0;
}

div.note .title, div.caution .title, div.important .title, div.warning .title,  div.tip .title {
    background: none;
    background-clip: text;
    -webkit-text-fill-color: black;
    margin: 0;
    padding-left: 0;
    font-size: 20px;
}

/*  02-feb-26 bob replaced this with separate rules following:
 div.note p, div.caution p, div.important p, div.warning p, div.tip p,
div.note ul, div.caution ul, div.important ul, div.warning ul, div.tip ul,
div.note ol, div.caution ol, div.important ol, div.warning ol, div.tip ol {
    margin-left: 40px;
    padding-right: 40px;
} */

div.note p, div.caution p, div.important p, div.warning p, div.tip p {
    margin-left: 40px;
    padding-right: 40px;
}

/* embedded list styling */
div.note ul, div.caution ul, div.important ul, div.warning ul, div.tip ul,
div.note ol, div.caution ol, div.important ol, div.warning ol, div.tip ol {
    margin-left: 40px;
    padding-right: 40px;
}

/* embedded list p styling only */
div.note ul p, div.caution ul p, div.important ul p, div.warning ul p, div.tip ul p,
div.note ol p, div.caution ol p, div.important ol p, div.warning ol p, div.tip ol p {
    margin-left: 0px;
    padding-right: 40px;
}

/* note specific styling: https://support.uniphore.com/uniphore-support/article/ART-5675-communication-recording-agent-cisco-active-technical-guidelines */

div.note {
    background-color: rgba(16, 102, 224, 0.1)
}

div.note .title::before {
    content: "🖋️";
    width: 25px;
    display: inline-block;
}

/* caution specific styling: https://support.uniphore.com/uniphore-support/article/ART-5679-manage-and-maintain */

div.caution {
    background-color: rgba(193, 31, 31, 0.1)
}

div.caution .title::before {
    content: "❗";
    width: 25px;
    display: inline-block;
}

/* important specific styling: https://support.uniphore.com/uniphore-support/article/ART-6335-setup-steps */

div.important {
    background-color: rgba(54, 186, 87, 0.1)
}

div.important .title::before {
    content: "📌";
    width: 25px;
    display: inline-block;
}

/* warning specific styling: https://support.uniphore.com/uniphore-support/article/ART-6318-fact-types */

div.warning {
    background-color: rgba(209, 170, 31, 0.1)
}

div.warning .title::before {
    content: "⚠️";
    width: 25px;
    display: inline-block;
}

/* tip specific styling: XYZ */

div.tip {
    background-color: rgba(35, 154, 209, 0.1);
}

div.tip .title::before {
    content: "💡";
    width: 25px;
    display: inline-block;
}



/* RAG search */

#rag-search-container .rag-search-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-height: 500px;
}

#rag-search-container .rag-search-container.topic {
    margin: 0 10%;
}



#rag-search-container .rag-search-heading {
    margin-bottom: 10px;
    background: linear-gradient(90deg, var(--color-blue), var(--color-green)); /* blue → green */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; /* for Firefox */
    color: transparent;    /* fallback */
    font-weight: bold;
}

#rag-search-container .rag-search-subheading {
    font-style: italic;
}

#rag-search-container .rag-search-abandon {
    font-weight: 400;
    background: linear-gradient(90deg, var(--color-blue), var(--color-green)); /* blue → green */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; /* for Firefox */
    color: transparent;    /* fallback */
    border: 1px solid #EBEBE9;
    padding: 7px 25px;
    position: absolute;
    left: 0;
    top: 35px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 15px;
}

#rag-search-container .rag-search-abandon:hover {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

#rag-search-container .rag-search-response {
    /* background-color: #9e9e9e12; */
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 12px;
    /* padding: 12px; */
    padding-right: 50px;
    /* margin-right: 60px; */
    width: 100%;
    font-size: 14px;

    font-size: 14px;
    line-height: 1.7;
    color: #58667f;
}

#rag-search-container .rag-search-response span {
    align-self: flex-start;
}

#rag-search-container .rag-search-response p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #58667f;
}

#rag-search-container .rag-search-sources {
    display: flex;
    justify-content: space-around;
    width:100%;
    /* border-top: 1px solid rgba(116, 206, 248, 0.1);
    border-bottom: 1px solid rgba(116, 206, 248, 0.1); */
    margin: 20px 0 10px 0;
    padding: 20px 0;
    font-size: 14px;
    border-top: 1px solid #ececec;
}

#rag-search-container .rag-search-sources p {
  font-weight: bold;
  text-transform: uppercase;
  color: #90A1B9;
  font-size: 12px;
  letter-spacing: 0.3px;
}

#rag-search-container .rag-search-sources ul {
    list-style: none;
    padding: 0;
}

.source-link {
    display: flex;
    gap: 5px;
    align-items: center;
}

.source-icon {
    color: var(--dark-grey);
    display: flex;
    align-items: center;
}

#rag-search-container .rag-search-pending-container {
    display: flex;
    align-items: center;
}

/* RAG Model */

body.rag-search-modal-open {
    overflow: hidden;
}

.rag-search-modal[hidden] {
    display: none;
}

.rag-search-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 180ms ease,
        visibility 180ms ease;
}

.rag-search-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.rag-search-modal__backdrop {
    position: absolute;
    inset: 0;

    background: rgb(15 23 42 / 25%);
    /* backdrop-filter: blur(2px); */
}

.rag-search-modal__dialog {
    position: fixed;
    z-index: 1;

    box-sizing: border-box;
    overflow: hidden;

    border: 1px solid #dce4ef;
    border-radius: 22px;
    background: #fff;

    box-shadow:
        0 24px 60px rgb(15 23 42 / 22%),
        0 8px 24px rgb(15 23 42 / 12%);

    transform: translateY(-8px);
    opacity: 0;

    transition:
        transform 180ms ease,
        opacity 180ms ease;

    outline: none;
}

/* .rag-search-modal__dialog {
    position: fixed;
    z-index: 1;

    display: flex;
    flex-direction: column;

    box-sizing: border-box;
    overflow: hidden;

    border: 1px solid #dce4ef;
    border-radius: 22px;
    background: #fff;

    box-shadow:
        0 24px 60px rgb(15 23 42 / 22%),
        0 8px 24px rgb(15 23 42 / 12%);

    outline: none;
} */

.rag-search-modal.is-open .rag-search-modal__dialog {
    transform: translateY(0);
    opacity: 1;
}

.rag-search-modal__content {
    max-height: inherit;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.rag-search-modal .rag-search-container {
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding: 0 30px 30px;
}

@media (max-width: 720px) {
    .rag-search-modal__dialog {
        right: 12px !important;
        left: 12px !important;
        width: auto !important;
    }

    .rag-search-modal .rag-search-container {
        padding: 22px 18px;
    }
}

#rag-search-container.rag-search-modal .rag-search-container {
    position: static;
    width: 100%;
    max-width: none;
    min-height: 0;
    margin: 0;
}

.rag-search-modal__footer {
    flex: 0 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    min-height: 52px;
    padding: 0 28px;

    border-top: 1px solid #e4eaf1;
    background: #f5f7fa;

    color: #8ea0ba;
    font-size: 12px;
    line-height: 1;
}

.rag-search-modal__footer-close,
.rag-search-modal__footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.rag-search-modal__footer-close kbd {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 32px;
    height: 24px;
    padding: 0 7px;

    border: 1px solid #d5dde8;
    border-radius: 5px;
    background: #fff;

    box-shadow: 0 1px 2px rgb(15 23 42 / 8%);

    color: #71839d;
    font-family: inherit;
    font-size: 11px;
    font-weight: 500;
}

.rag-search-modal__footer-brand {
    color: #19b99b;
    font-weight: 600;
}

.rag-search-modal__footer-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* RAG summary */

.rag-summary {
    margin-bottom: 12px;
    padding: 30px 30px 0;
}

.rag-summary__title {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 14px;
}

.rag-summary__title p {
    margin: 0;

    font-size: 15px;
    font-weight: 700;
    color: #243046;
}

.rag-summary__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #22b89d;
}

.rag-summary__subtitle {
    margin: 0;

    font-size: 14px;
    line-height: 1.7;
    color: #58667f;
}

.rag-summary__subtitle strong {
    font-weight: 600;
    color: #243046;
}

.rag-summary__content {
    margin-top: 20px;
}

/* tables */

/* th, td {
    border: 1px solid rgb(227, 227, 227);
    padding: 8px;
} */

thead {
    background-color: #9e9e9e17;
}

th {
    font-weight: 600 !important;
}

div.table-title {
    font-weight: 600;
    font-style: italic;
    font-size: 18px;
    padding-bottom: .6em;
}

.informaltable td, .table td {
    vertical-align:top;
}

/* lists */

main ol, main ul {
    margin: 0 0 1.4em;
    padding-left: 18px;
}

main ol li {
    padding-left: 6px;
}

.procedure > li.step::before {
    background-color: var(--color-blue);
}


/* tab element */

.itemizedlist.tabbed > ul.itemizedlist.tabbed {
    list-style: none;
    padding-left: 0; /* removes the indent */
    margin: 0;
}

.itemizedlist.tabbed > ul.itemizedlist.tabbed > li.listitem {
    list-style: none;
    margin: 0;
    padding: 10px 0 10px 0; /* optional spacing between panels */
}

.tabs-bar {
    display: flex;
    border-bottom: 1px solid #ddd;
    position: relative;
}

.tab-button {
    background: none;
    border: none;
    padding: 10px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    color: #999;
    /* font-weight: normal; */
    position: relative;
}

.tab-button.active {
    color: #000;
}

.tab-button.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, var(--color-blue), var(--color-green));
    border-radius: 2px;
}

.tab-button:hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, var(--color-blue), var(--color-green));
    border-radius: 2px;
}

/* slider element */

/* remove bullets only for top-level items inside slider block */
.itemizedlist.slider > ul.itemizedlist.slider { list-style: none; padding-left: 0; margin: 0; }
.itemizedlist.slider > ul.itemizedlist.slider > li.listitem { list-style: none; margin: 0; padding: 0; }
/* nested lists keep bullets */
.itemizedlist.slider ul ul, .itemizedlist.slider ul ol { margin-left: 20px; }

/* slider shell */
.slider-shell {
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* track with slides */
.slider-track {
    display: flex;
    will-change: transform;
    transition: transform 350ms cubic-bezier(.22,1,.36,1);
}

/* each slide */
.slider-slide {
    flex: 0 0 100%;
    box-sizing: border-box;
    padding: 16px;
}
.slider-card {
    background: #f7f7f7;
    border-radius: 12px;
    padding: 20px 24px;
    margin: 0 35px;
}

/* Heading = first <p> in li */
.slider-card > .slide-title {
    margin: 0 0 8px 0;
    font-weight: 700;
    color: #111;
}

/* controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px; height: 36px;
    border-radius: 50%;
    background: #fff;
    display: grid; place-items: center;
    cursor: pointer;
    z-index: 2;
    border: none;
    background: none;
    box-shadow: initial;
}

.slider-arrow:hover {
    border: 1px solid #e0e0e0;
    box-shadow: 0 1px 3px rgba(0,0,0,.08);
}

.slider-arrow[disabled] {
    opacity: .4;
    cursor: default;
}

/* explicit sides */
.slider-arrow.prev { left: 0; right: auto; }
.slider-arrow.next { right: 0; left: auto; }

/* dots */
.slider-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 12px;
    margin-bottom: 25px;
}

.slider-dot {
    width: 8px;
    height: 12px;
    border-radius: 50%;
    background: #d0d0d0;
    border: 0;
    cursor: pointer;
}

.slider-dot.active {
    background: #111;
    background: linear-gradient(135deg, var(--color-blue), var(--color-green));
}

/* accordion element */

.accordion .panel .panel-heading h3.title {
    font-size: 16px;
    /* color: #555; */
}

/* search results */

ul.searchresults .searchresulttitle {
    font-size: 2rem;
    display: inline-block;
    background: linear-gradient(90deg, var(--color-blue), var(--color-green)); /* blue → green */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; /* for Firefox */
    color: transparent;    /* fallback */
}

ul.searchresults .searchresulttitle .search-highlight {
    font-weight: 900;
}

ul.searchresults .searchresultsnippet {
    color: var(--dark-grey)
}

/* RELEASE NOTES */

#rn-landing {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 16px;
    margin-block: 8px 24px;
}

.rn-card {
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 12px;
    padding: 14px 16px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0,0,0,.03);
}

.rn-card__title {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 1.6rem;
    font-weight: 600;
    margin: 4px 0 10px;
}

.rn-card__list {
    list-style: none;
    padding-left: 0;
    margin: 0 0 8px;
}

.rn-card__list li {
    margin: 6px 0;
}

.rn-card__list a {
    text-decoration: none;
    color: rgb(85, 85, 85);
}

.rn-card__list a:hover {
    text-decoration: none;
}

.rn-hidden { display: none; }

.rn-toggle {
    font-size: 1.3rem !important;
    border: none;
    background: transparent;
    color: #005bd1;
    cursor: pointer;
    padding: 0;
    font: inherit;
}
.rn-toggle:hover { text-decoration: underline; }

/* Misc */

[hidden] {
    display:none !important;
}
