/* DiraChart site chrome for protected static clinical-reference readers. */
:root {
  --dc-site-navy: #102d4f;
  --dc-site-deep: #0b213a;
  --dc-site-teal: #55b7b0;
  --dc-site-line: #d5e1e7;
  --dc-site-shell: 1220px;
}

body[data-dc-kind] {
  margin: 0;
}

body[data-dc-kind] .dc-topbar {
  display: none !important;
}

.dc-site-header {
  position: relative;
  z-index: 50;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid var(--dc-site-line);
  box-shadow: 0 8px 30px rgba(16, 45, 79, .06);
  font-family: Inter, Arial, sans-serif;
}

.dc-site-header__inner {
  width: min(var(--dc-site-shell), calc(100% - 48px));
  min-height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.dc-site-header__brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.dc-site-header__brand img {
  display: block;
  width: 168px;
  height: auto;
}

.dc-site-header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-left: auto;
}

.dc-site-header__nav a,
.dc-site-header__mobile a {
  color: #304b69;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.dc-site-header__nav a:hover,
.dc-site-header__mobile a:hover {
  color: #0d736f;
}

.dc-site-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--dc-site-navy);
  color: #fff !important;
  font: 800 13px/1 Inter, Arial, sans-serif;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(16, 45, 79, .18);
}

.dc-site-header__mobile {
  display: none;
  margin-left: auto;
}

.dc-site-header__mobile summary {
  cursor: pointer;
  color: var(--dc-site-navy);
  font-weight: 800;
}

.dc-site-header__mobile nav {
  position: absolute;
  top: 72px;
  right: 24px;
  width: min(280px, calc(100vw - 48px));
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--dc-site-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 20px 45px rgba(16, 45, 79, .2);
}

.dc-site-header__mobile nav a {
  padding: 10px 12px;
}

.dc-site-footer {
  width: 100%;
  margin-top: 72px;
  background: var(--dc-site-deep);
  color: #d8e7ee;
  font-family: Inter, Arial, sans-serif;
}

.dc-site-footer__top,
.dc-site-footer__bottom {
  width: min(var(--dc-site-shell), calc(100% - 48px));
  margin: 0 auto;
}

.dc-site-footer__top {
  display: grid;
  grid-template-columns: minmax(250px, 1.5fr) repeat(4, minmax(130px, 1fr));
  gap: 38px;
  padding: 58px 0 42px;
}

.dc-site-footer__brand img {
  display: block;
  width: 170px;
  height: auto;
  margin-bottom: 18px;
}

.dc-site-footer__brand p {
  margin: 0 0 8px;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
}

.dc-site-footer__brand span {
  display: block;
  max-width: 290px;
  color: #9eb6c7;
  font-size: 13px;
  line-height: 1.65;
}

.dc-site-footer__column {
  display: grid;
  align-content: start;
  gap: 9px;
}

.dc-site-footer__column h3 {
  margin: 0 0 6px;
  color: #75d0ca;
  font: 800 12px/1.2 Inter, Arial, sans-serif;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.dc-site-footer__column a {
  color: #d8e7ee;
  font-size: 13px;
  text-decoration: none;
}

.dc-site-footer__column a:hover {
  color: #fff;
}

.dc-site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: #91aabd;
  font-size: 12px;
}

.dc-site-footer__credit {
  padding: 12px 24px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: #071a2d;
}

.dc-site-footer__credit a {
  color: #76cec8;
  font-size: 11px;
  text-decoration: none;
}

@media (max-width: 980px) {
  .dc-site-header__nav,
  .dc-site-header__cta {
    display: none;
  }

  .dc-site-header__mobile {
    display: block;
  }

  .dc-site-footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dc-site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .dc-site-header__inner,
  .dc-site-footer__top,
  .dc-site-footer__bottom {
    width: min(100% - 32px, var(--dc-site-shell));
  }

  .dc-site-header__inner {
    min-height: 72px;
  }

  .dc-site-header__brand img {
    width: 148px;
  }

  .dc-site-footer__top {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 42px;
  }

  .dc-site-footer__brand {
    grid-column: auto;
  }

  .dc-site-footer__bottom {
    display: grid;
  }
}

