/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

@media (min-width: 901px) {

  .simple-nav {

    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    align-items: center;

    gap: 1.2rem;

    padding: 1rem 2rem;

    background: #dfeaf3;

    border-top: 1px solid rgba(0,0,0,0.05);

    border-bottom: 1px solid rgba(0,0,0,0.12);
  }


  /* =====================================================
     TOP LEVEL ITEMS
  ===================================================== */

  .simple-nav details {

    position: relative;

    display: block;
  }


  /* =====================================================
     TOP LINKS + SUMMARY
  ===================================================== */

  .simple-nav summary,
  .simple-nav .top-link {

    display: block;

    list-style: none;

    cursor: pointer;

    padding: 0.3rem 0;

    color: #000000;

    text-decoration: none;

    white-space: nowrap;

    font-family: "Source Sans 3", sans-serif;

    font-size: 1.1rem;

    font-weight: 450;

    text-transform: uppercase;

    letter-spacing: 0.02em;
  }


  .simple-nav summary::-webkit-details-marker {

    display: none;
  }


  /* =====================================================
     SUBMENU
  ===================================================== */

  .simple-nav .submenu {

    display: none;

    position: absolute;

    top: 100%;

    left: 0;

    min-width: 220px;

    margin: 0;

    padding: 0.5rem 0;

    list-style: none;

    background: #ffffff;

    border: 1px solid rgba(0,0,0,0.08);

    box-shadow:
      0 10px 24px rgba(0,0,0,0.10);

    z-index: 1000;
  }


  .simple-nav details:hover .submenu {

    display: block;
  }


  /* =====================================================
     SUBMENU LINKS
  ===================================================== */

  .simple-nav .submenu a {

    display: block;

    padding: 0.7rem 1rem;

    color: #000000;

    text-decoration: none;

    font-family: "Source Sans 3", sans-serif;

    font-size: 1rem;

    font-weight: 450 !important;

    line-height: 1.35;
  }


  .simple-nav .submenu a:hover {

    background: #eef3f8;
  }

}


/* =========================================================
   TABLET + MOBILE
========================================================= */

@media (max-width: 900px) {

  .simple-nav {

    width: 100%;

    background: #dfeaf3;

    border-top: 1px solid rgba(0,0,0,0.05);

    border-bottom: 1px solid rgba(0,0,0,0.12);
  }


  /* =====================================================
     ACCORDION ITEMS
  ===================================================== */

  .simple-nav details {

    border-bottom: 1px solid rgba(0,0,0,0.08);
  }


  /* =====================================================
     TOP LINKS + SUMMARY
  ===================================================== */

  .simple-nav summary,
  .simple-nav .top-link {

    display: block;

    list-style: none;

    cursor: pointer;

    padding: 1rem 1.2rem;

    color: #1f2933;

    text-decoration: none;

    font-family: "Source Sans 3", sans-serif;

    font-size: 1rem;

    font-weight: 650;

    text-transform: uppercase;

    letter-spacing: 0.015em;
  }


  .simple-nav summary::-webkit-details-marker {

    display: none;
  }


  /* =====================================================
     SUBMENU
  ===================================================== */

  .simple-nav .submenu {

    padding:
      0
      0
      1rem
      0;
  }


  /* =====================================================
     SUBMENU LINKS
  ===================================================== */

  .simple-nav .submenu a {

    display: block;

    padding:
      0.7rem
      1.8rem;

    color: #2f3d4a;

    text-decoration: none;

    font-family: "Source Sans 3", sans-serif;

    font-size: 1rem;

    font-weight: 500;

    line-height: 1.4;
  }


  .simple-nav .submenu a:hover {

    background: rgba(255,255,255,0.45);
  }

}

