@media (min-width: 901px) {
  .desktop-nav {
    align-items: center;
  }

  .desktop-nav-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .desktop-nav-item > a {
    white-space: nowrap;
  }

  .desktop-nav-toggle {
    display: grid;
    width: 28px;
    height: 28px;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font: 800 14px/1 Montserrat, Arial, sans-serif;
    transition: background-color .18s ease, transform .18s ease;
  }

  .desktop-nav-toggle:hover,
  .desktop-nav-toggle:focus-visible,
  .desktop-nav-item.is-open .desktop-nav-toggle {
    background: rgba(121, 220, 226, .16);
    outline: none;
  }

  .desktop-nav-item.is-open .desktop-nav-toggle {
    transform: rotate(180deg);
  }

  .desktop-nav-dropdown {
    position: absolute;
    z-index: 1000;
    top: calc(100% + 13px);
    left: 50%;
    width: min(650px, calc(100vw - 48px));
    padding: 18px;
    transform: translateX(-50%);
    border: 1px solid #c6e2e4;
    border-radius: 20px;
    background: rgba(255, 255, 255, .99);
    box-shadow: 0 18px 48px rgba(4, 57, 66, .2);
    color: #073e4a;
  }

  .desktop-nav-dropdown::before {
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 14px;
    content: "";
  }

  .desktop-nav-dropdown[hidden] {
    display: none !important;
  }

  .desktop-nav-dropdown__intro {
    margin: 0 0 13px;
    color: #456a72;
    font: 500 13px/1.45 Montserrat, Arial, sans-serif;
  }

  .desktop-nav-dropdown__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .desktop-nav-dropdown__grid a,
  .desktop-nav-dropdown__all {
    display: flex;
    min-height: 44px;
    padding: 9px 12px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-radius: 12px;
    color: #0a4652 !important;
    font: 750 13px/1.3 Montserrat, Arial, sans-serif;
    text-decoration: none;
  }

  .desktop-nav-dropdown__grid a:hover,
  .desktop-nav-dropdown__grid a:focus-visible,
  .desktop-nav-dropdown__all:hover,
  .desktop-nav-dropdown__all:focus-visible {
    background: #eaf7f7;
    color: #08747e !important;
    outline: none;
  }

  .desktop-nav-dropdown__grid span,
  .desktop-nav-dropdown__all span {
    flex: 0 0 auto;
    color: #1296a0;
    font-size: 17px;
  }

  .desktop-nav-dropdown__all {
    margin-top: 10px;
    border-top: 1px solid #d8e9ea;
    border-radius: 0 0 12px 12px;
    font-weight: 800;
  }

  .desktop-nav-dropdown--locations {
    left: 50%;
    width: min(430px, calc(100vw - 48px));
  }

  .desktop-nav-dropdown--locations .desktop-nav-dropdown__grid a {
    min-height: 42px;
  }

  .treatment-explorer {
    padding-top: 24px;
    padding-bottom: 27px;
  }

  .treatment-explorer__shell {
    max-width: 1240px !important;
    margin-inline: auto !important;
  }

  .treatment-explorer h2 {
    font-size: 27px;
  }

  .treatment-explorer p {
    margin-bottom: 14px;
    font-size: 17px;
  }

  .treatment-explorer__actions {
    gap: 18px;
  }

  .treatment-explorer__actions button,
  .treatment-explorer__actions a {
    min-height: 60px;
    padding: 11px 20px;
    font-size: 18px;
  }
}

@media (min-width: 1800px) {
  .treatment-explorer__shell {
    max-width: 1320px !important;
  }
}
