@font-face {
  font-family: 'Blair';
  src: url('fonts/BlairMdITC-TT-Medium-Font.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

h1,
h2,
h3,
h4,
.headline {
  font-family: "Montserrat", sans-serif;
  margin: 0; 
}

.page #logo {
  padding: 30px;
}

#ac-globalnav {
  display: none;
}

#ba-nav-menu {
  width: 100%;
  background-color: #103144;
  height: 48px;
  margin: 0; 
}

#ba-nav-menu .inner-menu {
    margin: 0 auto;
}

#ba-nav-menu .inner-menu a img {
    border: 0;
    vertical-align: middle;
}

#ba-nav-menu .inner-menu a {
  color: white; 
  font-size: 14px;
  padding: 0 10px;
}

#ba-nav-menu .desktop-container {
  height: 48px;
    padding: 0; 
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Mobile top bar (hamburger + logo + search) */
.mobile-container {
  display: none; /* hidden by default */
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  list-style: none;
}

.mobile-container li {
  display: flex;
  align-items: center;
}

.mobile-container .ac-gn-link-text {
  color: white;
  font-size: 16px;
  text-decoration: none;
}

/* Hamburger button */
.mobile-nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-line {
  width: 25px;
  height: 2px;
  background-color: white;
  display: block;
}

.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu li {
  margin-bottom: 10px;
}

.mobile-menu a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}

/* Show/hide based on screen size */
@media (max-width: 768px) {
  .desktop-container {
    display: none;
  }

  .mobile-container {
    display: flex;
  }
  #ba-nav-menu .inner-menu {
    max-width: 90%;
    margin-top: 0; 
  }
}

@media (min-width: 769px) {
  #ba-nav-menu .inner-menu {
    max-width: 980px;
    padding: 0 22px;
  }
}

/* Slide-in menu fix: fully hidden off screen */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 260px;
  background-color: #103144;
  padding: 20px 20px 20px 20px;
  box-shadow: none;
  transform: translateX(-105%); /* hide more than 100% to prevent shadow artifacts */
  transition: transform 0.3s ease;
  z-index: 1000;
  overflow-y: auto;
}

/* Show shadow only when visible */
.mobile-menu.active {
  display: block;
  transform: translateX(0);
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.4);
}

/* Close button */
.mobile-menu-close {
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
}

/* Prevent scroll on body when menu is open */
body.menu-open {
  overflow: hidden;
}

/* Overlay */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Keep the rest of your mobile nav styles */
.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu li {
  margin-bottom: 15px;
}

.mobile-menu a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}

.team-member {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 90px;
}

.team-image-thumb {
  width: 200px;
  height: auto;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.team-member-info {
  flex: 1;
}

.team-member-info p {
  line-height: 30px;
}

.team-members {
  margin: 0 auto;
  text-align: justify;
}

.team-member a {
  margin-top: 10px;
  font-size: 12px;
  display: inline-block;
}

.team-member .team-member-name {
  color: #000066; 
}

#newsGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top:40px;
    gap: 20px;
}

.news-post {
    padding: 15px;
    border-top:1px solid #0070c9;
}

.news-post a {
    color: inherit; 
}

.news-post .category-label {
    display: block;
    color: #0070c9;
    letter-spacing: 1.5px;
    font-size:10pt;
    margin-bottom:15px;
    text-transform: uppercase;
}

.news-post .date-label {
    margin-top:25px;
    font-size:9pt;
    display: block;
    color: #0070c9;
}

.hr-small{
    width:100px; 
    margin: 20px auto;
}

.w-100 { width:100% !important; }

.text-center { text-align: center !important;  }
.text-left { text-align: left !important;  }
.text-right { text-align: right !important;  }

.content-wrapper-larger {
	width: 90%;
	margin:20px auto;
	padding-bottom:47px;
}

.content-wrapper {
	margin: auto;
    padding: 30px 0;
    text-align: justify;
}
.content-wrapper p {
	line-height:30px;
}

.inline-bb-sm {
    height: 15px; 
}

.tiny-bb {
	height: 10px; 
	margin: 0px 5px; 
	padding: 1px 0px;
	display:inline;
	vertical-align: initial !important;
}

/* We need to declare this last so it takes priority. */
#ba-nav-menu .inner-menu a .tiny-bb {
  vertical-align: middle !important;
  margin: 0;
  padding: 0; 
}

.lg-title-icon {
	margin: -3px 5px !important; 
	height:40px; 
	padding:0px;
	display:inline;
}

#portfolio-as-arbitrator .subheading strong, #portfolio-as-counsel .subheading strong{
    color: #0070c9;
}

#portfolio-as-arbitrator .subheading a, #portfolio-as-counsel .subheading a {
    color: #000;
}

#portfolio-as-arbitrator .subheading a:hover, #portfolio-as-counsel .subheading a:hover {
    color: #0070c9;
}

#logo {
	width:500px;
	margin:auto;
}
.d-none {
	display:none !important; 
}

.dropdown {
	display:none;
	position: absolute; 
	padding: 10px 20px !important; 
	background:white; 
}
.dropdown a {
	display:block;
	font-size:10pt !important; 
	color: #323232; 
	width:100%; 
	margin:5px 0px !important;
	text-decoration: none; 
}
.dropdown a:hover, footer .col-1 a {
	color: #0070c9 !important;
	text-decoration: none; 
}
#arbitration-library a:hover {
    color: #274f6f;
}