/* HEADER */

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e1e1e1;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
  }
  
  .logo {
    font-weight: 700;
    font-size: 18px;
  }
  
  /* NAV */
  
  .menu-toggle {
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
  }
  
  .main-nav {
    display: none;
    flex-direction: column;
    background: #ffffff;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    border-top: 1px solid #eee;
  }
  
  .main-nav a {
    padding: 14px;
    border-bottom: 1px solid #eee;
  }
  
  .main-nav.active {
    display: flex;
  }
  
  /* DESKTOP */
  
  @media (min-width: 768px) {
    .menu-toggle {
      display: none;
    }
  
    .main-nav {
      position: static;
      display: flex;
      flex-direction: row;
      width: auto;
      border: 0;
      gap: 20px;
    }
  
    .main-nav a {
      border: 0;
      padding: 0;
    }
  }
  
  /* MAIN */
  
  .site-main {
    padding: 30px 0;
  }
  
  /* FOOTER */
  
  .site-footer {
    background: #ffffff;
    border-top: 1px solid #e1e1e1;
    padding: 20px 0;
    font-size: 14px;
    color: #666;
  }
  