﻿/* =====================================================================================================================
   SITE CHROME - captured ONCE from the live rx716.com (2026-08-27) per PATIENT-PORTAL-LOOK-AND-FEEL.md: the
   .rx716-global-header / .rx716-global-footer component CSS verbatim, plus the site's base typography (OceanWP
   customizer: body Montserrat 14px/1.8, headings Poppins #10356B). CSS/fonts/images/static markup ONLY - no
   JavaScript from the site is ever executed here. Served from OUR origin; the approve-gated fingerprint sync that
   keeps this current automatically is v1.1 (the document says a one-time copy drifts within a quarter - when the
   site is redesigned, re-capture and redeploy).
   ===================================================================================================================== */

/* ---- base typography, as the live site computes it ---- */
body { font-family: Montserrat, system-ui, sans-serif; font-size: 14px; line-height: 1.8; }
h1, h2, h3, h4, h5, h6 { font-family: Poppins, Montserrat, system-ui, sans-serif; line-height: 1.4; color: #10356B; }

/* ---- .rx716-global-header (verbatim) ---- */
.rx716-global-header,
.rx716-global-header * { box-sizing: border-box; }

.rx716-global-header {
  width: 100%;
  background: #FFFFFF;
  border-bottom: 1px solid #E2E0E0;
  position: relative;
  z-index: 1000;
}

.rx716-global-header__inner {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.rx716-global-header__brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 44px;
}

.rx716-global-header__brand img {
  display: block;
  width: auto;
  max-width: 154px;
  max-height: 48px;
}

.rx716-primary-navigation {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  min-width: 0;
}

.rx716-primary-navigation__list,
.rx716-submenu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.rx716-primary-navigation__list {
  display: flex;
  align-items: stretch;
  gap: 2px;
}

.rx716-menu-item {
  position: relative;
  display: flex;
  align-items: stretch;
}

.rx716-menu-item > a,
.rx716-parent-row > a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  color: #10356B;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: .02em;
  white-space: nowrap;
}

.rx716-parent-row {
  display: flex;
  align-items: stretch;
}

.rx716-parent-row > a {
  padding-right: 3px;
}

.rx716-submenu-toggle {
  min-width: 32px;
  min-height: 48px;
  border: 0;
  background: transparent;
  color: #10356B;
  padding: 0 7px 0 3px;
  cursor: pointer;
  font: inherit;
}

.rx716-menu-item > a:hover,
.rx716-parent-row > a:hover,
.rx716-menu-item.is-open > .rx716-parent-row > a,
.rx716-submenu-toggle:hover {
  color: #0471B8;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.rx716-submenu {
  display: none;
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  width: 280px;
  background: #FFFFFF;
  border: 1px solid #E2E0E0;
  box-shadow: 0 12px 26px rgba(16, 53, 107, .12);
  padding: 8px 0;
  z-index: 1200;
}

.rx716-has-submenu.is-open > .rx716-submenu {
  display: block;
}

.rx716-submenu a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 9px 16px;
  color: #10356B;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.3;
}

.rx716-submenu a:hover {
  background: #DDF8FF;
  color: #10356B;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rx716-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 17px;
  background: #FF9454;
  color: #FFFFFF !important;
  text-decoration: none !important;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.15;
  white-space: nowrap;
  border-radius: 0;
}

.rx716-header-cta:hover {
  background: #C16B3F;
}

.rx716-global-header a:focus-visible,
.rx716-global-header button:focus-visible {
  outline: 3px solid #0471B8;
  outline-offset: 3px;
  z-index: 1300;
}

