  /* .navbar, .navbar *, .navbar *::before, .navbar *::after {
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0;
}
 */
* { box-sizing: border-box; margin: 0 auto !important; padding: 0; }

  .navbar {
    background: #e8e8e8;
    font-family: Georgia, serif;
    width: 100%;
    
  }
  .navbar-inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
	margin: 0 auto;
	padding: 24px, 0;
  }
  .hamburger, .mobile-header { display: none; }
  .nav-item { position: relative; }
  .nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 14px 10px;
    font-size: 16px;
    font-weight: 700;
    color: #222;
    text-decoration: underline;
    cursor: pointer;
    white-space: nowrap;
    border: none;
    background: none;
    font-family: Georgia, serif;
    line-height: 1.2;
  }
  .nav-link:hover { color: #75263b; }
  .nav-link .chevron { font-size: 10px; }
  .nav-link.home-link { 
	  color: #75263b; 
	  font-size: 20px !important;
  }
  .top-nav-link {
	  font-size: 16px;
  }
  .nav-item.open .chevron { display: inline-block; transform: rotate(180deg); }

  .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  .nav-item.open .dropdown { display: block; }
  .dropdown a {
    display: block;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 700;
    color: #222;
    text-decoration: underline;
    font-family: Georgia, serif;
  }
  .dropdown a:hover { background: #f5f5f5; color: #75263b; }
 
/*   Mobile screens 770px max */
	
  @media (max-width: 770px) {
    .navbar {
      padding: 0;
      border-bottom: none;
      position: relative;
    }
 
    /* Top bar: Law Home + hamburger */
    .mobile-header {
		display: flex !important;
		align-items: center !important;
		justify-content: space-between !important;
  width: 100% !important;
  box-sizing: border-box !important;
  padding: 14px 16px !important;
  background: #e8e8e8 !important;
  border-bottom: 3px solid #6b0f2a !important;
		min-width: 100%;
}
    .mobile-home-link {
      font-size: 15px;
      font-weight: 700;
      color: #222;
      text-decoration: underline;
      font-family: Georgia, serif;
    }
    .hamburger {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
    }
    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: #222;
    }
 
    /* Slide-down menu panel */
    .navbar-inner {
/*       display: none; */
      flex-direction: column;
      align-items: stretch;
      justify-content: flex-start;
      background: #e8e8e8;
      width: 100%;
      padding: 0;
    }
    .navbar-inner.mobile-open { display: flex; }
 
    /* Close button row inside panel */
    .mobile-close-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 14px 16px;
      border-bottom: 1px solid #ccc;
    }
    .mobile-close-home {
      font-size: 15px;
      font-weight: 700;
      color: #222;
      text-decoration: underline;
      font-family: Georgia, serif;
    }
    .mobile-close-btn {
      background: none;
      border: 1px solid #999;
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      padding: 4px 10px;
      color: #222;
      font-family: Georgia, serif;
    }
 
    /* Hide the desktop "Law Home" nav-item */
    .nav-item.desktop-home-link { display: none; }
 
    /* Each nav row */
    .nav-item { width: 100%; border-bottom: 1px solid #ccc; }
    .nav-link {
      width: 100%;
      justify-content: space-between;
      padding: 16px 16px;
      font-size: 15px;
      white-space: normal;
    }
    .nav-link.home-link { display: none; } 
/* hidden. shown in close row */
 
    /* Mobile dropdown: inline, not absolute */
    .dropdown {
      position: static;
      box-shadow: none;
      border: none;
      border-top: none;
      background: #e8e8e8;
      min-width: unset;
      width: 100%;
    }
    .dropdown a {
      padding: 10px 28px;
      font-size: 14px;
      border-bottom: 1px solid #d0d0d0;
    }
    .dropdown a:last-child { border-bottom: none; }
  }