.rx716-global-header__mobile-toggle {
  display: none;
  margin-left: auto;
  min-height: 46px;
  min-width: 88px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid #10356B;
  border-radius: 0;
  background: #FFFFFF;
  color: #10356B;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

@media (max-width: 1180px) and (min-width: 1025px) {
  .rx716-global-header__inner {
    width: min(100% - 28px, 1140px);
    gap: 14px;
  }
  .rx716-primary-navigation {
    gap: 10px;
  }
  .rx716-menu-item > a,
  .rx716-parent-row > a {
    padding-left: 6px;
    padding-right: 6px;
    font-size: 12px;
  }
  .rx716-parent-row > a { padding-right: 2px; }
  .rx716-submenu-toggle { min-width: 27px; padding-right: 5px; }
  .rx716-header-cta { padding-left: 12px; padding-right: 12px; font-size: 12px; }
}

@media (max-width: 1024px) {
  .rx716-global-header__inner {
    width: 100%;
    min-height: 70px;
    padding: 10px 20px;
    flex-wrap: wrap;
    gap: 0;
  }

  .rx716-global-header__brand img {
    max-width: 142px;
    max-height: 44px;
  }

  .rx716-global-header__mobile-toggle {
    display: inline-flex;
  }

  .rx716-primary-navigation {
    display: none;
    flex: 0 0 100%;
    width: 100%;
    margin: 10px 0 0;
    padding: 8px 0 2px;
    border-top: 1px solid #E2E0E0;
  }

  .rx716-primary-navigation.is-mobile-open {
    display: block;
  }

  .rx716-primary-navigation__list {
    display: block;
    width: 100%;
  }

  .rx716-menu-item,
  .rx716-parent-row {
    display: block;
    width: 100%;
  }

  .rx716-menu-item {
    border-bottom: 1px solid #E2E0E0;
  }

  .rx716-menu-item > a {
    width: 100%;
    min-height: 48px;
    padding: 12px 4px;
  }

  .rx716-parent-row {
    position: relative;
  }

  .rx716-parent-row > a {
    width: calc(100% - 52px);
    min-height: 48px;
    padding: 12px 4px;
  }

  .rx716-submenu-toggle {
    position: absolute;
    right: 0;
    top: 0;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    border-left: 1px solid #E2E0E0;
    padding: 0;
  }

  .rx716-submenu {
    position: static;
    width: 100%;
    border: 0;
    border-top: 1px solid #E2E0E0;
    box-shadow: none;
    background: #F7FCFE;
    padding: 4px 0 6px 14px;
  }

  .rx716-submenu a {
    min-height: 44px;
    padding: 10px 8px;
  }

  .rx716-header-cta {
    width: 100%;
    margin-top: 14px;
    min-height: 50px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .rx716-global-header__inner {
    padding-left: 16px;
    padding-right: 16px;
  }
  .rx716-global-header__brand img {
    max-width: 126px;
    max-height: 40px;
  }
}


/* ---- .rx716-global-footer (verbatim) ---- */
.rx716-global-footer,
.rx716-global-footer * { box-sizing: border-box; }

.rx716-global-footer {
  width: 100%;
  background: #10356B;
  color: #FFFFFF;
}

.rx716-global-footer__inner {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
  padding: 54px 0 24px;
}

.rx716-global-footer__grid {
  display: grid;
  grid-template-columns: 1.25fr 1.2fr 1fr 1.1fr;
  gap: 38px;
  align-items: start;
}

.rx716-footer-logo {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.rx716-footer-logo img {
  display: block;
  width: auto;
  max-width: 165px;
  max-height: 54px;
  filter: brightness(0) invert(1);
}

.rx716-footer-tagline {
  margin: 18px 0 0;
  max-width: 290px;
  color: #FFFFFF;
  font-size: 16px;
  line-height: 1.55;
}

.rx716-footer-heading {
  margin: 0 0 18px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .05em;
}

.rx716-footer-location {
  margin: 0 0 22px;
}

.rx716-footer-location:last-child { margin-bottom: 0; }

.rx716-footer-location h3 {
  margin: 0 0 6px;
  color: #FFFFFF;
  font-size: 16px;
  line-height: 1.3;
}

.rx716-footer-location address {
  margin: 0 0 7px;
  color: #FFFFFF;
  font-style: normal;
  font-size: 14px;
  line-height: 1.5;
}

.rx716-global-footer a {
  color: #FFFFFF;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.rx716-global-footer a:hover {
  color: #F8BB9D;
}

.rx716-global-footer a:focus-visible {
  outline: 3px solid #FF9454;
  outline-offset: 3px;
}

.rx716-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.rx716-footer-links li {
  margin: 0 0 8px;
}

.rx716-footer-links a {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  font-size: 14px;
  line-height: 1.35;
}

.rx716-global-footer__bottom {
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.28);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.rx716-footer-governance {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
}

.rx716-footer-governance a,
.rx716-footer-copyright {
  font-size: 13px;
  line-height: 1.4;
}

.rx716-footer-copyright {
  margin: 0;
  color: #FFFFFF;
  white-space: nowrap;
}

.rx716-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 1024px) {
  .rx716-global-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 50px;
  }
}

@media (max-width: 640px) {
  .rx716-global-footer__inner {
    width: 100%;
    padding: 42px 20px 22px;
  }

  .rx716-global-footer__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .rx716-footer-logo img {
    max-width: 150px;
  }

  .rx716-footer-links li {
    margin-bottom: 4px;
  }

  .rx716-footer-links a,
  .rx716-footer-location a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .rx716-global-footer__bottom {
    margin-top: 34px;
    align-items: flex-start;
    flex-direction: column;
  }

  .rx716-footer-governance {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
    width: 100%;
  }

  .rx716-footer-governance a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}


