@charset "UTF-8";
/*
 Departmental header scaffolding
 - 3 stacked rows on desktop (Row 1: utility, Row 2: branding band, Row 3: main nav)
 - Shares typography and colors with existing system
 - Keeps class names namespaced under .dept-header to avoid clashes with Phase 1
 - Provides simple demo toggles via data-state classes you can switch in HTML for variants
*/
.dept-header {
  width: 100%;
  background: #FFFFFF;
  position: relative;
  z-index: 1010;
}
.dept-header .dept-row.utility [data-group=top-left] .util-uni-link:hover,
.dept-header .dept-row.utility [data-group=top-left] .util-uni-link:focus,
.dept-header .dept-row.utility [data-group=top-left] .util-dept-name:hover,
.dept-header .dept-row.utility [data-group=top-left] .util-dept-name:focus {
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 2px;
}
.dept-header[data-theme=navy] .dept-row.utility {
  background: #FFFFFF;
  color: #000000;
}
.dept-header[data-theme=navy] .dept-row.utility [data-group=top-left] .util-uni-link {
  color: #990000;
}
.dept-header[data-theme=navy] .dept-row.utility [data-group=top-left] .util-sep {
  color: #828282;
}
.dept-header[data-theme=navy] .dept-row.utility [data-group=top-left] .util-dept-name {
  color: #000000;
}
.dept-header[data-theme=navy] .dept-row.utility [data-group=top-left] .util-uni-link:hover,
.dept-header[data-theme=navy] .dept-row.utility [data-group=top-left] .util-uni-link:focus,
.dept-header[data-theme=navy] .dept-row.utility [data-group=top-left] .util-dept-name:hover,
.dept-header[data-theme=navy] .dept-row.utility [data-group=top-left] .util-dept-name:focus {
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 2px;
}
.dept-header[data-theme=navy] .dept-row.utility a,
.dept-header[data-theme=navy] .dept-row.utility .util-links ul li a {
  color: #990000;
}
.dept-header[data-theme=navy] .dept-row.utility .util-search-trigger .search-toggle {
  color: #767676;
}
.dept-header[data-theme=navy] .dept-row.utility .util-search-trigger svg path {
  stroke: #767676;
}
.dept-header[data-theme=navy] .dept-row.utility .quick-links .dropdown-toggle {
  border-color: #990000;
  color: #990000;
  background: #FFFFFF;
}
.dept-header[data-theme=navy] .dept-row.utility .quick-links .dropdown-toggle::after {
  filter: none;
}
.dept-header[data-theme=navy] .dept-row.utility .quick-links .dropdown-menu {
  background: #FFFFFF;
  color: #000000;
  border-color: #990000;
}
.dept-header[data-theme=navy] .dept-row.utility .quick-links .dropdown-menu li a {
  color: #000000;
}
.dept-header[data-theme=navy] .dept-row.brand {
  background: #FFFFFF;
  color: #000000;
  border-top: 1px solid #BEBEBE;
}
.dept-header[data-theme=navy] .dept-row.brand .dept-title > a,
.dept-header[data-theme=navy] .dept-row.brand .dept-title-link {
  color: #000000 !important;
}
.dept-header[data-theme=navy] .dept-row.main-nav {
  background: #002244;
  border-bottom: 1px solid #FFFFFF;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
.dept-header[data-theme=navy] .dept-row.main-nav .nav-wrapper a,
.dept-header[data-theme=navy] .dept-row.main-nav .nav-wrapper .nav-list > li > a {
  color: #FFFFFF;
}
.dept-header[data-theme=navy] .dept-row.main-nav .dropdown a,
.dept-header[data-theme=navy] .dept-row.main-nav .flyout a {
  color: #000000;
}
.dept-header[data-theme=navy] .dept-row.main-nav .dropdown a:hover,
.dept-header[data-theme=navy] .dept-row.main-nav .dropdown a:focus,
.dept-header[data-theme=navy] .dept-row.main-nav .flyout a:hover,
.dept-header[data-theme=navy] .dept-row.main-nav .flyout a:focus {
  color: #FFFFFF;
}
.dept-header[data-theme=navy] .dept-row.main-nav .nav-list > li:hover > a,
.dept-header[data-theme=navy] .dept-row.main-nav .nav-list > li:focus-within > a,
.dept-header[data-theme=navy] .dept-row.main-nav .nav-list > li > a.is-active,
.dept-header[data-theme=navy] .dept-row.main-nav .nav-list > li > a[aria-current=page] {
  color: #FFFFFF;
}
.dept-header[data-theme=navy] .dept-row.main-nav.sticky-clone {
  background: #002244;
  border-bottom: 1px solid #FFFFFF;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
.dept-header[data-theme=navy] .dept-row.main-nav.sticky-clone .nav-wrapper a,
.dept-header[data-theme=navy] .dept-row.main-nav.sticky-clone .nav-wrapper .nav-list > li > a {
  color: #FFFFFF;
}
.dept-header[data-theme=navy] .dept-row.main-nav.sticky-clone .dropdown a,
.dept-header[data-theme=navy] .dept-row.main-nav.sticky-clone .flyout a {
  color: #000000;
}
.dept-header[data-theme=navy] .dept-row.main-nav.sticky-clone .nav-list > li:hover > a,
.dept-header[data-theme=navy] .dept-row.main-nav.sticky-clone .nav-list > li:focus-within > a,
.dept-header[data-theme=navy] .dept-row.main-nav.sticky-clone .nav-list > li > a.is-active,
.dept-header[data-theme=navy] .dept-row.main-nav.sticky-clone .nav-list > li > a[aria-current=page] {
  color: #FFFFFF;
}
.dept-header[data-theme=navy] .dept-row.main-nav.sticky-clone .dropdown a:hover,
.dept-header[data-theme=navy] .dept-row.main-nav.sticky-clone .dropdown a:focus,
.dept-header[data-theme=navy] .dept-row.main-nav.sticky-clone .flyout a:hover,
.dept-header[data-theme=navy] .dept-row.main-nav.sticky-clone .flyout a:focus {
  color: #FFFFFF;
}
.dept-header[data-theme=navy] .dept-row.main-nav .home-link img,
.dept-header[data-theme=navy] .dept-row.main-nav.sticky-clone .home-link img {
  filter: brightness(0) invert(1);
}
.dept-header[data-theme=navy] .dept-row.main-nav .nav-list > li > a.has-children::after,
.dept-header[data-theme=navy] .dept-row.main-nav.sticky-clone .nav-list > li > a.has-children::after {
  filter: none;
}
.dept-header[data-theme=navy] .dept-row.main-nav .nav-list > li:hover > a.has-children::after,
.dept-header[data-theme=navy] .dept-row.main-nav .nav-list > li:focus-within > a.has-children::after,
.dept-header[data-theme=navy] .dept-row.main-nav.sticky-clone .nav-list > li:hover > a.has-children::after,
.dept-header[data-theme=navy] .dept-row.main-nav.sticky-clone .nav-list > li:focus-within > a.has-children::after {
  filter: none;
}
.dept-header[data-theme=black-red] .dept-row.utility {
  background: #000000;
  color: #FFFFFF;
}
.dept-header[data-theme=black-red] .dept-row.utility [data-group=top-left] .util-uni-link,
.dept-header[data-theme=black-red] .dept-row.utility [data-group=top-left] .util-sep,
.dept-header[data-theme=black-red] .dept-row.utility [data-group=top-left] .util-dept-name {
  color: #FFFFFF;
}
.dept-header[data-theme=black-red] .dept-row.utility [data-group=top-left] .util-uni-link:hover,
.dept-header[data-theme=black-red] .dept-row.utility [data-group=top-left] .util-uni-link:focus,
.dept-header[data-theme=black-red] .dept-row.utility [data-group=top-left] .util-dept-name:hover,
.dept-header[data-theme=black-red] .dept-row.utility [data-group=top-left] .util-dept-name:focus {
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 2px;
}
.dept-header[data-theme=black-red] .dept-row.utility a,
.dept-header[data-theme=black-red] .dept-row.utility .util-links ul li a {
  color: #FFFFFF;
}
.dept-header[data-theme=black-red] .dept-row.utility .util-sep {
  color: rgba(255, 255, 255, 0.8);
}
.dept-header[data-theme=black-red] .dept-row.utility .quick-links .dropdown-toggle {
  border-color: #FFFFFF;
  color: #FFFFFF;
  background: #000000;
}
.dept-header[data-theme=black-red] .dept-row.utility .quick-links .dropdown-toggle::before {
  background: linear-gradient(88.41deg, #002244 0%, #1791AD 36%, #BCCF9D 100%);
}
.dept-header[data-theme=black-red] .dept-row.utility .quick-links .dropdown-toggle::after {
  filter: brightness(5);
}
.dept-header[data-theme=black-red] .dept-row.utility .quick-links .dropdown-menu {
  background: #FFFFFF;
  color: #000000;
  border-color: #FFFFFF;
}
.dept-header[data-theme=black-red] .dept-row.utility .quick-links .dropdown-menu li a {
  color: #000000;
}
.dept-header[data-theme=black-red] .dept-row.utility .util-search-trigger .search-toggle {
  color: #FFFFFF;
}
.dept-header[data-theme=black-red] .dept-row.utility .util-search-trigger svg path {
  stroke: #FFFFFF;
}
.dept-header[data-theme=black-red] .dept-row.brand {
  background: #990000;
  color: #FFFFFF;
  border-top: 1px solid #990000;
}
.dept-header[data-theme=black-red] .dept-row.brand .dept-title > a,
.dept-header[data-theme=black-red] .dept-row.brand .dept-title-link {
  color: #FFFFFF !important;
}
.dept-header[data-theme=black-red] .dept-row.brand .util-dept-name,
.dept-header[data-theme=black-red] .dept-row.brand .dept-tagline {
  color: #FFFFFF;
}
.dept-header[data-theme=black-red] .dept-row.main-nav {
  background: #FFFFFF;
  border-bottom: 1px solid #BEBEBE;
}
.dept-header[data-theme=black-red] .dept-row.main-nav .nav-wrapper a,
.dept-header[data-theme=black-red] .dept-row.main-nav .nav-wrapper .nav-list > li > a {
  color: #000000;
}
.dept-header[data-theme=black-red] .dept-row.main-nav .nav-list > li:hover > a,
.dept-header[data-theme=black-red] .dept-row.main-nav .nav-list > li:focus-within > a,
.dept-header[data-theme=black-red] .dept-row.main-nav .nav-list > li > a.is-active,
.dept-header[data-theme=black-red] .dept-row.main-nav .nav-list > li > a[aria-current=page] {
  color: #FFFFFF;
}
.dept-header[data-theme=black-red] .dept-row.main-nav.sticky-clone {
  background: #FFFFFF;
  border-bottom: 1px solid #BEBEBE;
}
.dept-header[data-theme=black-red] .dept-row.main-nav.sticky-clone .nav-wrapper a,
.dept-header[data-theme=black-red] .dept-row.main-nav.sticky-clone .nav-wrapper .nav-list > li > a {
  color: #000000;
}
.dept-header[data-theme=black-red] .dept-row.main-nav.sticky-clone .nav-list > li:hover > a,
.dept-header[data-theme=black-red] .dept-row.main-nav.sticky-clone .nav-list > li:focus-within > a,
.dept-header[data-theme=black-red] .dept-row.main-nav.sticky-clone .nav-list > li > a.is-active,
.dept-header[data-theme=black-red] .dept-row.main-nav.sticky-clone .nav-list > li > a[aria-current=page] {
  color: #FFFFFF;
}
.dept-header[data-theme=black-red] .dept-row.main-nav.sticky-clone .dropdown a:hover,
.dept-header[data-theme=black-red] .dept-row.main-nav.sticky-clone .dropdown a:focus,
.dept-header[data-theme=black-red] .dept-row.main-nav.sticky-clone .flyout a:hover,
.dept-header[data-theme=black-red] .dept-row.main-nav.sticky-clone .flyout a:focus {
  color: #FFFFFF;
}
.dept-header[data-theme=black-red] .dept-row.main-nav .home-link img,
.dept-header[data-theme=black-red] .dept-row.main-nav.sticky-clone .home-link img {
  filter: brightness(0);
}
.dept-header[data-theme=black-red] .dept-row.main-nav .nav-list > li > a.has-children::after,
.dept-header[data-theme=black-red] .dept-row.main-nav.sticky-clone .nav-list > li > a.has-children::after {
  filter: brightness(0);
}
.dept-header[data-theme=black-red] .dept-row.main-nav .nav-list > li:hover > a.has-children::after,
.dept-header[data-theme=black-red] .dept-row.main-nav .nav-list > li:focus-within > a.has-children::after,
.dept-header[data-theme=black-red] .dept-row.main-nav.sticky-clone .nav-list > li:hover > a.has-children::after,
.dept-header[data-theme=black-red] .dept-row.main-nav.sticky-clone .nav-list > li:focus-within > a.has-children::after {
  filter: none;
}
.dept-header[data-theme=black-red] .dept-row.brand .dept-title > a.dept-title-link {
  color: #FFFFFF !important;
  text-decoration: none !important;
}
.dept-header[data-theme=black-red] .dept-row.brand .dept-title > a.dept-title-link:hover,
.dept-header[data-theme=black-red] .dept-row.brand .dept-title > a.dept-title-link:focus {
  color: #FFFFFF !important;
  text-decoration: underline !important;
  text-decoration-thickness: 0.03em !important;
  text-underline-offset: 2px;
}
.dept-header .nav-wrapper {
  max-width: 1780px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--sb-global-padding, 26px);
}
.dept-header .dept-row.utility {
  background: #FFFFFF;
  color: #000000;
  height: 65px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 5;
}
.dept-header .dept-row.utility .left, .dept-header .dept-row.utility .right {
  display: flex;
  gap: 24px;
  align-items: center;
}
.dept-header .dept-row.utility a {
  color: #990000;
  text-decoration: none;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 1rem;
}
.dept-header .dept-row.utility [data-group=top-left] {
  display: flex;
  gap: 16px;
  align-items: center;
}
.dept-header .dept-row.utility [data-group=top-left] .uni-logo {
  height: 39px;
  width: auto;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
  transform: none;
}
.dept-header .dept-row.utility [data-group=top-left] .util-dept-name {
  font-family: "Barlow", sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #000000;
  text-transform: uppercase;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: 1px;
  margin-left: 0;
}
.dept-header .dept-row.utility [data-group=top-left] .util-uni-link {
  text-decoration: none;
  color: #990000;
  font-family: "Barlow", sans-serif;
  font-size: 0.9375rem;
  vertical-align: middle;
  display: inline-block;
  position: relative;
  top: 1px;
}
.dept-header .dept-row.utility [data-group=top-left] .util-sep {
  opacity: 0.5;
  margin-left: 16px;
  margin-right: 12px;
  font-size: 20px;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: 1px;
  color: #828282;
}
.dept-header .dept-row.utility .util-links ul li a {
  color: #990000;
  font-family: "Barlow", sans-serif;
  font-size: 0.9375rem;
  text-transform: uppercase;
  text-decoration: none;
}
.dept-header .dept-row.utility .util-links ul li a:hover,
.dept-header .dept-row.utility .util-links ul li a:focus,
.dept-header .dept-row.utility .util-links ul li a:focus-visible {
  text-decoration: underline;
}
.dept-header .dept-row.utility .quick-links {
  position: relative;
  display: inline-block;
  height: 65px;
}
.dept-header .dept-row.utility .quick-links .dropdown-toggle {
  display: inline-flex;
  align-items: flex-start;
  height: 80%;
  margin-top: 15px;
  padding: 5px 18px;
  border-radius: 10px 10px 0 0;
  border: 1px solid #990000;
  color: #990000;
  background: #FFFFFF;
  font-family: "Barlow", sans-serif;
  font-size: 0.9375rem;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  overflow: hidden;
  bottom: 1px;
}
.dept-header .dept-row.utility .quick-links .dropdown-toggle::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 15px;
  height: 4px;
  background: linear-gradient(88.41deg, #002244 0%, #1791AD 36%, #BCCF9D 100%);
  pointer-events: none;
}
.dept-header .dept-row.utility .quick-links .dropdown-toggle::after {
  transform: translateY(10px);
  margin-left: 0.35rem;
}
.dept-header .dept-row.utility .quick-links .ql-gradient {
  display: none !important;
}
.dept-header .dept-row.utility .quick-links .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #FFFFFF;
  color: #000000;
  padding: 14px 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  border: 1px solid #990000;
  border-radius: 0;
  z-index: 2;
}
.dept-header .dept-row.utility .quick-links .dropdown-menu li a {
  display: block;
  color: #000000;
  text-decoration: none;
  padding: 5px 0;
}
.dept-header .dept-row.utility .quick-links .dropdown-menu li a:hover,
.dept-header .dept-row.utility .quick-links .dropdown-menu li a:focus,
.dept-header .dept-row.utility .quick-links .dropdown-menu li a:focus-visible {
  text-decoration: underline;
}
.dept-header .dept-row.utility .quick-links .dropdown-toggle:focus,
.dept-header .dept-row.utility .quick-links .dropdown-toggle:focus-visible,
.dept-header .dept-row.utility .quick-links .dropdown-toggle.ql-focus {
  outline: 3px solid #000000; /* accessible focus ring */
  outline-offset: 2px;
}
.dept-header .dept-row.utility .quick-links:focus-within .dropdown-menu, .dept-header .dept-row.utility .quick-links:hover .dropdown-menu {
  display: block;
}
.dept-header .dept-row.utility .quick-links + .divider {
  margin-top: 2px;
}
.dept-header .dept-row.utility .util-search input {
  border-radius: 0;
  border-color: #990000;
}
.dept-header .dept-row.utility .util-search-trigger .search-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  color: #767676;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Barlow", sans-serif;
  font-size: 0.9375rem;
}
.dept-header .dept-row.utility .util-search-trigger .search-toggle:focus,
.dept-header .dept-row.utility .util-search-trigger .search-toggle:focus-visible {
  outline: 2px solid #000000;
  outline-offset: 2px;
}
.dept-header .dept-row.utility .util-search-trigger svg path {
  stroke: #767676;
}
.dept-header .dept-row.brand {
  background: #FFFFFF;
  min-height: 96px;
  display: flex;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid #BEBEBE;
  position: relative;
  z-index: 3;
}
.dept-header .dept-row.brand .left, .dept-header .dept-row.brand .right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.dept-header .dept-row.brand .right {
  align-self: stretch;
}
.dept-header .dept-row.brand .dept-logo {
  max-height: 64px;
  height: auto;
}
.dept-header .dept-row.brand .left .dept-logo {
  margin: 3px 0;
}
.dept-header .dept-row.brand .dept-title {
  font-family: "Alumni Sans", sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  font-size: clamp(2.25rem, -0.446rem + 4.337vw, 4.375rem);
  line-height: 1;
}
.dept-header .dept-row.brand .dept-title > a {
  color: #000000 !important;
  text-decoration: none !important;
}
.dept-header .dept-row.brand .dept-title > a:hover, .dept-header .dept-row.brand .dept-title > a:focus {
  color: #990000 !important;
  text-decoration: none !important;
}
.dept-header .dept-row.brand .dept-title-link {
  color: #000000;
  text-decoration: none;
}
.dept-header .dept-row.brand .dept-title-link:hover, .dept-header .dept-row.brand .dept-title-link:focus {
  color: #990000;
  text-decoration: none;
}
.dept-header .dept-row.brand .dept-tagline {
  font-family: "Bitter", serif; /* font-style: italic; */
  color: #828282;
  font-size: 1.125rem;
  margin-bottom: 0;
}
.dept-header .dept-row.brand [data-group=middle-right][data-align=bottom] .tagline {
  align-self: flex-end;
}
.dept-header .dept-row.brand [data-group=middle-right][data-align=center] .tagline {
  align-self: center;
}
.dept-header .dept-row.brand .google-translate .goog-te-gadget {
  font-family: "Barlow", sans-serif !important;
  font-size: 0.875rem !important;
  color: #828282 !important;
}
.dept-header .dept-row.brand .google-translate .goog-te-gadget .goog-te-combo {
  border: 1px solid #BEBEBE;
  padding: 6px 8px;
  font-family: "Barlow", sans-serif;
  font-size: 0.875rem;
  color: #000000;
}
.dept-header .dept-row.brand .google-translate .goog-logo-link, .dept-header .dept-row.brand .google-translate .goog-te-gadget span a {
  font-family: "Barlow", sans-serif !important;
  font-size: 0.75rem !important;
}
.dept-header .dept-row.main-nav {
  background: #990000;
  height: 118px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 3;
  --dept-nav-gap: clamp(10px, 1.6vw, 32px);
}
.dept-header .dept-row.main-nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 22px;
  background: linear-gradient(88.41deg, #002244 0%, #1791AD 36%, #BCCF9D 100%);
  pointer-events: none;
  z-index: 1;
}
.dept-header .dept-row.main-nav .nav-wrapper {
  position: absolute;
  top: 22px;
  left: 0;
  right: 0;
  height: 96px;
  display: flex;
  align-items: center;
  z-index: 2;
}
.dept-header .dept-row.main-nav .home-link {
  display: inline-flex;
  align-items: center;
  padding-right: 0;
  margin-right: var(--dept-nav-gap);
  border-right: none;
  align-self: center;
  transform: translateY(-4px);
}
.dept-header .dept-row.main-nav .home-link svg {
  height: clamp(18px, 1.6vw, 24px);
  width: auto;
  display: block;
  transform: none;
}
.dept-header .dept-row.main-nav .home-link img {
  height: clamp(18px, 1.6vw, 24px);
  width: auto;
  display: block;
}
.dept-header .dept-row.main-nav .nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--dept-nav-gap);
}
.dept-header .dept-row.main-nav .nav-list > li {
  list-style: none;
}
.dept-header .dept-row.main-nav .nav-list > li::marker {
  content: none !important;
}
.dept-header .dept-row.main-nav li {
  list-style: none;
}
.dept-header .dept-row.main-nav li::marker {
  content: none !important;
}
.dept-header .dept-row.main-nav .nav-list > li {
  flex: 0 0 auto;
}
.dept-header .dept-row.main-nav .nav-list > li.dev-hidden {
  display: none !important;
}
.dept-header .dept-row.main-nav .nav-list > li.more {
  position: relative;
}
.dept-header .dept-row.main-nav .nav-list > li.more.is-empty {
  display: none;
}
.dept-header .dept-row.main-nav .nav-list > li.more > a {
  font-family: "Alumni Sans", sans-serif;
  font-size: clamp(1rem, 2vw, 2rem);
  color: #FFFFFF;
  text-transform: uppercase;
  padding: 3px 12px;
  line-height: 1;
  border: 2px solid transparent;
  display: inline-flex;
  align-items: center;
}
.dept-header .dept-row.main-nav .nav-list > li.more:hover > a,
.dept-header .dept-row.main-nav .nav-list > li.more:focus-within > a {
  background: #1791AD;
  border-color: #F1EA86;
  box-shadow: 4px 6px 0 #000000;
  color: #FFFFFF;
  padding-right: 28px;
}
.dept-header .dept-row.main-nav .nav-list > li.more > .dropdown {
  top: var(--dropdown-top-more, var(--dropdown-top, 69px));
  right: 0;
  left: auto;
  min-width: 240px;
  background: #F3F6F6;
  border: 1px solid #BEBEBE;
  position: absolute;
  z-index: 2;
}
.dept-header .dept-row.main-nav .nav-list > li.more > a {
  position: relative;
  padding-right: 28px;
}
.dept-header .dept-row.main-nav .nav-list > li.more > a::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  transform: translateY(-50%);
  box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
  opacity: 0.95;
  pointer-events: none;
}
.dept-header .dept-row.main-nav .nav-list > li.more > .dropdown ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.dept-header .dept-row.main-nav .nav-list > li.more > .dropdown a {
  display: block;
  padding: 6px 16px;
  color: #000000;
  text-decoration: none;
}
.dept-header .dept-row.main-nav .nav-list > li.more > .dropdown a:hover,
.dept-header .dept-row.main-nav .nav-list > li.more > .dropdown a:focus,
.dept-header .dept-row.main-nav .nav-list > li.more > .dropdown a:focus-visible {
  background: #1791AD;
  color: #FFFFFF;
}
.dept-header .dept-row.main-nav .nav-list > li.has-children {
  position: relative;
}
.dept-header .dept-row.main-nav .nav-list > li.has-children::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 40px;
  background: transparent;
  z-index: 0;
}
.dept-header .dept-row.main-nav .nav-list > li > a {
  font-family: "Alumni Sans", sans-serif;
  font-size: clamp(1rem, 2vw, 2rem);
  color: #FFFFFF;
  text-decoration: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  padding: 3px 12px;
  line-height: 1;
  border: 2px solid transparent;
  box-shadow: none;
  white-space: nowrap;
}
.dept-header .dept-row.main-nav .nav-list > li > a.has-children::after {
  content: "";
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M8 3.33325V12.6666' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M3.33331 8H12.6666' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 4px;
}
.dept-header .dept-row.main-nav .nav-list > li:hover > a,
.dept-header .dept-row.main-nav .nav-list > li:focus-within > a,
.dept-header .dept-row.main-nav .nav-list > li > a:focus,
.dept-header .dept-row.main-nav .nav-list > li > a:focus-visible,
.dept-header .dept-row.main-nav .nav-list > li > a.is-active,
.dept-header .dept-row.main-nav .nav-list > li > a[aria-current=page] {
  background: #1791AD;
  border-color: #F1EA86;
  box-shadow: 4px 6px 0 #000000;
  color: #FFFFFF;
  padding: 3px 12px;
}
.dept-header .dept-row.main-nav .nav-list > li:hover > a.has-children::after,
.dept-header .dept-row.main-nav .nav-list > li:focus-within > a.has-children::after,
.dept-header .dept-row.main-nav .nav-list > li > a.has-children:focus::after,
.dept-header .dept-row.main-nav .nav-list > li > a.has-children:focus-visible::after,
.dept-header .dept-row.main-nav .nav-list > li > a.is-active.has-children::after,
.dept-header .dept-row.main-nav .nav-list > li > a[aria-current=page].has-children::after {
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  background-repeat: no-repeat;
  background-size: contain;
}
.dept-header .dept-row.main-nav li {
  position: relative;
}
.dept-header .dept-row.main-nav .dropdown, .dept-header .dept-row.main-nav .flyout {
  display: none;
  position: absolute;
  background: #E8E9ED;
  color: #000000;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  border: 1px solid #BEBEBE;
}
.dept-header .dept-row.main-nav .dropdown {
  top: var(--dropdown-top, 69px);
  left: 0;
  min-width: 320px;
  background: #F3F6F6;
  border: 1px solid #BEBEBE;
  position: absolute;
  z-index: 2;
}
.dept-header .dept-row.main-nav .dropdown ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.dept-header .dept-row.main-nav .dropdown li {
  position: relative;
}
.dept-header .dept-row.main-nav .dropdown a {
  display: block;
  padding: 6px 16px;
  text-decoration: none;
  color: #000000;
  font-family: "Barlow", sans-serif;
  font-size: 1rem;
}
.dept-header .dept-row.main-nav .dropdown li > a:hover,
.dept-header .dept-row.main-nav .dropdown li > a:focus,
.dept-header .dept-row.main-nav .dropdown li > a:focus-visible {
  background: #1791AD;
  color: #FFFFFF;
}
.dept-header .dept-row.main-nav .dropdown ul li:last-child {
  margin-bottom: 0;
}
.dept-header .dept-row.main-nav .dropdown li.flyout-active > a.has-flyout {
  background: #D7E1E5;
  color: #000000;
}
.dept-header .dept-row.main-nav .dropdown li > a.has-flyout::after {
  content: "›";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #000000;
}
.dept-header .dept-row.main-nav .dropdown li.has-flyout-toggle > a.has-flyout::after {
  content: none;
}
.dept-header .dept-row.main-nav .dropdown li.has-flyout-toggle > a.has-flyout {
  padding-right: 40px;
}
.dept-header .dept-row.main-nav .dropdown li.has-flyout-toggle > .flyout-toggle {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  color: #000000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.dept-header .dept-row.main-nav .dropdown li.has-flyout-toggle > .flyout-toggle::before {
  content: "›";
  font-size: 20px;
  line-height: 1;
}
.dept-header .dept-row.main-nav .dropdown li:hover > .flyout-toggle,
.dept-header .dept-row.main-nav .dropdown li:focus-within > .flyout-toggle {
  color: #FFFFFF;
}
.dept-header .dept-row.main-nav .dropdown li > .flyout-toggle:focus,
.dept-header .dept-row.main-nav .dropdown li > .flyout-toggle:focus-visible {
  color: #000000;
}
.dept-header .dept-row.main-nav .dropdown li > .flyout-toggle:hover {
  color: #000000;
}
.dept-header .dept-row.main-nav .dropdown li.flyout-active > .flyout-toggle {
  color: #000000;
}
.dept-header .dept-row.main-nav .dropdown li.has-flyout-toggle > .flyout-toggle:focus-visible {
  outline: 2px solid #000000;
  outline-offset: 2px;
}
.dept-header .dept-row.main-nav .flyout {
  top: 0;
  left: 100%;
  min-width: 280px;
  background: #F3F6F6;
  border: 1px solid #BEBEBE;
}
.dept-header .dept-row.main-nav .nav-list > li.flyout-left .dropdown .flyout {
  left: auto;
  right: 100%;
}
.dept-header .dept-row.main-nav .nav-list > li.flyout-left .dropdown li.has-flyout-toggle > .flyout-toggle::before {
  display: inline-block;
  transform: rotate(180deg);
}
.dept-header .dept-row.main-nav .flyout ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.dept-header .dept-row.main-nav .flyout a {
  background: transparent;
  color: #000000;
}
.dept-header .dept-row.main-nav .flyout a:hover,
.dept-header .dept-row.main-nav .flyout a:focus,
.dept-header .dept-row.main-nav .flyout a:focus-visible {
  background: #1791AD;
  color: #FFFFFF;
}
.dept-header .dept-row.main-nav .flyout ul li:last-child {
  margin-bottom: 0;
}
.dept-header .dept-row.main-nav li:focus-within > .dropdown, .dept-header .dept-row.main-nav li:hover > .dropdown, .dept-header .dept-row.main-nav li.is-open > .dropdown {
  display: block;
}
.dept-header .dept-row.main-nav .dropdown li:hover > .flyout, .dept-header .dept-row.main-nav .dropdown li:focus-within > .flyout, .dept-header .dept-row.main-nav .dropdown li.is-open > .flyout {
  display: block;
}
.dept-header .dept-row.main-nav.sticky-clone {
  position: fixed;
  top: -96px;
  left: 0;
  right: 0;
  z-index: 1011;
  transition: top 0.25s ease-in-out;
  background: #990000;
  height: 96px;
}
.dept-header .dept-row.main-nav.sticky-clone .nav-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 96px;
}
.dept-header .dept-row.main-nav.sticky-clone::before {
  display: none !important;
  content: none !important;
}
.dept-header.is-stuck .dept-row.main-nav.sticky-clone {
  top: 0;
}
@media (min-width: 992px) {
  .dept-header .dept-row.main-nav {
    position: relative;
    top: auto;
    z-index: 3;
  }
}
@media (max-width: 991.98px) {
  .dept-header .dept-row.utility {
    padding: 6px 0;
  }
  .dept-header .dept-row.brand {
    padding: 12px 0;
  }
  .dept-header .dept-row.brand .right {
    margin-left: auto;
    align-self: stretch;
  }
  .dept-header .dept-row.main-nav {
    overflow-x: auto;
    height: auto;
  }
  .dept-header .dept-row.main-nav::before {
    height: 18px;
  }
  .dept-header .dept-row.main-nav .nav-wrapper {
    position: static;
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .dept-header .dept-row.main-nav .nav-list {
    gap: 18px;
  }
}
@media (max-width: 1549px) {
  .dept-header .dept-row.main-nav {
    --dropdown-top: 68px;
  }
}
@media (max-width: 1449px) {
  .dept-header .dept-row.main-nav {
    --dropdown-top: 67px;
  }
}
@media (max-width: 1349px) {
  .dept-header .dept-row.main-nav {
    --dropdown-top: 66px;
  }
}
@media (max-width: 1249px) {
  .dept-header .dept-row.main-nav {
    --dropdown-top: 65px;
  }
}
@media (max-width: 1149px) {
  .dept-header .dept-row.main-nav {
    --dropdown-top: 64px;
  }
}
@media (max-width: 1049px) {
  .dept-header .dept-row.main-nav {
    --dropdown-top: 63px;
  }
}
@media (max-width: 1550px) {
  .dept-header .dept-row.main-nav {
    --dropdown-top-more: 68px;
  }
}
@media (max-width: 1450px) {
  .dept-header .dept-row.main-nav {
    --dropdown-top-more: 67px;
  }
}
@media (max-width: 1350px) {
  .dept-header .dept-row.main-nav {
    --dropdown-top-more: 66px;
  }
}
@media (max-width: 1250px) {
  .dept-header .dept-row.main-nav {
    --dropdown-top-more: 65px;
  }
}
@media (max-width: 1150px) {
  .dept-header .dept-row.main-nav {
    --dropdown-top-more: 64px;
  }
}
@media (max-width: 1050px) {
  .dept-header .dept-row.main-nav {
    --dropdown-top-more: 63px;
  }
}

.dept-header .desktop-search-panel {
  position: absolute;
  top: 65px;
  left: 50%;
  transform: translate(-50%, -220px);
  width: 100%;
  max-width: 1780px;
  background-color: #E8E9ED;
  height: 210px;
  overflow: hidden;
  transition: transform 0.3s ease-in-out, opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
  z-index: 4;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.dept-header .desktop-search-panel.is-open {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.dept-header .desktop-search-panel .sb-search-panel-close:focus,
.dept-header .desktop-search-panel .sb-search-panel-close:focus-visible,
.dept-header .desktop-search-panel .sb-search-form .form-control:focus,
.dept-header .desktop-search-panel .sb-search-form .form-control:focus-visible,
.dept-header .desktop-search-panel .sb-search-form select:focus,
.dept-header .desktop-search-panel .sb-search-form select:focus-visible,
.dept-header .desktop-search-panel .sb-search-form .sb-search-button:focus,
.dept-header .desktop-search-panel .sb-search-form .sb-search-button:focus-visible,
.dept-mobile-search-panel .sb-search-panel-close:focus,
.dept-mobile-search-panel .sb-search-panel-close:focus-visible,
.dept-mobile-search-panel .sb-search-form .form-control:focus,
.dept-mobile-search-panel .sb-search-form .form-control:focus-visible,
.dept-mobile-search-panel .sb-search-form select:focus,
.dept-mobile-search-panel .sb-search-form select:focus-visible,
.dept-mobile-search-panel .sb-search-form .sb-search-button:focus,
.dept-mobile-search-panel .sb-search-form .sb-search-button:focus-visible {
  outline: 2px solid #000000;
  outline-offset: 2px;
}

.dept-header :where(a, button, input, select, textarea, [role=button], summary):focus,
.dept-header :where(a, button, input, select, textarea, [role=button], summary):focus-visible,
.dept-mobile-header :where(a, button, input, select, textarea, [role=button], summary):focus,
.dept-mobile-header :where(a, button, input, select, textarea, [role=button], summary):focus-visible,
.dept-mobile-search-panel :where(a, button, input, select, textarea, [role=button], summary):focus,
.dept-mobile-search-panel :where(a, button, input, select, textarea, [role=button], summary):focus-visible,
.dept-menu-panel :where(a, button, input, select, textarea, [role=button], summary):focus,
.dept-menu-panel :where(a, button, input, select, textarea, [role=button], summary):focus-visible {
  outline: 3px solid #005ea6 !important;
  outline-offset: 2px !important;
  box-shadow: 0 0 0 1px #ffffff !important;
}
.dept-header button:focus:not(:focus-visible),
.dept-mobile-header button:focus:not(:focus-visible),
.dept-mobile-search-panel button:focus:not(:focus-visible),
.dept-menu-panel button:focus:not(:focus-visible) {
  outline: 3px solid #005ea6 !important;
  outline-offset: 2px !important;
  box-shadow: 0 0 0 1px #ffffff !important;
}

.dept-header .sb-search-panel-close:focus,
.dept-header .sb-search-panel-close:focus-visible,
.dept-mobile-search-panel .sb-search-panel-close:focus,
.dept-mobile-search-panel .sb-search-panel-close:focus-visible,
.dept-header button[aria-label="Close search panel"]:focus,
.dept-header button[aria-label="Close search panel"]:focus-visible,
.dept-mobile-search-panel button[aria-label="Close search panel"]:focus,
.dept-mobile-search-panel button[aria-label="Close search panel"]:focus-visible,
.dept-header .sb-search-panel-close:focus:not(:focus-visible),
.dept-mobile-search-panel .sb-search-panel-close:focus:not(:focus-visible),
.dept-header button[aria-label="Close search panel"]:focus:not(:focus-visible),
.dept-mobile-search-panel button[aria-label="Close search panel"]:focus:not(:focus-visible) {
  outline: 3px solid #ffbf47 !important;
  outline-offset: 3px !important;
  border-radius: 3px;
}

.dept-mobile-header {
  display: none;
}
@media (max-width: 991.98px) {
  .dept-mobile-header {
    display: block;
  }
}
@media (max-width: 995.98px) {
  .dept-mobile-header {
    display: block;
  }
}
.dept-mobile-header .header-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: #FFFFFF;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 0 16px;
  border-bottom: 1px solid #ddd;
}
.dept-mobile-header .header-left .logo img {
  height: 28px;
  width: auto;
}
.dept-mobile-header .header-actions {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0;
  align-items: center;
}
.dept-mobile-header .header-actions > li {
  height: 60px;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}
.dept-mobile-header .dept-search-toggle-mobile, .dept-mobile-header .dept-menu-toggle {
  background: transparent;
  border: 0;
  padding: 0;
  height: 60px;
  display: grid;
  place-items: center;
}
.dept-mobile-header .dept-search-toggle-mobile {
  padding: 0 16px;
}
.dept-mobile-header .dept-menu-toggle {
  position: relative;
  width: 60px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: background-color 0.25s ease;
}
.dept-mobile-header .dept-menu-toggle .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #000000;
  margin: 3px 0;
  transform-origin: center;
  transition: transform 0.25s ease, opacity 0.2s ease, background-color 0.25s ease;
  border-radius: 1px;
}
.dept-mobile-header .dept-search-toggle-mobile:focus, .dept-mobile-header .dept-menu-toggle:focus,
.dept-mobile-header .dept-search-toggle-mobile:focus-visible, .dept-mobile-header .dept-menu-toggle:focus-visible {
  outline: 2px solid #000000;
  outline-offset: 2px;
}
.dept-mobile-header .dept-menu-toggle[aria-expanded=true] {
  width: 60px;
  background: #990000;
}
.dept-mobile-header .dept-menu-toggle[aria-expanded=true] .bar {
  background: #FFFFFF;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: 0;
  width: 20px;
}
.dept-mobile-header .dept-menu-toggle[aria-expanded=true] .bar:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.dept-mobile-header .dept-menu-toggle[aria-expanded=true] .bar:nth-child(2) {
  opacity: 0;
  transform: translate(-50%, -50%);
}
.dept-mobile-header .dept-menu-toggle[aria-expanded=true] .bar:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.dept-mobile-search-panel {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  max-height: 0;
  overflow: hidden;
  background: #E8E9ED;
  transition: max-height 0.4s ease-in-out;
  z-index: 1100;
  visibility: hidden;
}
.dept-mobile-search-panel.is-open {
  visibility: visible;
}
@media (min-width: 992px) {
  .dept-mobile-search-panel {
    display: none !important;
  }
}
@media (min-width: 996px) {
  .dept-mobile-search-panel {
    display: none !important;
  }
}

.dept-menu-panel {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1150;
  transform: translateY(-100%);
  transition: transform 0.6s ease-in-out;
  display: flex;
}
@media (min-width: 992px) {
  .dept-menu-panel {
    display: none !important;
  }
}
@media (min-width: 996px) {
  .dept-menu-panel {
    display: none !important;
  }
}
.dept-menu-panel.open {
  transform: translateY(0);
}
.dept-menu-panel .overlay {
  flex: 1;
  background: rgba(0, 0, 0, 0.5);
}
.dept-menu-panel .menu-content {
  position: relative;
  flex: 0 0 322px;
  width: 322px;
  max-width: 322px;
  background: #15839c;
  color: #FFFFFF;
  height: 100%;
  overflow-y: auto;
  padding: 0 32px 32px;
  display: flex;
  flex-direction: column;
}
.dept-menu-panel .dept-menu-info {
  position: relative;
  background: #FFFFFF;
  color: #000000;
  padding: 16px 32px 12px;
  margin: 0 -32px 32px;
}
.dept-menu-panel .dept-menu-info {
  padding-top: 30px;
}
.dept-menu-panel .dept-menu-info .eyebrow {
  display: block;
  font-family: "Alumni Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.375rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #000000;
  text-decoration: underline;
  text-decoration-color: #DEDEDE;
  text-decoration-thickness: 1px;
  margin-bottom: 22px;
}
.dept-menu-panel .dept-menu-info .title {
  display: block;
  font-family: "Alumni Sans", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.75rem;
  text-transform: uppercase;
  color: #000000;
  text-decoration: underline;
  text-decoration-color: #DEDEDE;
  text-decoration-thickness: 1px;
  margin-bottom: 22px;
}
.dept-menu-panel .dept-menu-info .eyebrow:focus,
.dept-menu-panel .dept-menu-info .title:focus,
.dept-menu-panel .dept-menu-info .eyebrow:focus-visible,
.dept-menu-panel .dept-menu-info .title:focus-visible {
  outline: 2px solid #000000;
  outline-offset: 2px;
}
.dept-menu-panel .primary-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.dept-menu-panel .mobile-nav-item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  height: 44px;
}
.dept-menu-panel .mobile-nav-link-top {
  color: #FFFFFF;
  text-decoration: none !important;
  font-family: "Alumni Sans", sans-serif;
  font-size: 1.25rem;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  height: 44px;
  margin-right: 1rem;
  font-weight: 700;
}
.dept-menu-panel .mobile-nav-link-top:focus,
.dept-menu-panel .accordion-panel li a:focus,
.dept-menu-panel .mobile-nav-link-top:focus-visible,
.dept-menu-panel .accordion-panel li a:focus-visible {
  outline: 2px solid #FFFFFF;
  outline-offset: 2px;
}
.dept-menu-panel .accordion-panel .mobile-nav-item-top .mobile-nav-link-top {
  text-transform: none;
}
.dept-menu-panel .dept-accordion-toggle, .dept-menu-panel .dept-sub-accordion-toggle {
  background: transparent;
  border: 0;
  color: #FFFFFF;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.dept-menu-panel .dept-accordion-toggle:focus,
.dept-menu-panel .dept-sub-accordion-toggle:focus,
.dept-menu-panel .dept-accordion-toggle:focus-visible,
.dept-menu-panel .dept-sub-accordion-toggle:focus-visible {
  outline: 2px solid #FFFFFF;
  outline-offset: 2px;
}
.dept-menu-panel .dept-accordion-toggle .arrow {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}
.dept-menu-panel .dept-accordion-toggle[aria-expanded=true] .arrow {
  transform: rotate(-135deg);
}
.dept-menu-panel .dept-sub-accordion-toggle {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.dept-menu-panel .dept-sub-accordion-toggle::before {
  content: "+";
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  line-height: 1;
}
.dept-menu-panel .dept-sub-accordion-toggle[aria-expanded=true]::before {
  content: "–";
}
.dept-menu-panel .accordion-panel {
  list-style: none;
  margin: 0;
  padding: 0 0 0 15px;
  max-height: 0;
  overflow: hidden;
  transition: none;
}
.dept-menu-panel .primary-menu > li.has-submenu > ul.accordion-panel {
  transition: max-height 0.6s ease-in-out;
}
.dept-menu-panel .accordion-panel > li.has-submenu > .mobile-nav-item-top {
  padding-left: 18px;
}
.dept-menu-panel .accordion-panel.is-open {
  max-height: 800px;
}
.dept-menu-panel .accordion-panel li {
  position: relative;
}
.dept-menu-panel .accordion-panel li a {
  display: block;
  padding: 12px 10px 12px 18px;
  color: #FFFFFF;
  text-decoration: none !important;
  font-family: "Barlow", sans-serif;
  font-size: clamp(0.75rem, 0.625rem + 1vw, 0.875rem);
  line-height: 1.2;
}
.dept-menu-panel .accordion-panel li.has-submenu > .mobile-nav-item-top {
  padding-left: 0;
  height: 44px;
}
.dept-menu-panel .accordion-panel li.has-submenu > .mobile-nav-item-top .mobile-nav-link-top {
  height: 44px;
  padding-left: 0;
  text-transform: none;
}
.dept-menu-panel .accordion-panel li.has-submenu > ul.accordion-panel {
  padding-left: 18px;
  padding-bottom: 12px;
  max-height: none;
  transition: none;
}
.dept-menu-panel .primary-menu > li {
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}
.dept-menu-panel .primary-menu > li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}
.dept-menu-panel .primary-menu > li:first-child > a {
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 0;
}
.dept-menu-panel .accordion-panel li:not(.has-submenu) > a::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.85;
}
.dept-menu-panel .accordion-panel li.has-submenu > .mobile-nav-item-top {
  padding-left: 0;
}
.dept-menu-panel .dept-secondary-links {
  background: #002244;
  padding: 16px;
  margin: 32px -32px 0;
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}
.dept-menu-panel .dept-secondary-links.is-empty {
  display: none;
}
.dept-menu-panel .dept-secondary-links .section-heading {
  color: #FFFFFF;
  font-family: "Bitter", serif;
  font-style: italic;
  font-size: 1rem;
  font-weight: 400;
}
.dept-menu-panel .dept-secondary-links ul {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
}
.dept-menu-panel .dept-secondary-links li {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
}
.dept-menu-panel .dept-secondary-links li::marker {
  content: none !important;
}
.dept-menu-panel .dept-secondary-links li a {
  display: block;
  padding: 4px 0;
  color: #FFFFFF;
  text-decoration: none !important;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
}
.dept-menu-panel .dept-secondary-links li a:hover,
.dept-menu-panel .dept-secondary-links li a:focus {
  text-decoration: none !important;
}
.dept-menu-panel .dept-secondary-links li a:focus-visible {
  outline: 2px solid #FFFFFF;
  outline-offset: 2px;
}
.dept-menu-panel .dept-secondary-links .columns {
  display: flex;
  gap: 32px;
}
.dept-menu-panel .dept-secondary-links .col {
  flex: 1 1 0;
  min-width: 0;
}
.dept-menu-panel .dept-bottom-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  height: 41px;
  background: #990000;
  width: 322px;
  left: auto;
}

.dept-menu-panel .menu-content.no-secondary-links {
  padding-bottom: 72px;
}

@media (max-width: 995.98px) {
  .dept-header {
    display: none;
  }
}
/*! 
==========================
 GRADIENTS
========================== 
*/
.gradient-primary-red {
  background: linear-gradient(269.6deg, #D52027 -0.02%, #990000 45.99%, #6B000D 96.5%);
}

.gradient-secondary-blue {
  background: linear-gradient(88.65deg, #00549A 0%, #1791AD 99.65%);
}

.gradient-secondary-yellow {
  background: linear-gradient(90deg, #F8F2C5 0%, #F1EA86 100%);
}

.gradient-specialty-teal-green {
  background: linear-gradient(88.65deg, #1791AD 0%, #BCCF9D 99.65%);
}

.gradient-specialty-deep-blue-green {
  background: linear-gradient(88.41deg, #002244 0%, #1791AD 36%, #BCCF9D 100%);
}

.gradient-specialty-ocean-layers {
  background: linear-gradient(90.03deg, #1F4045 18.52%, #007291 46.17%, #1D92AD 71.16%, #7CAEA8 95.97%);
}

.gradient-specialty-soft-green {
  background: linear-gradient(180deg, #D8E2C7 30.01%, #BDCEA2 100%);
}

.gradient-primary-red-vertical {
  background: linear-gradient(180deg, #D52027 -0.02%, #990000 45.99%, #6B000D 96.5%);
}

.gradient-secondary-blue-vertical {
  background: linear-gradient(0deg, #00549A 0%, #1791AD 99.65%);
}

.gradient-secondary-yellow-vertical {
  background: linear-gradient(180deg, #F8F2C5 0%, #F1EA86 100%);
}

.gradient-specialty-teal-green-vertical {
  background: linear-gradient(180deg, #1791AD 0%, #BCCF9D 99.65%);
}

.gradient-specialty-deep-blue-green-vertical {
  background: linear-gradient(180deg, #002244 0%, #1791AD 36%, #BCCF9D 100%);
}

.gradient-specialty-ocean-layers-vertical {
  background: linear-gradient(180deg, #1F4045 18.52%, #007291 46.17%, #1D92AD 71.16%, #7CAEA8 95.97%);
}

.gradient-specialty-soft-green-vertical {
  background: linear-gradient(180deg, #D8E2C7 30.01%, #BDCEA2 100%);
}

.gradient-specialty-hp-carousel-vertical {
  background: linear-gradient(180deg, #D9E2C5 16.83%, #BFCF9E 91.35%);
}

/*! 
==========================
 DIVIDERS
========================== 
*/
.divider {
  width: 100%;
  display: block;
}

.divider-8 {
  height: 8px;
}

.divider-10 {
  height: 10px;
}

.divider-12 {
  height: 12px;
}

.divider-16 {
  height: 16px;
}

.divider-24 {
  height: 24px;
}

.divider-28 {
  height: 28px;
}

.divider-30 {
  height: 30px;
}

.divider-32 {
  height: 32px;
}

.divider-36 {
  height: 36px;
}

@media (max-width: 575.98px) {
  .divider-8 {
    height: 4px;
  }
  .divider-10 {
    height: 6px;
  }
  .divider-12 {
    height: 8px;
  }
  .divider-16 {
    height: 8px;
  }
  .divider-24 {
    height: 16px;
  }
  .divider-28 {
    height: 16px;
  }
  .divider-32 {
    height: 16px;
  }
  .divider-36 {
    height: 24px;
  }
}
.gradient-primary-red {
  background: linear-gradient(269.6deg, #D52027 -0.02%, #990000 45.99%, #6B000D 96.5%);
}

.gradient-specialty-deep-blue-green {
  background: linear-gradient(88.41deg, #002244 0%, #1791AD 36%, #BCCF9D 100%);
}

.divider-spacer {
  height: 60px;
  display: block;
}

.divider-red {
  background: url(../images/dividers_red.jpg) no-repeat center center;
  background-size: auto 100%;
  background-position: right center;
  height: 28px;
  width: 100%;
  display: block;
}

.divider-royal-blue {
  background: url(../images/dividers_royal-blue.jpg) no-repeat center center;
  background-size: auto 100%;
  background-position: right center;
  height: 28px;
  width: 100%;
  display: block;
}

.divider-turquoise {
  background: url(../images/dividers_turquoise.jpg) no-repeat center center;
  background-size: auto 100%;
  background-position: right center;
  height: 28px;
  width: 100%;
  display: block;
}

.divider-celery {
  background: url(../images/dividers_celery.jpg) no-repeat center center;
  background-size: auto 100%;
  background-position: right center;
  height: 28px;
  width: 100%;
  display: block;
}

.divider-cream {
  background: url(../images/dividers_cream.jpg) no-repeat center center;
  background-size: auto 100%;
  background-position: right center;
  height: 28px;
  width: 100%;
  display: block;
}

.divider-forest-green {
  background: url(../images/dividers_forest-green.jpg) no-repeat center center;
  background-size: auto 100%;
  background-position: right center;
  height: 28px;
  width: 100%;
  display: block;
}

.divider-navy {
  background: url(../images/dividers_navy.jpg) no-repeat center center;
  background-size: auto 100%;
  background-position: right center;
  height: 28px;
  width: 100%;
  display: block;
}

.divider-pear {
  background: url(../images/dividers_pear.jpg) no-repeat center center;
  background-size: auto 100%;
  background-position: right center;
  height: 28px;
  width: 100%;
  display: block;
}

.divider-prisms-red {
  background: url(../images/dividers_prisms-divider-wide-red.jpg) no-repeat center center;
  background-size: auto 100%;
  background-position: right center;
  height: 28px;
  width: 100%;
  display: block;
}
@media (max-width: 572px) {
  .divider-prisms-red {
    background-position: calc(100% + 300px) center;
  }
}

.divider-prisms-royal-blue {
  background: url(../images/dividers_prisms-divider-wide-royal-blue.jpg) no-repeat center center;
  background-size: auto 100%;
  background-position: right center;
  height: 28px;
  width: 100%;
  display: block;
}
@media (max-width: 572px) {
  .divider-prisms-royal-blue {
    background-position: calc(100% + 300px) center;
  }
}

.divider-prisms-turquoise {
  background: url(../images/dividers_prisms-divider-wide-turquoise.jpg) no-repeat center center;
  background-size: auto 100%;
  background-position: right center;
  height: 28px;
  width: 100%;
  display: block;
}
@media (max-width: 572px) {
  .divider-prisms-turquoise {
    background-position: calc(100% + 300px) center;
  }
}

.divider-prisms-celery {
  background: url(../images/dividers_prisms-divider-wide-celery.jpg) no-repeat center center;
  background-size: auto 100%;
  background-position: right center;
  height: 28px;
  width: 100%;
  display: block;
}
@media (max-width: 572px) {
  .divider-prisms-celery {
    background-position: calc(100% + 300px) center;
  }
}

.divider-prisms-cream {
  background: url(../images/dividers_prisms-divider-wide-cream.jpg) no-repeat center center;
  background-size: auto 100%;
  background-position: right center;
  height: 28px;
  width: 100%;
  display: block;
}
@media (max-width: 572px) {
  .divider-prisms-cream {
    background-position: calc(100% + 300px) center;
  }
}

.divider-prisms-forest-green {
  background: url(../images/dividers_prisms-divider-wide-forest-green.jpg) no-repeat center center;
  background-size: auto 100%;
  background-position: right center;
  height: 28px;
  width: 100%;
  display: block;
}
@media (max-width: 572px) {
  .divider-prisms-forest-green {
    background-position: calc(100% + 300px) center;
  }
}

.divider-prisms-navy-blue {
  background: url(../images/dividers_prisms-divider-wide-navy-blue.jpg) no-repeat center center;
  background-size: auto 100%;
  background-position: right center;
  height: 28px;
  width: 100%;
  display: block;
}
@media (max-width: 572px) {
  .divider-prisms-navy-blue {
    background-position: calc(100% + 300px) center;
  }
}

.divider-prisms-pear {
  background: url(../images/dividers_prisms-divider-wide-pear.jpg) no-repeat center center;
  background-size: auto 100%;
  background-position: right center;
  height: 28px;
  width: 100%;
  display: block;
}
@media (max-width: 572px) {
  .divider-prisms-pear {
    background-position: calc(100% + 300px) center;
  }
}

/*!
===========================
 Departmental Footer (3 variants)
===========================
Structure:
- .dept-footer--four-col: logo left, 4 nested link columns right
- .dept-footer--three-col: logo left, 3 nested link columns right
- .dept-footer--small: compact version with logo + socials and dept name

Notes:
- Fits inside 1280px containers: uses `.container-1280` and `.section-content-wrapper` patterns
- Top gradient divider: `.divider.divider-28.gradient-specialty-deep-blue-green`
- Red bar under links: $color-primary-red
- Blue area background: $color-secondary-navy
- Headings: Barlow Semi Condensed, $fs-21, $fw-700, line-height: 30px
- Links: Barlow Semi Condensed, $fs-20, $fw-400, line-height: 40px
- Hover color: $color-primary-red
- Body text black; blue area text white ($color-primary-white)
*/
.dept-footer .footer-top {
  background: #FFFFFF;
  color: #000000;
  padding: 2rem 0 1.5rem 0;
}
@media (min-width: 992px) {
  .dept-footer .footer-top > .container-1280 > .row {
    position: relative;
  }
  .dept-footer .footer-top > .container-1280 > .row::before {
    content: "";
    position: absolute;
    top: 2rem;
    bottom: 1.5rem;
    left: calc(25% - var(--bs-gutter-x) * 1.5);
    width: 1px;
    background: #000000;
  }
}
@media (min-width: 992px) and (max-width: 1279.98px) {
  .dept-footer .footer-top > .container-1280 > .row {
    position: relative;
  }
  .dept-footer .footer-top > .container-1280 > .row::before {
    top: 2rem;
    bottom: 1.5rem;
    left: calc(25% - var(--bs-gutter-x) * 1.25);
  }
}
.dept-footer .footer-top .logo-col {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-right: 1.5rem;
  margin-bottom: 1rem;
}
.dept-footer .footer-top .logo-col img {
  max-width: 100%;
  height: auto;
  max-height: 145px;
  width: auto;
  display: block;
  margin-top: 7px;
}
.dept-footer .footer-top .links-col {
  padding-left: 1.5rem;
}
.dept-footer .footer-top .links-col .link-group {
  margin-bottom: 1rem;
}
.dept-footer .footer-top .links-col .link-group .link-heading,
.dept-footer .footer-top .links-col .link-group .h3-link-heading {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 30px;
  margin-top: 0;
  margin-bottom: 0.25rem;
  color: #000000;
  text-transform: uppercase;
}
.dept-footer .footer-top .links-col .link-group .link-heading p,
.dept-footer .footer-top .links-col .link-group .h3-link-heading p {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  text-transform: inherit;
}
.dept-footer .footer-top .links-col .link-group .link-heading strong,
.dept-footer .footer-top .links-col .link-group .h3-link-heading strong {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  text-transform: inherit;
}
.dept-footer .footer-top .links-col .link-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.dept-footer .footer-top .links-col .link-group li {
  list-style: none;
}
.dept-footer .footer-top .links-col .link-group li::marker {
  content: none;
}
.dept-footer .footer-top .links-col .link-group a {
  display: inline-block;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5rem;
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}
.dept-footer .footer-top .links-col .link-group a:hover, .dept-footer .footer-top .links-col .link-group a:focus {
  color: #990000;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.dept-footer .footer-red-bar {
  height: 35px;
  background: #990000;
}
.dept-footer .footer-bottom {
  background: #002244;
  color: #FFFFFF;
  padding: 1.75rem 0 2.25rem 0;
}
.dept-footer .footer-bottom .small-top {
  display: none;
}
.dept-footer .footer-bottom > .container-1280 {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.dept-footer .footer-bottom > .container-1280 > .small-top {
  order: 1;
}
.dept-footer .footer-bottom > .container-1280 > nav.socials {
  order: 2;
}
.dept-footer .footer-bottom > .container-1280 > .dept-name {
  order: 3;
}
.dept-footer .footer-bottom > .container-1280 > .contact {
  order: 4;
}
.dept-footer .footer-bottom > .container-1280 > .categories {
  order: 5;
}
.dept-footer .footer-bottom > .container-1280 > .copyright {
  order: 6;
}
.dept-footer .footer-bottom .dept-name {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #FFFFFF;
  margin: 1.5rem 0 1rem 0;
}
.dept-footer .footer-bottom .dept-name a {
  color: #FFFFFF;
  text-decoration: none;
  text-underline-offset: 2px;
}
.dept-footer .footer-bottom .dept-name a:hover,
.dept-footer .footer-bottom .dept-name a:focus {
  color: #FFFFFF;
  text-decoration: underline;
}
.dept-footer .footer-bottom .contact {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 0.9375rem;
  line-height: 2;
}
.dept-footer .footer-bottom .contact a {
  color: #FFFFFF;
  text-decoration: none;
}
.dept-footer .footer-bottom .contact a:hover {
  text-decoration: underline;
}
.dept-footer .footer-bottom .categories {
  margin-top: 1rem;
}
.dept-footer .footer-bottom .categories ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.dept-footer .footer-bottom .categories li {
  list-style: none;
}
.dept-footer .footer-bottom .categories a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.25rem 0.5rem;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 0.9375rem;
  line-height: 1.2;
  color: #FFFFFF;
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-right: 0;
}
.dept-footer .footer-bottom .categories a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}
.dept-footer .footer-bottom .copyright {
  margin-top: 1rem;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 0.875rem;
  color: #FFFFFF;
  line-height: 1.4;
}
.dept-footer .footer-bottom .copyright .legal-links {
  margin: 0 0 0.4rem;
}
.dept-footer .footer-bottom .copyright .legal-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 0.25rem;
  column-gap: 0.55rem;
}
.dept-footer .footer-bottom .copyright .legal-links li {
  list-style: none;
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  line-height: 1.25;
}
.dept-footer .footer-bottom .copyright .legal-links li::marker {
  content: none;
}
.dept-footer .footer-bottom .copyright .legal-links a {
  display: inline-flex;
  align-items: center;
  min-height: 1.5rem;
  padding: 0.05rem 0.22rem;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.25;
  color: #FFFFFF;
  text-decoration: none;
}
.dept-footer .footer-bottom .copyright .legal-links a:hover,
.dept-footer .footer-bottom .copyright .legal-links a:focus-visible {
  text-decoration: underline;
}
.dept-footer .footer-bottom .copyright .legal-links li + li::before {
  content: "·";
  margin-right: 0.35rem;
  opacity: 0.85;
}
.dept-footer .footer-bottom .copyright .legal-copyright {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.3;
}
.dept-footer .footer-bottom .copyright .legal-copyright #directedit,
.dept-footer .footer-bottom .copyright .legal-copyright #directedit a {
  color: #FFFFFF !important;
  text-decoration: none !important;
  border-bottom: 0 !important;
}
.dept-footer .footer-bottom .copyright .legal-copyright #directedit {
  display: inline-block;
  margin-right: 0.25rem;
}
.dept-footer .footer-bottom .copyright .legal-copyright a:hover,
.dept-footer .footer-bottom .copyright .legal-copyright a:focus-visible {
  text-decoration: none !important;
}
.dept-footer .footer-bottom .copyright > a {
  display: inline-flex;
  align-items: center;
  min-height: 1.5rem;
  padding: 0.05rem 0.22rem;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.25;
  color: #FFFFFF;
  text-decoration: none;
}
.dept-footer .footer-bottom .copyright > a:hover,
.dept-footer .footer-bottom .copyright > a:focus-visible {
  text-decoration: underline;
}
.dept-footer .footer-bottom .copyright br {
  display: block;
  margin-bottom: 0.35rem;
}
.dept-footer .footer-bottom .socials {
  margin: 0.75rem 0 0.625rem 0;
}
.dept-footer .footer-bottom .socials ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
}
.dept-footer .footer-bottom .socials li {
  list-style: none;
  margin-bottom: 0;
}
.dept-footer .footer-bottom .socials a {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  border-radius: 4px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.dept-footer .footer-bottom .socials a img {
  width: 24px;
  height: 24px;
  display: block;
  filter: brightness(0) invert(1);
}
.dept-footer .footer-bottom .socials a:hover {
  transform: translateY(-2px) scale(1.08);
}
.dept-footer .footer-bottom .socials a:focus {
  outline: 2px solid #FFFFFF;
  outline-offset: 2px;
}
.dept-footer.is-small .footer-top {
  display: none;
}
.dept-footer.is-small .footer-red-bar {
  display: block;
  height: 50px;
}
.dept-footer.is-small .footer-bottom > .container-1280 > nav.socials {
  display: none;
}
.dept-footer.is-small .footer-bottom > .container-1280 {
  display: block;
}
.dept-footer.is-small .footer-bottom .small-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.dept-footer.is-small .footer-bottom .small-top .brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.dept-footer.is-small .footer-bottom .small-top .brand img {
  height: 50px;
  width: auto;
}
.dept-footer.is-small .footer-bottom .small-top .small-divider {
  display: none;
}
@media (max-width: 480px) {
  .dept-footer.is-small .footer-bottom .small-top {
    flex-direction: column;
    gap: 0.5rem;
  }
  .dept-footer.is-small .footer-bottom .small-top .small-divider {
    display: none;
  }
  .dept-footer.is-small .footer-bottom .small-top .brand img {
    height: 50px;
  }
}
.dept-footer.is-small .footer-bottom .dept-name {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  text-align: center;
}

.dept-footer .links-col .links-grid-4 {
  --bs-gutter-x: 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  column-gap: var(--bs-gutter-x);
  row-gap: 1rem;
}
@media (min-width: 576px) {
  .dept-footer .links-col .links-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .dept-footer .links-col .links-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.dept-footer .links-col .links-grid-3 {
  --bs-gutter-x: 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  column-gap: var(--bs-gutter-x);
  row-gap: 1rem;
}
@media (min-width: 576px) {
  .dept-footer .links-col .links-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .dept-footer .links-col .links-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) {
  .dept-footer .links-col .links-grid-3 .link-group:nth-child(n+4) {
    display: none;
  }
}

.dept-back-to-top {
  position: fixed;
  right: 20px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  background: rgba(0, 0, 0, 0.35);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.dept-back-to-top svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.dept-back-to-top svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.dept-back-to-top:hover {
  background: #FFFFFF;
  color: #002244;
  transform: translateY(-2px);
}

.is-hidden {
  display: none !important;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  left: 8px;
  top: 8px;
  width: auto;
  height: auto;
  padding: 0.5rem 0.75rem;
  background: #002244;
  color: #FFFFFF;
  outline: 3px solid #FFFFFF;
  border-radius: 4px;
  z-index: 10002;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto !important;
  }
}
/* Departmental Layout & Navigation (sbu-dept-*) */
/* Wrapper, side nav, main content, utilities, and helpers scoped to departmental templates */
/* ====== Layout scaffolding (Bootstrap compatible) ====== */
/* Wrapper for main grid layout (side nav + content) */
.sbu-dept-layout {
  --sbu-dept-gap-y: 2rem;
  margin-top: 1rem;
  margin-bottom: 2.5rem;
}

/* Keep departmental grid rows inside the wrapper padding (override Bootstrap row negative margins) */
.section-content-wrapper > .row.sbu-dept-layout {
  margin-left: 0;
  margin-right: 0;
}

/* Side navigation column */
.sbu-dept-sidenav {
  position: sticky;
  top: 2rem;
  align-self: flex-start;
}

/* Right spacing between sidenav and main content */
.sbu-dept-sidenav {
  padding-right: 0;
}

@media (min-width: 992px) { /* lg and up */
  .sbu-dept-sidenav {
    padding-right: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
  }
}
@media (min-width: 1200px) { /* xl and up */
  .sbu-dept-sidenav {
    padding-right: var(--bs-gutter-x, 1.5rem);
  }
}
/* Optional sidebar area below navigation (editable block) */
.sbu-dept-sidebar-content {
  margin-top: 2rem;
}

/* Main content column */
.sbu-dept-main .sbu-dept-fullbleed {
  max-width: none;
}

/*! MM intent: apply stack spacing only to structural blocks so sidebar and boxed text rhythm match. */
.sbu-dept-main.sbu-dept-stack > * + :not(h1, h2, h3, h4, h5, h6, p) {
  margin-top: var(--sbu-dept-gap-y);
}

/*! MM intent: prevent stack spacing from inflating raw heading/paragraph siblings. */
.sbu-dept-main.sbu-dept-stack > * + :is(h1, h2, h3, h4, h5, h6, p) {
  margin-top: 0;
}

/* Ensure inline external links in departmental content are not color-only. */
.sbu-dept-main.sbu-dept-stack a.external-link:not(.btn):not([class*=btn]):not(.nav-link):not(.dropdown-item):not(.sb-link-banner__button) {
  text-decoration: underline;
  text-underline-offset: 0.08em;
}

/* Guard against editor-inserted empty slice paragraphs creating top seams. */
.sbu-dept-main.sbu-dept-stack > p[data-pm-slice]:empty:first-child,
.sbu-dept-main.sbu-dept-stack > p[data-mce-slice]:empty:first-child {
  margin: 0;
}

/* Cards 2-column emits divider + heading as sibling blocks; keep that seam flush. */
.sbu-dept-main.sbu-dept-stack > .divider + .cards-2-column__heading-wrapper {
  margin-top: 0;
}

/* Generic content snippets: ou-section, ou-two-column, ou-three-column */
.sbu-dept-main.sbu-dept-stack > .dept-content-snippet {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/* Remove top padding only when the snippet is literally first in main */
.sbu-dept-main.sbu-dept-stack > .dept-content-snippet:first-child {
  padding-top: 0;
}

/* In boxed/sidebar layouts, avoid nested wrapper side-padding */
.layout--boxed .dept-content-snippet,
.layout--sidebar .dept-content-snippet {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

/* ====== Side navigation styling ====== */
.sbu-dept-sidenav nav[aria-label],
.sbu-dept-sidenav .sbu-dept-sidenav-nav {
  display: block;
  padding: 0;
  margin: 0;
}

.sbu-dept-sidenav .sbu-dept-sidenav-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.sbu-dept-sidenav .sbu-dept-sidenav-list li {
  list-style: none;
}

.sbu-dept-sidenav .sbu-dept-sidenav-list li::marker {
  content: "";
}

.sbu-dept-sidenav .sbu-dept-sidenav-list > li {
  margin: 0.25rem 0;
}

.sbu-dept-sidenav .sbu-dept-sidenav-list a {
  display: block;
  padding: 0.55rem 3rem 0.55rem 2rem;
  text-decoration: none !important;
  line-height: 1.3;
  transition: color 0.2s ease, background-color 0.2s ease;
  position: relative;
  box-sizing: border-box;
  width: 100%;
  color: #4b4b4b;
  border-left: 0;
  font-weight: 600;
  background: transparent;
}

.sbu-dept-sidenav .sbu-dept-sidenav-list a:hover {
  text-decoration: none;
}

/* Visual treatment for departmental sidenav card (matches design reference) */
.sbu-dept-sidenav .sbu-dept-sidenav-card {
  --sbu-dept-card-border: 5px;
  --sbu-dept-stripe: 5px;
  border: 1px solid #e5e5e5;
  border-left: var(--sbu-dept-card-border) solid #1791ad;
  background: #ffffff;
  padding: 1.5rem 0 1.5rem 0;
}

.sbu-dept-sidenav .sbu-dept-sidenav-heading {
  font-family: "Barlow", sans-serif, "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.075rem;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  color: #000000;
  padding-left: 2rem;
  position: relative;
}

.sbu-dept-sidenav .sbu-dept-sidenav-heading a {
  color: inherit;
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding-bottom: 0.15rem;
}

.sbu-dept-sidenav .sbu-dept-sidenav-heading a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 75px;
  height: 3px;
  background: #990000;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

.sbu-dept-sidenav .sbu-dept-sidenav-heading a:hover,
.sbu-dept-sidenav .sbu-dept-sidenav-heading a:focus {
  color: #990000;
}

.sbu-dept-sidenav .sbu-dept-sidenav-heading a:hover::after,
.sbu-dept-sidenav .sbu-dept-sidenav-heading a:focus::after {
  background: #990000;
  opacity: 1;
}

.sbu-dept-sidenav .sbu-dept-sidenav-list > li {
  margin: 0;
}

.sbu-dept-sidenav .sbu-dept-sidenav-list li {
  position: relative;
}

.sbu-dept-sidenav .sbu-dept-sidenav-row {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  width: 100%;
  position: relative;
}

.sbu-dept-sidenav .sbu-dept-sidenav-row::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(-1 * var(--sbu-dept-card-border, 5px));
  width: var(--sbu-dept-card-border, 5px);
  background: transparent;
  transition: background-color 0.15s ease;
  pointer-events: none;
  z-index: 1;
}

.sbu-dept-sidenav .sbu-dept-sidenav-row:hover::before,
.sbu-dept-sidenav .sbu-dept-sidenav-row.is-current::before {
  background: #990000;
}

.sbu-dept-sidenav .sbu-dept-sidenav-row > a {
  display: block;
  width: 100%;
  padding: 0.55rem 3rem 0.55rem 2rem;
  color: inherit;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.3;
  text-decoration: none;
  position: relative;
}

.sbu-dept-sidenav .sbu-dept-sidenav-row > span {
  display: block;
  padding: 0.55rem 3rem 0.55rem 2rem;
  color: inherit;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.3;
}

.sbu-dept-sidenav .sbu-dept-sidenav-root > li > .sbu-dept-sidenav-row > span {
  text-transform: uppercase;
}

.sbu-dept-sidenav .sbu-dept-sidenav-row > a,
.sbu-dept-sidenav .sbu-dept-sidenav-row > span,
.sbu-dept-sidenav .sbu-dept-sidenav-row > button:not(.sbu-dept-sidenav-toggle) {
  flex: 1 1 auto;
}

.sbu-dept-sidenav .sbu-dept-sidenav-toggle {
  flex: 0 0 auto;
  width: 1.75rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  color: #1791ad;
  cursor: pointer;
  padding: 0;
  margin-left: 0.25rem;
}

.sbu-dept-sidenav .sbu-dept-sidenav-toggle::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border: solid currentColor;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  transition: transform 0.18s ease, color 0.2s ease;
}

.sbu-dept-sidenav .sbu-dept-sidenav-toggle[aria-expanded=true]::before {
  transform: rotate(225deg);
}

.sbu-dept-sidenav .sbu-dept-sidenav-toggle[aria-expanded=true] {
  color: #4b4b4b;
}

.sbu-dept-sidenav .sbu-dept-sidenav-toggle:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

.sbu-dept-sidenav .sbu-dept-sidenav-list a:hover,
.sbu-dept-sidenav .sbu-dept-sidenav-list a[aria-current=page] {
  color: #990000;
  background: #f2f2f2;
  border-left: 0;
  text-decoration: none !important;
}

/* Nested lists: remove UL padding so backgrounds stay full-width; indent via link padding */
.sbu-dept-sidenav .sbu-dept-sidenav-list ul {
  padding-left: 0;
  margin: 0;
}

.sbu-dept-sidenav .sbu-dept-sidenav-list ul a {
  padding-left: 3.25rem; /* level 2 */
}

.sbu-dept-sidenav .sbu-dept-sidenav-list ul ul a {
  padding-left: 4.5rem; /* level 3 */
}

.sbu-dept-sidenav .sbu-dept-sidenav-list ul ul ul a {
  padding-left: 5.75rem; /* level 4 */
}

.sbu-dept-sidenav .sbu-dept-sidenav-list ul ul ul ul a {
  padding-left: 7rem; /* level 5 */
}

.sbu-dept-sidenav .sbu-dept-sidenav-list ul ul ul ul ul a {
  padding-left: 8.25rem; /* level 6 */
}

.sbu-dept-sidenav .sbu-dept-sidenav-list ul ul ul ul ul ul a {
  padding-left: 9.5rem; /* level 7 */
}

/* Typography + spacing by depth */
.sbu-dept-sidenav .sbu-dept-sidenav-root > li > a {
  font-size: 1rem;
  text-transform: uppercase;
}

.sbu-dept-sidenav .sbu-dept-sidenav-root > li > .sbu-dept-sidenav-row > a,
.sbu-dept-sidenav .sbu-dept-sidenav-root > li > .sbu-dept-sidenav-row > span {
  font-size: 1rem;
  text-transform: uppercase;
}

.sbu-dept-sidenav .sbu-dept-sidenav-children > li > a {
  font-size: 0.95rem;
  padding-top: 0.45rem;
  padding-bottom: 0.45rem;
}

.sbu-dept-sidenav .sbu-dept-sidenav-children > li > .sbu-dept-sidenav-row > a,
.sbu-dept-sidenav .sbu-dept-sidenav-children > li > .sbu-dept-sidenav-row > span {
  font-size: 0.95rem;
}

.sbu-dept-sidenav .sbu-dept-sidenav-children .sbu-dept-sidenav-children > li > a {
  font-size: 0.92rem;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}

.sbu-dept-sidenav .sbu-dept-sidenav-children .sbu-dept-sidenav-children > li > .sbu-dept-sidenav-row > a,
.sbu-dept-sidenav .sbu-dept-sidenav-children .sbu-dept-sidenav-children > li > .sbu-dept-sidenav-row > span {
  font-size: 0.92rem;
}

/* Bullets for nested items */
.sbu-dept-sidenav .sbu-dept-sidenav-children > li > .sbu-dept-sidenav-row > a::before {
  content: "•";
  position: absolute;
  left: 2.75rem; /* level 2 */
  color: #6b6b6b;
  font-size: 0.8rem;
  line-height: 1;
}

.sbu-dept-sidenav .sbu-dept-sidenav-children .sbu-dept-sidenav-children > li > .sbu-dept-sidenav-row > a::before {
  left: 4rem; /* level 3 */
}

.sbu-dept-sidenav .sbu-dept-sidenav-children .sbu-dept-sidenav-children .sbu-dept-sidenav-children > li > .sbu-dept-sidenav-row > a::before {
  left: 5.25rem; /* level 4 */
}

.sbu-dept-sidenav .sbu-dept-sidenav-children .sbu-dept-sidenav-children .sbu-dept-sidenav-children .sbu-dept-sidenav-children > li > .sbu-dept-sidenav-row > a::before {
  left: 6.5rem; /* level 5 */
}

.sbu-dept-sidenav .sbu-dept-sidenav-children .sbu-dept-sidenav-children .sbu-dept-sidenav-children .sbu-dept-sidenav-children .sbu-dept-sidenav-children > li > .sbu-dept-sidenav-row > a::before {
  left: 7.75rem; /* level 6 */
}

.sbu-dept-sidenav .sbu-dept-sidenav-children .sbu-dept-sidenav-children .sbu-dept-sidenav-children .sbu-dept-sidenav-children .sbu-dept-sidenav-children .sbu-dept-sidenav-children > li > .sbu-dept-sidenav-row > a::before {
  left: 9rem; /* level 7 */
}

.sbu-dept-sidenav .sbu-dept-sidenav-list a:hover::before,
.sbu-dept-sidenav .sbu-dept-sidenav-list a[aria-current=page]::before {
  color: #990000;
}

/* ====== Focus visibility (WCAG 2.2) ====== */
.sbu-dept-sidenav a:focus-visible,
.sbu-dept-main a:focus-visible,
.sbu-dept-main button:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 2px;
}

/* ====== Grid layout (Bootstrap-style example) ====== */
/* Example XSL output:
   <div class="row sbu-dept-layout gx-4 gy-4">
     <aside class="col-lg-3 order-lg-1 order-2 sbu-dept-sidenav">…</aside>
     <main  class="col-lg-9 order-lg-2 order-1 sbu-dept-main sbu-dept-stack">…</main>
   </div>
*/
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
/* ====== Utility spacing classes ====== */
.sbu-dept-mt-0 {
  margin-top: 0 !important;
}

.sbu-dept-mb-0 {
  margin-bottom: 0 !important;
}

.sbu-dept-pt-0 {
  padding-top: 0 !important;
}

.sbu-dept-pb-0 {
  padding-bottom: 0 !important;
}

/* ====== Author note (visible only in edit/preview) ====== */
.author-note {
  border: 1px dashed #999;
  background: #fafafa;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  border-radius: 0.5rem;
}

/* ====== Background helpers for configurable sections ====== */
.sbu-dept-section {
  padding: 2rem 1.5rem;
}

.sbu-dept-bg-white {
  background: #ffffff;
}

.sbu-dept-bg-red {
  background: #990000;
  color: #ffffff;
}

.sbu-dept-bg-pear {
  background: #FCFBE9;
}

.sbu-dept-bg-grey {
  background: #ededed;
}

/* ====== Announcement link styling by background ====== */
/* White, Pear, Grey: black text; links red with underline; on hover, black with black underline */
.sbu-dept-section.sbu-dept-bg-white .sbu-dept-announcement,
.sbu-dept-section.sbu-dept-bg-pear .sbu-dept-announcement,
.sbu-dept-section.sbu-dept-bg-grey .sbu-dept-announcement {
  color: #000;
}

.sbu-dept-section.sbu-dept-bg-white .sbu-dept-announcement a,
.sbu-dept-section.sbu-dept-bg-pear .sbu-dept-announcement a,
.sbu-dept-section.sbu-dept-bg-grey .sbu-dept-announcement a {
  color: #990000;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.sbu-dept-section.sbu-dept-bg-white .sbu-dept-announcement a:hover,
.sbu-dept-section.sbu-dept-bg-white .sbu-dept-announcement a:focus,
.sbu-dept-section.sbu-dept-bg-pear .sbu-dept-announcement a:hover,
.sbu-dept-section.sbu-dept-bg-pear .sbu-dept-announcement a:focus,
.sbu-dept-section.sbu-dept-bg-grey .sbu-dept-announcement a:hover,
.sbu-dept-section.sbu-dept-bg-grey .sbu-dept-announcement a:focus {
  color: #000;
  text-decoration: underline;
  text-decoration-color: currentColor;
}

/* Red: white text; links black with underline; hover removes underline (link stays black) */
.sbu-dept-section.sbu-dept-bg-red .sbu-dept-announcement {
  color: #fff;
}

.sbu-dept-section.sbu-dept-bg-red .sbu-dept-announcement a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: currentColor;
}

.sbu-dept-section.sbu-dept-bg-red .sbu-dept-announcement a:hover,
.sbu-dept-section.sbu-dept-bg-red .sbu-dept-announcement a:focus {
  color: #000;
  text-decoration: underline;
  text-decoration-color: currentColor;
}

/* Departmental breadcrumbs scoped to sbu-dept layout */
.sbu-dept-breadcrumb {
  padding: 16px 0 16px 0;
  color: #000;
}

.sbu-dept-main .section-content-wrapper {
  max-width: 1280px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* Keep full-width departmental breadcrumbs aligned to the 1280 content rail. */
.section-content-wrapper.section-content-wrapper--full.layout--full .sbu-dept-breadcrumb {
  max-width: 1280px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem 1.625rem;
}

.sbu-dept-breadcrumb .breadcrumb {
  margin-bottom: 0;
  background-color: transparent;
  padding: 0;
  font-family: "Barlow Semi Condensed", "Barlow", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 30px;
  --bs-breadcrumb-item-padding-x: 0; /* remove Bootstrap left padding between items */
}

.sbu-dept-breadcrumb .breadcrumb > li {
  /* Override global list typography applied to generic li */
  font-family: "Barlow Semi Condensed", "Barlow", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 30px;
  margin-bottom: 0;
}

.sbu-dept-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  padding: 0 6px;
}

.sbu-dept-breadcrumb .breadcrumb a {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.sbu-dept-breadcrumb .breadcrumb-item.active {
  color: inherit;
  text-decoration: none;
}

.sbu-dept-breadcrumb .breadcrumb a:hover,
.sbu-dept-breadcrumb .breadcrumb a:focus {
  color: #990000;
}

/*!
==========================
 BIG CALLOUT QUOTE
========================== 
*/
.big-callout-quote {
  position: relative;
  overflow: hidden;
  background-color: #D52027;
  background-image: url(../images/departmental-big-callout-bg-vector.svg);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  padding: 3.5rem 0;
}
.big-callout-quote .bcq-inner {
  display: grid;
  grid-template-columns: auto 1px minmax(0, 920px) 1px auto;
  align-items: start;
  column-gap: 2rem;
}
.big-callout-quote .bcq-keyline {
  width: 1px;
  height: 100%;
  min-height: 160px;
  background-color: #FFFFFF;
}
.big-callout-quote .bcq-quote-img {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.big-callout-quote .bcq-quote-img img {
  display: block;
  height: auto;
  width: 84px;
  max-width: 100%;
}
.big-callout-quote .bcq-content {
  text-align: left;
  color: #FFFFFF;
  padding: 0 1rem;
}
.big-callout-quote .bcq-content .bcq-text {
  font-family: "Alumni Sans", sans-serif;
  font-weight: 400;
  font-size: 2.25rem;
  line-height: 1.3;
  margin: 0 0 0.75rem 0;
  overflow-wrap: break-word;
  word-break: break-word;
}
.big-callout-quote .bcq-content .bcq-attribution {
  font-family: "Bitter", serif;
  font-weight: 600;
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.2;
  color: #FFFFFF;
  margin: 0;
}
@media (max-width: 767.98px) {
  .big-callout-quote {
    padding: 2.5rem 0;
  }
  .big-callout-quote .bcq-inner {
    grid-template-columns: 1fr;
    column-gap: 0;
    justify-items: center;
  }
  .big-callout-quote .bcq-keyline {
    display: none;
  }
  .big-callout-quote .bcq-quote-img img {
    width: clamp(48px, 12vw, 80px);
    margin: 30px 0;
  }
  .big-callout-quote .bcq-content {
    padding: 0;
  }
  .big-callout-quote .bcq-content .bcq-text {
    font-size: 1.8125rem;
    line-height: 1.4;
  }
  .big-callout-quote .bcq-content .bcq-attribution {
    font-size: 1.125rem;
  }
}
.big-callout-quote a:focus-visible, .big-callout-quote button:focus-visible {
  outline: 3px solid #FFFFFF;
  outline-offset: 2px;
}

.departmental-carousel-sliding-circle-profiles {
  position: relative;
  overflow: hidden;
  background-image: url(../images/departmental-carousel-sliding-circle-profiles-bg.svg);
  background-size: cover;
  background-position: center;
  padding: 3.5rem 0;
  color: #FFFFFF;
}
.departmental-carousel-sliding-circle-profiles .section-content-wrapper {
  position: relative;
}
.departmental-carousel-sliding-circle-profiles .splide .splide__arrows {
  display: none;
}
.departmental-carousel-sliding-circle-profiles .splide .splide__pagination {
  bottom: -1.5rem;
}
.departmental-carousel-sliding-circle-profiles .splide .splide__pagination li {
  margin: 0 0.375rem;
}
.departmental-carousel-sliding-circle-profiles .splide .splide__pagination button {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  opacity: 1;
}
.departmental-carousel-sliding-circle-profiles .splide .splide__pagination .is-active button {
  background: #FFFFFF;
}
.departmental-carousel-sliding-circle-profiles .splide .splide__slide {
  overflow: hidden;
}
.departmental-carousel-sliding-circle-profiles .dcsp-slide {
  width: 100%;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  column-gap: 2.25rem;
  padding: 1.25rem 2rem;
}
.departmental-carousel-sliding-circle-profiles .dcsp-photo {
  width: clamp(160px, 20vw, 320px);
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid #FFFFFF;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}
.departmental-carousel-sliding-circle-profiles .dcsp-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.departmental-carousel-sliding-circle-profiles .dcsp-content {
  display: grid;
  align-content: start;
  row-gap: 1.25rem;
}
.departmental-carousel-sliding-circle-profiles .dcsp-content .dcsp-chip {
  display: inline-block;
  width: max-content;
  white-space: nowrap;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.1;
  text-transform: none;
  color: #FFFFFF;
  background-color: #1791AD;
  padding: 11px 30px;
  border-radius: 0;
  letter-spacing: 0.02em;
}
.departmental-carousel-sliding-circle-profiles .dcsp-content .dcsp-quote {
  margin: 0;
  padding: 0 0.25rem;
  color: #FFFFFF;
  font-family: "Bitter", serif;
  font-weight: 500;
  font-size: clamp(1rem, 1rem + 0.5vw, 1.25rem);
  line-height: 1.8;
  overflow-wrap: anywhere;
}
.departmental-carousel-sliding-circle-profiles .dcsp-content .dcsp-attribution {
  margin: 0.25rem 0 0 0;
  color: #FFFFFF;
  font-family: "Bitter", serif;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(0.9375rem, 0.875rem + 0.5vw, 1.25rem);
  line-height: 1.2;
}
@media (max-width: 991.98px) {
  .departmental-carousel-sliding-circle-profiles .dcsp-slide {
    column-gap: 1.75rem;
  }
  .departmental-carousel-sliding-circle-profiles .dcsp-content .dcsp-quote-img img {
    width: 72px;
  }
}
@media (max-width: 767.98px) {
  .departmental-carousel-sliding-circle-profiles {
    padding: 2.5rem 0;
  }
  .departmental-carousel-sliding-circle-profiles .dcsp-slide {
    grid-template-columns: 1fr;
    row-gap: 1.5rem;
    justify-items: center;
    text-align: center;
    padding: 1rem;
  }
  .departmental-carousel-sliding-circle-profiles .dcsp-content .dcsp-chip {
    margin: 0 auto;
  }
  .departmental-carousel-sliding-circle-profiles .splide .splide__pagination {
    bottom: -1rem;
  }
}
@media (max-width: 400px) {
  .departmental-carousel-sliding-circle-profiles .dcsp-slide {
    padding: 0.75rem;
  }
  .departmental-carousel-sliding-circle-profiles .dcsp-photo {
    width: 150px;
    border-width: 5px;
  }
  .departmental-carousel-sliding-circle-profiles .dcsp-content .dcsp-chip {
    font-size: 1.25rem;
    padding: 9px 24px;
  }
}
@media (max-width: 360px) {
  .departmental-carousel-sliding-circle-profiles .dcsp-slide {
    padding: 0.5rem;
  }
  .departmental-carousel-sliding-circle-profiles .dcsp-photo {
    width: 140px;
    border-width: 5px;
  }
  .departmental-carousel-sliding-circle-profiles .dcsp-content .dcsp-chip {
    font-size: 1.125rem;
    padding: 8px 20px;
  }
}
.departmental-carousel-sliding-circle-profiles a:focus-visible, .departmental-carousel-sliding-circle-profiles button:focus-visible {
  outline: 3px solid #FFFFFF;
  outline-offset: 2px;
}

/*!
// -----------------------------------------------------------------------------
// Departmental: 3 Column Statements
// -----------------------------------------------------------------------------
*/
.departmental-three-column-statements {
  padding: 0;
}
.departmental-three-column-statements .section-content-wrapper {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
.departmental-three-column-statements .section-content-wrapper > .divider:first-child {
  margin-bottom: 40px;
}
.departmental-three-column-statements .section-content-wrapper > .divider:last-child {
  margin-top: 35px;
}
.departmental-three-column-statements .row {
  align-items: stretch;
}
.departmental-three-column-statements .dcs-item {
  text-align: center;
}
.departmental-three-column-statements .dcs-item__title {
  font-family: "Alumni Sans", sans-serif;
  font-weight: 600;
  font-size: 3.375rem;
  line-height: 3.125rem;
  color: #000000;
  margin: 0 0 0.5rem 0;
}
.departmental-three-column-statements .dcs-item__text {
  font-family: "Bitter", serif;
  font-weight: 500;
  font-size: 1.625rem;
  line-height: 1.625rem;
  color: #990000;
  margin: 0;
  hyphens: auto;
  overflow-wrap: normal;
  word-break: normal;
  hyphenate-limit-chars: 8 3 3;
}
@media (min-width: 768px) {
  .departmental-three-column-statements .col-md-4 {
    display: flex;
  }
  .departmental-three-column-statements .dcs-item {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    width: 100%;
  }
  .departmental-three-column-statements .col-md-4 + .col-md-4 .dcs-item::before {
    content: "";
    position: absolute;
    left: -0.625rem;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #000000;
  }
}
@media (max-width: 767.98px) {
  .departmental-three-column-statements .col-md-4 {
    display: block;
  }
  .departmental-three-column-statements .dcs-item {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }
  .departmental-three-column-statements .dcs-item + .dcs-item,
  .departmental-three-column-statements .col-md-4 + .col-md-4 .dcs-item {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    position: relative;
  }
  .departmental-three-column-statements .dcs-item + .dcs-item::before,
  .departmental-three-column-statements .col-md-4 + .col-md-4 .dcs-item::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background-color: #000000;
  }
}
.departmental-three-column-statements .dcs-item__text,
.departmental-three-column-statements .dcs-item__title {
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  overflow-wrap: break-word;
  word-break: normal;
}

/*!
// -----------------------------------------------------------------------------
// Departmental: Tabbed Info Boxes
// -----------------------------------------------------------------------------
// Requirements:
// - Bootstrap-based tabs with accessible markup
// - Uses 1280px content wrapper via `.section-content-wrapper`
// - Buttons (tabs) stretch to fill width
// - Colors, fonts, and sizes pulled from variables
// -----------------------------------------------------------------------------
*/
.departmental-tabbed-info-boxes {
  padding: 0;
}
.departmental-tabbed-info-boxes .dtib-heading {
  font-family: "Alumni Sans", sans-serif;
  font-weight: 600;
  font-size: 3.375rem;
  line-height: 3.125rem;
  color: #000000;
  margin: 0 0 3.75rem 0;
}
.departmental-tabbed-info-boxes .dtib-tabs {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid #dee2e6;
  display: flex;
  flex-wrap: wrap;
  column-gap: 30px;
  row-gap: 16px;
  border-bottom: 0;
  margin-bottom: 1rem;
}
.departmental-tabbed-info-boxes .dtib-tabs .nav-item {
  flex: 1 1 16rem;
  min-width: max-content;
}
@media (max-width: 575.98px) {
  .departmental-tabbed-info-boxes .dtib-tabs .nav-item {
    flex-basis: 100%;
    min-width: 100%;
  }
}
.departmental-tabbed-info-boxes .dtib-tabs .nav-link {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  margin: 0;
  border-radius: 0;
  padding: 0.5rem 1.5rem;
  font-family: "Bitter", serif;
  font-weight: 500;
  font-size: 1.625rem;
  white-space: normal;
  color: #FFFFFF;
  background-color: #002244;
  border-color: #000000;
  border-style: solid;
  border-width: 1px;
}
.departmental-tabbed-info-boxes .dtib-tabs .nav-link:hover, .departmental-tabbed-info-boxes .dtib-tabs .nav-link.active, .departmental-tabbed-info-boxes .dtib-tabs .nav-link:focus {
  background-color: #1791AD;
  color: #FFFFFF;
  border-color: #000000;
}
@media (min-width: 1280px) {
  .departmental-tabbed-info-boxes .dtib-tabs .nav-link {
    white-space: nowrap;
  }
  .departmental-tabbed-info-boxes .dtib-tabs .nav-item {
    flex: 1 1 16rem;
    min-width: max-content;
  }
}
.departmental-tabbed-info-boxes .dtib-tab-content > .tab-pane {
  display: none;
  opacity: 0;
  transition: opacity 0.15s linear;
}
.departmental-tabbed-info-boxes .dtib-tab-content > .tab-pane.active {
  display: block;
}
.departmental-tabbed-info-boxes .dtib-tab-content > .tab-pane.show {
  opacity: 1;
}
.departmental-tabbed-info-boxes .dtib-tab-content .dtib-panel {
  border: 1px solid #000000;
  background-color: #FFFFFF;
  padding: 3.75rem 5rem;
}
@media (max-width: 575.98px) {
  .departmental-tabbed-info-boxes .dtib-tab-content .dtib-panel {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.departmental-tabbed-info-boxes .dtib-title {
  font-family: "Bitter", serif;
  font-weight: 500;
  font-size: 1.625rem;
  line-height: 1.875rem;
  color: #990000;
  margin: 0 0 0.75rem 0;
}
.departmental-tabbed-info-boxes .dtib-body p {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.875rem;
  color: #000000;
  margin-bottom: 1.5625rem;
}
.departmental-tabbed-info-boxes .dtib-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0;
}
.departmental-tabbed-info-boxes .dtib-actions + .dtib-title {
  margin-top: 2.375rem;
}

/*!
// -----------------------------------------------------------------------------
// Layout context notes:
// - dept-interior.xsl adds layout--full, layout--boxed, layout--sidebar classes.
// - The tabbed snippet uses an inner .section-content-wrapper for full-width pages.
// - In boxed/sidebar layouts, remove inner padding to avoid double spacing.
// -----------------------------------------------------------------------------
*/
.layout--boxed .departmental-tabbed-info-boxes .section-content-wrapper,
.layout--sidebar .departmental-tabbed-info-boxes .section-content-wrapper {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.dtib-demo-controls {
  position: sticky;
  top: 0.5rem;
  z-index: 10;
  display: flex;
  justify-content: center;
  margin: 0 0 1rem 0;
  padding: 0 1rem;
}
@media (max-width: 575.98px) {
  .dtib-demo-controls {
    position: fixed;
    top: 0.5rem;
    left: 0;
    right: 0;
    padding: 0 0.5rem;
  }
}
@media (max-width: 767.98px) {
  .dtib-demo-controls {
    display: none;
  }
}

/*!
// -----------------------------------------------------------------------------
// Departmental: Content Panel Over Background Image
// -----------------------------------------------------------------------------
*/
.dept-content-panel-over-background-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  padding: 2rem 0;
}
.dept-content-panel-over-background-image .section-content-wrapper {
  padding: 2rem 1.625rem;
}

.dept-content-panel-over-background-image__content {
  background: #ffffff;
  padding: 2rem;
}

.dept-content-panel-over-background-image__content > *:last-child {
  margin-bottom: 0;
}

/*!
// -----------------------------------------------------------------------------
// Departmental: Centered 1-Column Section - Advanced
// -----------------------------------------------------------------------------
*/
.dept-centered-1col-advanced {
  position: relative;
  margin: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}

.dept-centered-1col-advanced__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.dept-centered-1col-advanced__content {
  position: relative;
  z-index: 1;
}

.dept-centered-1col-advanced__inner {
  position: relative;
  z-index: 1;
  padding: 30px 0;
}

.dept-centered-1col-advanced--section-boxed {
  max-width: 1280px;
  margin: 0 auto;
}

.dept-centered-1col-advanced--section-boxed .dept-centered-1col-advanced__content.section-content-wrapper {
  max-width: 100%;
}

/* Hook-only variant: emitted by XSL when table has data-content-width="narrow". */
/* Intentionally no default styles; add site-specific rules in site.css if needed. */
.dept-centered-1col-advanced--bg-white {
  background-color: #FFFFFF;
}

.dept-centered-1col-advanced--bg-cream {
  background-color: #F8F2C5;
}

.dept-centered-1col-advanced--bg-red {
  background-color: #990000;
}

.dept-centered-1col-advanced--bg-black {
  background-color: #000000;
}

.dept-centered-1col-advanced--bg-turquoise {
  background-color: #118099;
}

.dept-centered-1col-advanced--bg-navy {
  background-color: #002244;
}

.dept-centered-1col-advanced--bg-grey {
  background-color: #efefef;
}

.dept-centered-1col-advanced--overlay-black-30 .dept-centered-1col-advanced__overlay {
  background: rgba(0, 0, 0, 0.3);
}

.dept-centered-1col-advanced--overlay-black-50 .dept-centered-1col-advanced__overlay {
  background: rgba(0, 0, 0, 0.5);
}

.dept-centered-1col-advanced--overlay-black-70 .dept-centered-1col-advanced__overlay {
  background: rgba(0, 0, 0, 0.7);
}

.dept-centered-1col-advanced--overlay-navy-30 .dept-centered-1col-advanced__overlay {
  background: rgba(0, 34, 68, 0.3);
}

.dept-centered-1col-advanced--overlay-navy-50 .dept-centered-1col-advanced__overlay {
  background: rgba(0, 34, 68, 0.5);
}

.dept-centered-1col-advanced--overlay-navy-70 .dept-centered-1col-advanced__overlay {
  background: rgba(0, 34, 68, 0.7);
}

.dept-centered-1col-advanced--tone-dark .dept-centered-1col-advanced__inner {
  color: #000000;
}

.dept-centered-1col-advanced--tone-dark .dept-centered-1col-advanced__inner :is(h1, h2, h3, h4, h5, h6, p, li) {
  color: #000000;
}

.dept-centered-1col-advanced--tone-dark .dept-centered-1col-advanced__inner a:not(.btn):not(.btn-global):not([class*=btn-global--]) {
  color: #990000;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.dept-centered-1col-advanced--tone-dark .dept-centered-1col-advanced__inner a:not(.btn):not(.btn-global):not([class*=btn-global--]):hover,
.dept-centered-1col-advanced--tone-dark .dept-centered-1col-advanced__inner a:not(.btn):not(.btn-global):not([class*=btn-global--]):focus {
  color: #000000;
}

.dept-centered-1col-advanced--tone-light .dept-centered-1col-advanced__inner {
  color: #FFFFFF;
}

.dept-centered-1col-advanced--tone-light .dept-centered-1col-advanced__inner :is(h1, h2, h3, h4, h5, h6, p, li) {
  color: #FFFFFF;
}

.dept-centered-1col-advanced--tone-light .dept-centered-1col-advanced__inner a:not(.btn):not(.btn-global):not([class*=btn-global--]) {
  color: #FFFFFF;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.dept-centered-1col-advanced--tone-light .dept-centered-1col-advanced__inner a:not(.btn):not(.btn-global):not([class*=btn-global--]):hover,
.dept-centered-1col-advanced--tone-light .dept-centered-1col-advanced__inner a:not(.btn):not(.btn-global):not([class*=btn-global--]):focus {
  color: rgba(255, 255, 255, 0.85);
}

.dept-centered-1col-advanced--tone-dark .dept-centered-1col-advanced__inner :is(a, button, [role=button], .btn):focus-visible {
  outline: 3px solid #000000;
  outline-offset: 2px;
}

.dept-centered-1col-advanced--tone-light .dept-centered-1col-advanced__inner :is(a, button, [role=button], .btn):focus-visible {
  outline: 3px solid #FFFFFF;
  outline-offset: 2px;
}

@media (max-width: 767px) {
  .dept-centered-1col-advanced__inner {
    padding: 1.5rem 0;
  }
}
.layout--boxed .dept-centered-1col-advanced .section-content-wrapper,
.layout--sidebar .dept-centered-1col-advanced .section-content-wrapper {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.layout--boxed .dept-centered-1col-advanced--content-inset .section-content-wrapper,
.layout--sidebar .dept-centered-1col-advanced--content-inset .section-content-wrapper {
  padding-left: 1.625rem;
  padding-right: 1.625rem;
}

/*!
// -----------------------------------------------------------------------------
// Departmental: Zigzag Content + Image
// -----------------------------------------------------------------------------
*/
.dept-zigzag-content-image {
  background: #FFFFFF;
}

.dept-zigzag-content-image--full .section-content-wrapper {
  max-width: none;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.dept-zigzag-content-image__row {
  display: flex;
  align-items: stretch;
}

.dept-zigzag-content-image__row--text-right {
  flex-direction: row-reverse;
}

.dept-zigzag-content-image__content,
.dept-zigzag-content-image__media {
  flex: 1 1 50%;
  min-width: 0;
}

.dept-zigzag-content-image__content {
  background: #FFFFFF;
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.5;
}

.dept-zigzag-content-image__content :is(h1, h2, h3, h4, h5, h6) {
  font-family: "Alumni Sans", sans-serif;
  font-weight: 600;
  font-size: 54px;
  line-height: 50px;
  color: #000000;
}

.dept-zigzag-content-image__content p {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.5;
  color: #000000;
  margin: 0 0 0.75rem 0;
}

.dept-zigzag-content-image__content > *:last-child {
  margin-bottom: 0;
}

.dept-zigzag-content-image__content .btn {
  margin-top: 56px;
  align-self: flex-start;
}

.dept-zigzag-content-image__media {
  position: relative;
  overflow: hidden;
  min-height: 240px;
}

.dept-zigzag-content-image__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dept-zigzag-content-image__media--overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--zigzag-overlay-color);
  pointer-events: none;
}

.dept-zigzag-content-image--color .dept-zigzag-content-image__content {
  color: #FFFFFF;
  text-align: center;
  align-items: center;
}
.dept-zigzag-content-image--color .dept-zigzag-content-image__content a {
  color: #FFFFFF;
}
.dept-zigzag-content-image--color .dept-zigzag-content-image__content :is(h1, h2, h3, h4, h5, h6),
.dept-zigzag-content-image--color .dept-zigzag-content-image__content p {
  color: #FFFFFF;
}
.dept-zigzag-content-image--color .dept-zigzag-content-image__content .btn {
  align-self: center;
}
.dept-zigzag-content-image--color .dept-zigzag-content-image__content > * {
  max-width: 600px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.dept-zigzag-content-image--color.dept-zigzag-content-image--teal {
  /*! MM intent: overlay retained for future reuse; opacity changed 0.8 -> 0.6 -> 0.0 per client request. */
  --zigzag-overlay-color: rgba(0, 34, 68, 0);
}

.dept-zigzag-content-image--color.dept-zigzag-content-image--red {
  /*! MM intent: overlay retained for future reuse; opacity changed 0.8 -> 0.6 -> 0.0 per client request. */
  --zigzag-overlay-color: rgba(73, 0, 0, 0);
}

.dept-zigzag-content-image--color.dept-zigzag-content-image--solid.dept-zigzag-content-image--teal .dept-zigzag-content-image__content {
  background: #1791AD;
}

.dept-zigzag-content-image--color.dept-zigzag-content-image--solid.dept-zigzag-content-image--red .dept-zigzag-content-image__content {
  background: #990000;
}

.dept-zigzag-content-image--color.dept-zigzag-content-image--gradient.dept-zigzag-content-image--teal .dept-zigzag-content-image__content {
  background: linear-gradient(88.65deg, #00549A 0%, #1791AD 99.65%);
}

.dept-zigzag-content-image--color.dept-zigzag-content-image--gradient.dept-zigzag-content-image--red .dept-zigzag-content-image__content {
  background: linear-gradient(269.6deg, #6B000D -0.02%, #990000 45.99%, #D52027 96.5%);
}

@media (max-width: 991px) {
  .dept-zigzag-content-image__row {
    flex-direction: column;
  }
  .dept-zigzag-content-image__media {
    min-height: 200px;
  }
}
/*!
// -----------------------------------------------------------------------------
// Departmental: Sidebar Widgets
// -----------------------------------------------------------------------------
*/
.dept-sidebar-image,
.dept-sidebar-text {
  width: 100%;
}

.dept-sidebar-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.dept-sidebar-image__link {
  display: block;
}

.dept-sidebar-image__link[target=_blank] {
  cursor: url(../images/_blank-hover-icon.png), pointer;
}

.dept-sidebar-image__link[href=""],
.dept-sidebar-image__link[href="#"] {
  cursor: default;
  pointer-events: none;
}

.dept-sidebar-text {
  padding: 1.5rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}

.dept-sidebar-text a:not(.btn):not([class*=btn]):not(.nav-link):not(.dropdown-item) {
  text-decoration: underline;
  text-underline-offset: 0.08em;
}

.dept-sidebar-text a.btn,
.dept-sidebar-text a[class*=btn] {
  text-decoration: underline !important;
  text-underline-offset: 0.08em;
}

.dept-sidebar-text > *:last-child {
  margin-bottom: 0;
}

.dept-sidebar-widget--bg-turquoise {
  background: #118099;
}

.dept-sidebar-widget--bg-navy {
  background: #002244;
}

.dept-sidebar-widget--bg-red {
  background: #990000;
}

.dept-sidebar-widget--bg-white {
  background: #FFFFFF;
}

.dept-sidebar-widget--bg-black {
  background: #000000;
}

.dept-sidebar-image + .dept-sidebar-image,
.dept-sidebar-image + .dept-sidebar-text,
.dept-sidebar-text + .dept-sidebar-image,
.dept-sidebar-text + .dept-sidebar-text {
  margin-top: var(--sbu-dept-gap-y, 2rem);
}

/*!
// -----------------------------------------------------------------------------
// Departmental: People Directory
// -----------------------------------------------------------------------------
// Notes:
// - Tabs are custom JS (no Bootstrap JS dependency).
// - Use BEM-style classes prefixed with dept-faculty-directory. (faculty was legacy naming, people is the new standard)
// - Image shape controlled by modifier: --square (default) / --circle.
// -----------------------------------------------------------------------------
*/
.dept-faculty-directory {
  margin: 0 0 2.5rem;
}
.dept-faculty-directory__dept-bar {
  background: #002244;
  color: #FFFFFF;
  padding: 1rem 0;
  margin: 0 0 1.5rem;
}
.dept-faculty-directory__dept-title {
  font-family: "Bitter", serif;
  font-size: 1.875rem;
  font-weight: 600;
  margin: 0;
}
.dept-faculty-directory__tabs {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0;
  margin: 0;
  padding: 0 0 0 1px;
}
.dept-faculty-directory__tabs::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #E5E5E5;
  pointer-events: none;
  z-index: 0;
}
.dept-faculty-directory__tab {
  appearance: none;
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  border-top: 4px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
  color: #000000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 40px;
  padding: 0 2.25rem;
  text-align: center;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 35px;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.dept-faculty-directory__tab:first-child {
  margin-left: -1px;
}
.dept-faculty-directory__tab + .dept-faculty-directory__tab {
  margin-left: -1px;
}
.dept-faculty-directory__tab[aria-selected=true] {
  color: #000000;
  border-top-color: #990000;
}
.dept-faculty-directory__tab:focus-visible {
  outline: 2px solid #990000;
  outline-offset: 2px;
}
.dept-faculty-directory__panel {
  margin: 0;
  padding-top: 60px;
}
.dept-faculty-directory__group-title {
  font-family: "Alumni Sans", sans-serif;
  font-size: 3.375rem;
  font-style: normal;
  font-weight: 600;
  line-height: 54px;
  color: #990000;
  margin: 0 0 54px;
}
.dept-faculty-directory__grid {
  display: grid;
  gap: 1.75rem 2rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  margin: 0 0 72px;
}
@media (min-width: 768px) {
  .dept-faculty-directory__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 992px) {
  .dept-faculty-directory__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  .dept-faculty-directory__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.dept-faculty-directory__card {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.dept-faculty-directory .dept-faculty-directory__card p {
  margin-bottom: 0;
}
.dept-faculty-directory__image {
  width: 120px;
  height: 120px;
  aspect-ratio: 1/1;
  flex: 0 0 120px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.dept-faculty-directory--circle .dept-faculty-directory__image {
  width: 176px;
  height: 176px;
  flex: 0 0 176px;
  border-radius: 50%;
}
.dept-faculty-directory--square .dept-faculty-directory__image {
  width: 100%;
  height: auto;
  flex: 0 0 auto;
  border-radius: 0;
}
.dept-faculty-directory--square .dept-faculty-directory__profile-link {
  display: flex;
  width: 100%;
}
@media (max-width: 575.98px) {
  .dept-faculty-directory--square .dept-faculty-directory__image {
    max-width: 284px;
  }
}
.dept-faculty-directory__name {
  font-family: "Bitter", serif;
  font-size: 1.3125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  color: #000000;
  margin: 25px 0 0;
}
.dept-faculty-directory__profile-link {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  color: inherit;
  text-decoration: none;
  width: fit-content;
}
.dept-faculty-directory__profile-link:hover .dept-faculty-directory__name, .dept-faculty-directory__profile-link:focus-visible .dept-faculty-directory__name {
  text-decoration: underline;
  text-decoration-color: #990000;
}
.dept-faculty-directory__title {
  font-family: "Bitter", serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 27px;
  color: #000000;
  margin: 0;
}
.dept-faculty-directory__department {
  font-family: "Bitter", serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 27px;
  color: #000000;
  margin: 0.5rem 0 0;
}
.dept-faculty-directory__custom-line {
  font-family: "Bitter", serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 27px;
  color: #000000;
  margin: 0.5rem 0 0;
}
.dept-faculty-directory__custom-line strong {
  font-weight: 600;
}
.dept-faculty-directory__contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0.5rem 0 0;
}
.dept-faculty-directory__contact-link, .dept-faculty-directory__social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: "Bitter", serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 27px;
  text-decoration: none;
}
.dept-faculty-directory__contact-link--email, .dept-faculty-directory__social-link {
  color: #990000;
}
.dept-faculty-directory__social-link {
  margin-top: 0.5rem;
}
.dept-faculty-directory__contact-link--phone {
  color: #990000;
}
.dept-faculty-directory__contact-link:hover, .dept-faculty-directory__contact-link:focus-visible, .dept-faculty-directory__social-link:hover, .dept-faculty-directory__social-link:focus-visible {
  text-decoration: underline;
}
.dept-faculty-directory__icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.dept-faculty-directory__icon svg {
  width: 16px;
  height: 16px;
  display: block;
}
.dept-faculty-directory__link {
  color: #990000;
  font-family: "Bitter", serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 27px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  align-self: flex-start;
  margin-top: 0.5rem;
}
.dept-faculty-directory__link:hover, .dept-faculty-directory__link:focus-visible {
  text-decoration: underline;
}

.layout--boxed .dept-faculty-directory .section-content-wrapper,
.layout--sidebar .dept-faculty-directory .section-content-wrapper {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 575.98px) {
  .layout--boxed .dept-faculty-directory .section-content-wrapper,
  .layout--sidebar .dept-faculty-directory .section-content-wrapper {
    padding-left: 1.625rem;
    padding-right: 1.625rem;
  }
}

/*!
// -----------------------------------------------------------------------------
// Departmental: People Profile
// -----------------------------------------------------------------------------
// Snippet hook: table[data-snippet='ou-dept-people-profile']
// -----------------------------------------------------------------------------
*/
.dept-people-profile {
  margin: 0 0 2.5rem;
}
.dept-people-profile__intro {
  align-items: flex-start;
  margin: 0 0 2rem;
}
.dept-people-profile__details {
  min-width: 0;
  padding-left: 0;
  padding-right: 0;
}
.dept-people-profile__name {
  color: #000000;
  font-family: "Bitter", serif;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 0.75rem;
}
@media (max-width: 767.98px) {
  .dept-people-profile__name {
    font-size: 2rem;
  }
}
.dept-people-profile__title {
  color: #000000;
  font-family: "Bitter", serif;
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.35;
  margin: 0;
}
.dept-people-profile__department {
  color: #990000;
  font-family: "Bitter", serif;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.35;
  margin: 0.375rem 0 0;
}
.dept-people-profile__custom-line {
  color: #000000;
  font-family: "Bitter", serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  margin: 0.5rem 0 0;
}
.dept-people-profile__custom-line strong {
  font-weight: 600;
}
.dept-people-profile__contact {
  display: grid;
  gap: 0.5rem;
  list-style: none !important;
  margin: 1rem 0 0;
  margin-left: 0;
  padding: 0 !important;
}
.dept-people-profile__contact-item {
  list-style: none !important;
  margin: 0;
  padding: 0;
}
.dept-people-profile__contact-item::before, .dept-people-profile__contact-item::marker {
  content: none !important;
  display: none !important;
}
.dept-people-profile__contact-link {
  align-items: center;
  color: #000000;
  display: inline-flex;
  font-family: "Bitter", serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  gap: 0.35rem;
  line-height: 1.4;
  text-decoration: none;
  text-underline-offset: 0.12em;
}
.dept-people-profile__contact-link:hover, .dept-people-profile__contact-link:focus-visible {
  text-decoration: underline;
}
.dept-people-profile__contact-link--email, .dept-people-profile__contact-link--linkedin {
  color: #990000;
}
.dept-people-profile__icon {
  align-items: center;
  display: inline-flex;
  flex: 0 0 16px;
  height: 16px;
  justify-content: center;
  width: 16px;
}
.dept-people-profile__icon svg {
  display: block;
  height: 16px;
  width: 16px;
}
.dept-people-profile__media {
  display: flex;
  justify-content: flex-start;
  padding-left: 0;
  padding-right: 0;
}
.dept-people-profile__image {
  display: block;
  height: auto;
  max-height: 250px;
  max-width: 100%;
  width: auto;
}
.dept-people-profile__content {
  min-width: 0;
  padding-left: 0;
  padding-right: 0;
}
.dept-people-profile__content > *:first-child {
  margin-top: 0;
}
.dept-people-profile__content > *:last-child {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .dept-people-profile__media {
    justify-content: flex-end;
  }
}

/*!
// -----------------------------------------------------------------------------
// Departmental: Video Container
// -----------------------------------------------------------------------------
// Responsive video wrapper for YouTube/Vimeo iframes.
// -----------------------------------------------------------------------------
*/
.dept-video-container {
  padding: 0;
}
.dept-video-container .dept-video-container__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background-color: #000000;
  overflow: hidden;
}
.dept-video-container .dept-video-container__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.layout--boxed .dept-video-container .section-content-wrapper,
.layout--sidebar .dept-video-container .section-content-wrapper {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.dept-video-hero {
  width: 100%;
  margin: 0;
}

.dept-video-hero__frame {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  background: #000;
}

.dept-video-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.dept-video-hero__toggle {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.dept-video-hero__toggle:hover {
  background: rgba(0, 0, 0, 0.75);
}

.dept-video-hero__toggle:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.dept-video-hero__toggle:active {
  transform: translateY(1px);
}

.dept-video-hero__icon {
  display: inline-flex;
}

.dept-video-hero__icon svg {
  display: block;
}

/*!
// -----------------------------------------------------------------------------
// Departmental: Dept Hero
// -----------------------------------------------------------------------------
// Hero variant styles (styles 1-10).
// Structural visibility and a11y gating are handled in components.xsl.
// -----------------------------------------------------------------------------
*/
.dept-hero {
  position: relative;
  overflow: hidden;
  background-color: #990000;
}

.dept-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.dept-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dept-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 280px;
  max-width: 1790px;
  margin: 0 auto;
  width: 100%;
}

.dept-hero__content-inner {
  max-width: 620px;
  padding: 32px 40px;
  background: #002244;
  color: #FFFFFF;
}

.dept-hero__text {
  display: inline-block;
}

.dept-hero__subhead:empty {
  display: none;
}

.dept-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  padding: 0;
  list-style: none;
}

.dept-hero__buttons > .dept-hero__button-item {
  margin: 0;
  padding: 0;
  list-style: none !important;
}

.dept-hero__buttons > .dept-hero__button-item::marker {
  content: none;
}

.dept-hero__heading {
  font-family: "Alumni Sans", "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0 0 12px;
}

.dept-hero__subhead {
  font-family: "Bitter", "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  color: #FFFFFF;
  margin: 0;
}

.dept-hero__button {
  font-family: "Alumni Sans", "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
}

.dept-hero--short-left .dept-hero__content,
.dept-hero--short-center .dept-hero__content,
.dept-hero--short-right .dept-hero__content {
  min-height: 240px;
}

.dept-hero--tall-left .dept-hero__content,
.dept-hero--tall-center .dept-hero__content,
.dept-hero--tall-right .dept-hero__content {
  min-height: 520px;
}

.dept-hero--short-left .dept-hero__content,
.dept-hero--tall-left .dept-hero__content {
  justify-content: flex-start;
}

.dept-hero--short-right .dept-hero__content,
.dept-hero--tall-right .dept-hero__content {
  justify-content: flex-end;
  padding-left: unset;
  padding-right: 10rem;
}

.dept-hero--short-center .dept-hero__content,
.dept-hero--tall-center .dept-hero__content {
  justify-content: center;
}

.dept-hero--short-center .dept-hero__content-inner,
.dept-hero--tall-center .dept-hero__content-inner {
  text-align: center;
}

.dept-hero__buttons a:empty,
.dept-hero__buttons a[href=""],
.dept-hero__buttons a[href="#"] {
  display: none;
}

@media (max-width: 991px) {
  .dept-hero__content {
    min-height: 0;
    padding: 24px;
  }
  .dept-hero__content-inner {
    width: 100%;
    max-width: none;
  }
  .dept-hero--style-5 .dept-hero__content-inner {
    border: none;
  }
  .dept-hero--tall-left .dept-hero__content {
    min-height: 420px;
  }
}
/* Variant styling — mapped to the 10 designs */
.dept-hero--style-1 .dept-hero__content-inner,
.dept-hero--style-6 .dept-hero__content-inner {
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.dept-hero--style-1 .dept-hero__text,
.dept-hero--style-6 .dept-hero__text,
.dept-hero--style-1 .dept-hero__buttons,
.dept-hero--style-6 .dept-hero__buttons {
  display: none;
}

.dept-hero--style-2 .dept-hero__buttons,
.dept-hero--style-3 .dept-hero__buttons,
.dept-hero--style-5 .dept-hero__buttons,
.dept-hero--style-4 .dept-hero__subhead,
.dept-hero--style-4 .dept-hero__buttons {
  display: none;
}

.dept-hero--style-3 .dept-hero__subhead {
  display: none;
}

.dept-hero--style-1 .dept-hero__content-inner > *:not(.dept-hero__buttons) {
  margin: 0;
}

.dept-hero--style-1 .dept-hero__media img {
  object-position: center 50%;
}

.dept-hero--style-2 .dept-hero__heading,
.dept-hero--style-3 .dept-hero__heading,
.dept-hero--style-5 .dept-hero__heading,
.dept-hero--style-8 .dept-hero__heading,
.dept-hero--style-9 .dept-hero__heading,
.dept-hero--style-10 .dept-hero__heading {
  font-size: 50px;
  line-height: 50px;
}

.dept-hero--style-2 .dept-hero__subhead,
.dept-hero--style-5 .dept-hero__subhead,
.dept-hero--style-8 .dept-hero__subhead,
.dept-hero--style-9 .dept-hero__subhead {
  font-size: 20px;
  line-height: 28px;
}

.dept-hero--style-4 .dept-hero__heading {
  font-weight: 500;
  font-size: 50px;
  line-height: 40px;
}

.dept-hero--style-7 .dept-hero__heading {
  font-size: 70px;
  line-height: 66px;
}

.dept-hero--style-7 .dept-hero__subhead {
  font-size: 24px;
  line-height: 36px;
}

.dept-hero--style-8 .dept-hero__button,
.dept-hero--style-7 .dept-hero__button,
.dept-hero--style-9 .dept-hero__button {
  font-size: 24px;
  line-height: 40px;
}

.dept-hero--style-10 .dept-hero__subhead {
  font-size: 24px;
  line-height: 30px;
}

.dept-hero--style-10 .dept-hero__button {
  font-size: 22px;
  line-height: 40px;
}

@media (max-width: 576px) {
  .dept-hero--style-2 .dept-hero__heading,
  .dept-hero--style-3 .dept-hero__heading,
  .dept-hero--style-5 .dept-hero__heading,
  .dept-hero--style-8 .dept-hero__heading,
  .dept-hero--style-9 .dept-hero__heading,
  .dept-hero--style-10 .dept-hero__heading,
  .dept-hero--style-4 .dept-hero__heading {
    font-size: 40px;
    line-height: 40px;
  }
  .dept-hero--style-7 .dept-hero__heading {
    font-size: 56px;
    line-height: 53px;
  }
  .dept-hero--style-2 .dept-hero__subhead,
  .dept-hero--style-5 .dept-hero__subhead,
  .dept-hero--style-8 .dept-hero__subhead,
  .dept-hero--style-9 .dept-hero__subhead {
    font-size: 16px;
    line-height: 22px;
  }
  .dept-hero--style-7 .dept-hero__subhead {
    font-size: 19.2px;
    line-height: 28.8px;
  }
  .dept-hero--style-10 .dept-hero__subhead {
    font-size: 19.2px;
    line-height: 40px;
  }
  .dept-hero--style-8 .dept-hero__button,
  .dept-hero--style-7 .dept-hero__button,
  .dept-hero--style-9 .dept-hero__button {
    font-size: 19.2px;
    line-height: 32px;
  }
  .dept-hero--style-10 .dept-hero__button {
    font-size: 17.6px;
    line-height: 32px;
  }
}
.dept-hero--style-2 .dept-hero__content-inner,
.dept-hero--style-3 .dept-hero__content-inner,
.dept-hero--style-5 .dept-hero__content-inner,
.dept-hero--style-7 .dept-hero__content-inner {
  background: #002244;
  border: 1px solid #FFFFFF;
  position: relative;
}

.dept-hero--style-2 .dept-hero__text,
.dept-hero--style-3 .dept-hero__text {
  border-left: 4px solid #990000;
  padding-left: 20px;
}

.dept-hero--style-2 .dept-hero__content-inner {
  border: none;
}

.dept-hero--style-3 .dept-hero__content-inner {
  border: none;
}

.dept-hero--style-5 .dept-hero__content-inner {
  border-top: none;
  border-bottom: none;
}

.dept-hero--style-7 .dept-hero__content-inner {
  border: none;
}

@media (max-width: 991px) {
  .dept-hero--style-5 .dept-hero__content-inner {
    border: none;
  }
}
.dept-hero--style-2 .dept-hero__content,
.dept-hero--style-3 .dept-hero__content,
.dept-hero--style-5 .dept-hero__content,
.dept-hero--style-7 .dept-hero__content {
  --hero-left-fill: 6rem;
  padding-left: 6rem;
  align-items: stretch;
  position: relative;
}

.dept-hero--style-8 .dept-hero__content {
  --hero-left-fill: 10rem;
  padding-left: 10rem;
  align-items: stretch;
  position: relative;
}

.dept-hero--style-9 .dept-hero__content {
  --hero-left-fill: 10rem;
  padding-left: 10rem;
  align-items: stretch;
  position: relative;
}

.dept-hero--style-2 .dept-hero__content-inner,
.dept-hero--style-3 .dept-hero__content-inner,
.dept-hero--style-5 .dept-hero__content-inner,
.dept-hero--style-7 .dept-hero__content-inner {
  padding-left: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
}

.dept-hero--style-2 .dept-hero__content::before,
.dept-hero--style-3 .dept-hero__content::before {
  content: "";
  position: absolute;
  left: calc(-1 * (50vw - 50%));
  top: 0;
  bottom: 0;
  width: calc(50vw - 50% + var(--hero-left-fill));
  background-color: #002244;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
  background-image: url(../images/dept-hero-prism-blue.png);
  z-index: 0;
}

@media (max-width: 991px) {
  .dept-hero--style-2 .dept-hero__content,
  .dept-hero--style-3 .dept-hero__content,
  .dept-hero--style-5 .dept-hero__content,
  .dept-hero--style-7 .dept-hero__content {
    --hero-left-fill: 0;
    padding-left: 0;
  }
  .dept-hero--style-8 .dept-hero__content {
    --hero-left-fill: 0;
    padding-left: 0;
  }
  .dept-hero--style-9 .dept-hero__content {
    --hero-left-fill: 0;
    padding-left: 0;
  }
  .dept-hero--style-2 .dept-hero__content::before,
  .dept-hero--style-3 .dept-hero__content::before {
    display: none;
  }
}
.dept-hero--style-2 .dept-hero__content-inner,
.dept-hero--style-3 .dept-hero__content-inner,
.dept-hero--style-5 .dept-hero__content-inner,
.dept-hero--style-7 .dept-hero__content-inner {
  position: relative;
  z-index: 1;
}

.dept-hero--style-2 .dept-hero__heading,
.dept-hero--style-2 .dept-hero__subhead,
.dept-hero--style-3 .dept-hero__heading,
.dept-hero--style-5 .dept-hero__heading,
.dept-hero--style-5 .dept-hero__subhead {
  max-width: 360px;
}

.dept-hero--style-5 .dept-hero__content::before,
.dept-hero--style-7 .dept-hero__content::before {
  content: "";
  position: absolute;
  left: calc(-1 * (50vw - 50%));
  top: 0;
  bottom: 0;
  width: calc(50vw - 50% + var(--hero-left-fill));
  background-color: #002244;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
  background-image: url(../images/dept-hero-prisms.jpg);
  z-index: 0;
}

@media (max-width: 991px) {
  .dept-hero--style-5 .dept-hero__content::before,
  .dept-hero--style-7 .dept-hero__content::before {
    display: none;
  }
}
.dept-hero--style-4 .dept-hero__content-inner {
  background: #002244;
  border: 1px solid #FFFFFF;
  text-align: center;
  max-width: 720px;
}

.dept-hero--style-4 .dept-hero__content-inner {
  padding: 32px 40px 22px;
}

.dept-hero--style-7 .dept-hero__button,
.dept-hero--style-8 .dept-hero__button,
.dept-hero--style-9 .dept-hero__button,
.dept-hero--style-10 .dept-hero__button {
  border: 1px solid #FFFFFF;
}

.dept-hero--style-7 .dept-hero__button-item:nth-child(n+2),
.dept-hero--style-8 .dept-hero__button-item:nth-child(n+2),
.dept-hero--style-9 .dept-hero__button-item:nth-child(n+2) {
  display: none;
}

.dept-hero--style-8 .dept-hero__content-inner {
  background: #002244;
  border: 1px solid #FFFFFF;
  max-width: 500px;
  margin: 80px 40px;
  padding: 40px 60px;
}

@media (max-width: 991px) {
  .dept-hero--style-8 .dept-hero__content-inner {
    margin: 80px 0;
    border-left: none;
  }
}
@media (max-width: 576px) {
  .dept-hero--style-8 .dept-hero__content-inner {
    margin: 20px 0;
  }
}
.dept-hero--style-7 .dept-hero__buttons,
.dept-hero--style-8 .dept-hero__buttons,
.dept-hero--style-9 .dept-hero__buttons,
.dept-hero--style-10 .dept-hero__buttons {
  margin-top: 26px;
}

.dept-hero--style-7 .dept-hero__button,
.dept-hero--style-8 .dept-hero__button,
.dept-hero--style-9 .dept-hero__button,
.dept-hero--style-10 .dept-hero__button {
  line-height: 24px;
  padding: 8px 22px;
}

.dept-hero--style-9 .dept-hero__content-inner {
  background: #FFFFFF;
  color: #000000;
  border: 1px solid #990000;
  max-width: 500px;
  margin: 80px 40px;
  padding: 40px 60px;
}

.dept-hero--style-9 .dept-hero__heading,
.dept-hero--style-9 .dept-hero__subhead {
  color: #000000;
}

@media (max-width: 991px) {
  .dept-hero--style-9 .dept-hero__content-inner {
    margin: 80px 0;
    border-left: none;
  }
}
@media (max-width: 576px) {
  .dept-hero--style-9 .dept-hero__content-inner {
    margin: 20px 0;
  }
}
.dept-hero--style-10 .dept-hero__content-inner {
  background: transparent;
  text-align: center;
  max-width: 900px;
}

.dept-hero--style-10 .dept-hero__buttons {
  justify-content: center;
  gap: 30px;
}

.dept-hero--style-10 .dept-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

/*!
==========================
 DEPARTMENT EVENTS CARDS
==========================
*/
.dept-events-only {
  background-color: #990000;
  background-image: url(../images/hp-calendar-bg.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #FFFFFF;
  padding: 84px 0;
  margin-bottom: 60px;
}
.dept-events-only .container-fluid {
  max-width: 1596px;
  padding-left: 1.625rem;
  padding-right: 1.625rem;
}
.dept-events-only .calendar-section__header {
  margin-bottom: 64px;
}
.dept-events-only .calendar-section__header .calendar_heading {
  color: #FFFFFF;
  font-family: "Alumni Sans", sans-serif;
  font-size: 80px;
  font-weight: 700;
  line-height: 74px;
  text-align: center;
  text-transform: none;
  margin-bottom: 16px;
}
.dept-events-only .calendar-section__header .calendar_subheading {
  color: #FFFFFF;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 46px;
  font-weight: 500;
  line-height: 45px;
  text-align: center;
  text-transform: none;
  margin-bottom: 0;
}
.dept-events-only .calendar-section__events-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.dept-events-only .calendar-section__events-item {
  align-items: flex-start;
  display: flex;
  margin: 0;
}
.dept-events-only .calendar-section__events-item .date {
  margin-right: 15px;
  min-width: 50px;
  padding-bottom: 6px;
  padding-right: 5px;
  position: relative;
  text-align: center;
}
.dept-events-only .calendar-section__events-item .date::after {
  background-color: #FFFFFF;
  content: "";
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
}
.dept-events-only .calendar-section__events-item .date::before {
  background-color: #FFFFFF;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  width: 100%;
}
.dept-events-only .calendar-section__events-item .date .day {
  color: #FFFFFF;
  font-family: "Alumni Sans", sans-serif;
  font-size: 47px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 5px;
}
.dept-events-only .calendar-section__events-item .date .month {
  color: #FFFFFF;
  font-family: "Alumni Sans", sans-serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 30px;
  text-transform: uppercase;
}
.dept-events-only .calendar-section__events-item .content {
  flex: 1;
  padding-bottom: 15px;
}
.dept-events-only .calendar-section__events-item .content p {
  color: #FFFFFF;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 22px;
  margin-bottom: 0;
  margin-top: -5px;
}
.dept-events-only .calendar-section__events-item .content a {
  color: inherit;
  text-decoration-color: rgba(255, 255, 255, 0.75);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.dept-events-only .calendar-section__events-item .content a:hover {
  text-decoration-color: #FFFFFF;
}
.dept-events-only .calendar-section__events-item .content a:focus-visible {
  outline: 2px solid #FFFFFF;
  outline-offset: 2px;
}
.dept-events-only .calendar-section__events-col--left {
  padding-left: 64px;
}
.dept-events-only .calendar-section__events-col--right {
  padding-left: 28px;
}
.dept-events-only .calendar-section__buttons {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 32px;
  width: 100%;
}
.dept-events-only .calendar-section__buttons .btn {
  height: 48px;
  width: 180px;
}

@media (max-width: 1199.98px) {
  .dept-events-only .calendar-section__events-col--left {
    padding-left: 28px;
  }
  .dept-events-only .calendar-section__events-col--right {
    padding-left: 20px;
  }
}
@media (max-width: 767.98px) {
  .dept-events-only {
    background-attachment: scroll;
  }
  .dept-events-only .calendar-section__header {
    margin-bottom: 48px;
  }
  .dept-events-only .calendar-section__header .calendar_heading {
    font-size: 50px;
    line-height: 45px;
  }
  .dept-events-only .calendar-section__header .calendar_subheading {
    font-size: 32px;
    line-height: 30px;
  }
  .dept-events-only .calendar-section__events .col-6 {
    width: 100%;
  }
  .dept-events-only .calendar-section__events-col--left,
  .dept-events-only .calendar-section__events-col--right {
    padding-left: 0;
    padding-right: 0;
  }
  .dept-events-only .calendar-section__events-col--right {
    margin-top: 20px;
  }
}
/*!
// -----------------------------------------------------------------------------
// Departmental: Responsive Tables (snippet: ou-dept-table)
// -----------------------------------------------------------------------------
// - Header/first-col colors set via data-variant and data-firstcol
// - Row styling via data-style (zebra, solid-gray, solid-white)
// - Mobile stacks cells with data-labels populated by JS
*/
.dept-table {
  --dt-header-bg: #00549A;
  --dt-header-text: #FFFFFF;
  --dt-firstcol-bg: #E6EEFB;
  --dt-body-bg: #FFFFFF;
  --dt-zebra-bg: #F2F2F2;
  margin: 1.5rem 0;
  color: #000000;
  overflow-x: auto;
  font-family: "Barlow Semi Condensed", sans-serif;
}

.dept-table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--dt-body-bg);
}

.dept-table caption {
  text-align: left;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #000000;
}

.dept-table th,
.dept-table td {
  padding: 0.875rem 1rem;
  vertical-align: top;
}

.dept-table thead th {
  background: var(--dt-header-bg);
  color: var(--dt-header-text);
  font-weight: 700;
  font-size: 1.3rem;
}

.dept-table tbody tr {
  background: var(--dt-body-bg);
}

.dept-table[data-style=zebra] tbody tr:nth-child(even) {
  background: var(--dt-zebra-bg);
}

.dept-table[data-style=solid-gray] {
  --dt-body-bg: #F2F2F2;
}

.dept-table[data-style=solid-white] {
  --dt-body-bg: #FFFFFF;
}

.dept-table[data-firstcol=accent] tbody td:first-child,
.dept-table[data-firstcol=accent] tbody th:first-child {
  background: var(--dt-firstcol-bg);
  font-weight: 600;
  color: #000000;
  border-bottom: 1px solid var(--bs-gray-500);
  font-size: 1.2rem;
}

.dept-table[data-firstcol=accent] tbody tr:nth-child(even) td:first-child,
.dept-table[data-firstcol=accent] tbody tr:nth-child(even) th:first-child {
  background: var(--dt-firstcol-bg);
}

.dept-table[data-variant=royal-blue] {
  --dt-header-bg: #00549A;
  --dt-header-text: #FFFFFF;
  --dt-firstcol-bg: #E6EEFB;
}

.dept-table[data-variant=turquoise] {
  --dt-header-bg: #1791AD;
  --dt-header-text: #FFFFFF;
  --dt-firstcol-bg: #E9F4F8;
}

.dept-table[data-variant=forest-green] {
  --dt-header-bg: #0F3B3A;
  --dt-header-text: #FFFFFF;
  --dt-firstcol-bg: #E7EDED;
}

.dept-table[data-variant=pear] {
  --dt-header-bg: #F1EA86;
  --dt-header-text: #000000;
  --dt-firstcol-bg: #FAF9DB;
}

.dept-table[data-variant=celery] {
  --dt-header-bg: #BCCF9D;
  --dt-header-text: #000000;
  --dt-firstcol-bg: #EAF0E2;
}

@media (max-width: 767.98px) {
  .dept-table table,
  .dept-table thead,
  .dept-table tbody,
  .dept-table th,
  .dept-table td,
  .dept-table tr {
    display: block;
  }
  .dept-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    border: 0;
  }
  .dept-table tbody tr {
    margin-bottom: 1rem;
  }
  .dept-table td {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
  }
  .dept-table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: #000000;
    min-width: 40%;
  }
}
/*!
// Departmental Component: Flip Cards Single Centered - 1_Cards - Flip Cards Single Centered
*/
.dept-flip-cards-single-centered.dept-flip-cards-single-centered--bg-prisms .dept-flip-cards-single-centered__bg {
  background-image: url(../images/flip-card-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.section-content-wrapper.dept-flip-cards-single-centered__header-section {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.section-content-wrapper.dept-flip-cards-single-centered__cards-section {
  padding-top: 100px;
  padding-bottom: 100px;
  margin-top: 0;
  margin-bottom: 0;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.dept-flip-cards-single-centered--header-standard .section-content-wrapper.dept-flip-cards-single-centered__cards-section {
  padding-top: 10px;
  padding-bottom: 68px;
  margin-top: 0;
  margin-bottom: 0;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.dept-flip-cards-single-centered__row-wrapper {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 1199.98px) and (min-width: 576px) {
  .dept-flip-cards-single-centered__row-wrapper {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (max-width: 575.98px) and (min-width: 480px) {
  .dept-flip-cards-single-centered__row-wrapper {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (max-width: 479.98px) and (min-width: 375px) {
  .dept-flip-cards-single-centered__row-wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (max-width: 374.98px) {
  .dept-flip-cards-single-centered__row-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}

.dept-flip-cards-single-centered__heading {
  text-align: center;
  margin-bottom: 2rem;
}

.dept-flip-cards-single-centered__title {
  font-family: "Alumni Sans", sans-serif;
  font-size: 3.375rem;
  font-weight: 700;
  line-height: 1;
  margin-top: 4.25rem;
  margin-bottom: 0.5rem;
}

.dept-flip-cards-single-centered__subtitle {
  font-family: "Bitter", serif;
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 1.4;
  color: #990000;
  margin-bottom: 1.5rem;
}

.dept-flip-cards-single-centered__title-bar {
  width: 100%;
  background: #990000;
  text-align: center;
  margin: 0;
  padding: 0.75em 0;
}

.dept-flip-cards-single-centered__title-bar-title {
  font-family: "Bitter", serif;
  font-size: 1.625rem;
  line-height: 1.4;
  color: #FFFFFF;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
  line-height: 1;
}

.dept-flip-card {
  aspect-ratio: 3/4;
  width: 100%;
  height: 404px;
  background-color: transparent;
  perspective: 1000px;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.dept-flip-card:focus-visible {
  outline: 3px solid #1791AD;
  outline-offset: 4px;
}

.dept-flip-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.4, 0.2, 0.2, 1);
  transform-style: preserve-3d;
  transform: rotateY(0deg);
  border: 8px solid #990000;
}

.dept-flip-card__inner.is-flipped {
  transform: rotateY(180deg);
}

.dept-flip-card:hover .dept-flip-card__inner,
.dept-flip-card:focus .dept-flip-card__inner,
.dept-flip-card:focus-within .dept-flip-card__inner {
  transform: rotateY(180deg);
}

.dept-flip-card__front,
.dept-flip-card__back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border: 8px solid #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: center;
  overflow: hidden;
}

.dept-flip-card__front {
  background-size: cover;
  background-position: center;
  padding-bottom: 56px;
}

.dept-flip-card__front-title {
  background: #990000;
  color: #FFFFFF;
  font-family: "Alumni Sans", sans-serif;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 0.8;
  text-align: center;
  padding: 1rem;
  margin: 0;
  border-top: 1px solid #FFFFFF;
  border-bottom: 1px solid #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dept-flip-card__back {
  position: relative;
  background-color: #00243c;
  transform: rotateY(180deg);
  padding: 2rem 1.75rem 3rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.dept-flip-card__back-title {
  color: #FFFFFF;
  font-family: "Alumni Sans", sans-serif;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 0.8;
  text-align: center;
  width: 100%;
  margin-top: 0;
  margin-bottom: 1.25rem;
}

.dept-flip-card__desc {
  color: #FFFFFF;
  font-family: "Barlow", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  text-align: left;
  width: 100%;
}

.dept-flip-card__desc:empty {
  display: none;
}

.dept-flip-card__btn {
  display: inline-block;
  padding: 8px 32px;
  color: #FFFFFF;
  background-color: #118099;
  font-family: "Alumni Sans", sans-serif;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 0.95;
  text-transform: uppercase;
  text-align: left;
  border: 1px solid #FFFFFF;
  text-decoration: none;
  border-radius: 0;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  margin-top: auto;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
  align-self: flex-start;
}

.dept-flip-card__btn:hover,
.dept-flip-card__btn:focus {
  background: #FFFFFF;
  color: #118099;
}

.dept-flip-card__prism {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 90px;
  height: auto;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  display: block;
}

@media (max-width: 575.98px) {
  .dept-flip-cards-single-centered__title {
    font-size: 2.125rem;
    line-height: 0.95;
  }
  .dept-flip-cards-single-centered__subtitle {
    font-size: 2.1875rem;
    line-height: 0.95;
  }
  .dept-flip-cards-single-centered__title-bar-title {
    font-size: 2.25rem;
    line-height: 0.9;
  }
}
@media (prefers-reduced-motion: reduce) {
  .dept-flip-card__inner {
    transition: none;
  }
}
.dept-contact-info-cards__card {
  display: flow-root;
}
.dept-contact-info-cards__card-title {
  color: #990000;
  font-family: "Bitter", "Times New Roman", serif;
  font-size: 1.9em;
}
.dept-contact-info-cards__description {
  display: block;
}
.dept-contact-info-cards__description > span {
  display: inline;
}
.dept-contact-info-cards__description span[style*="float:left"],
.dept-contact-info-cards__description span[style*="float: left"],
.dept-contact-info-cards__description img[style*="float:left"],
.dept-contact-info-cards__description img[style*="float: left"] {
  float: left !important;
  margin: 0 1rem 0.75rem 0 !important;
}
.dept-contact-info-cards__description span[style*="float:right"],
.dept-contact-info-cards__description span[style*="float: right"],
.dept-contact-info-cards__description img[style*="float:right"],
.dept-contact-info-cards__description img[style*="float: right"] {
  float: right !important;
  margin: 0 0 0.75rem 1rem !important;
}
.dept-contact-info-cards__description img {
  height: auto !important;
  max-width: 100%;
}
.dept-contact-info-cards__description p,
.dept-contact-info-cards__description ul {
  font-size: 1.3em;
  font-weight: 400;
  font-family: "Barlow Semi Condensed", sans-serif;
}
.dept-contact-info-cards__contact-list {
  font-size: 1.3em;
  font-weight: 400;
  font-family: "Barlow Semi Condensed", sans-serif;
}
.dept-contact-info-cards__button {
  background-color: #990000;
  color: #fff;
  font-family: "Alumni Sans", sans-serif;
  font-size: 1.3em;
  letter-spacing: 0.04em;
  padding: 10px 25px;
  text-decoration: none;
}
.dept-contact-info-cards__button:hover, .dept-contact-info-cards__button:focus-visible {
  background-color: #000;
  color: #fff;
  text-decoration: none;
}

/*!
// -----------------------------------------------------------------------------
// Departmental: Alert Banner Visibility
// -----------------------------------------------------------------------------
// Overrides for alert banner visibility (sb-main.css hides by default)
// Only applied when the departmental header injects the banner markup.
*/
.dept-header .sb-alert-banner,
.dept-header .sb-announcement-banner {
  display: block;
}

/* Banner renders outside of .dept-header; ensure it’s shown */
.dept-header ~ .sb-alert-banner,
.dept-header ~ .sb-announcement-banner {
  display: block;
}

/* Ticket 271125: Remove extra whitespace */
.section-content-wrapper {
  padding: 0rem 1.625rem;
}

.section-content-wrapper p {
  margin-bottom: 0.75rem;
}

/*!
// -----------------------------------------------------------------------------
// Departmental: A-Z keyword Directory
// -----------------------------------------------------------------------------
*/
.az-index .az-alpha-toolbar {
  justify-content: space-around;
}

.az-list {
  margin-top: 2em;
}

.az-section {
  margin-bottom: 3em;
}

.az-index-text {
  text-align: left;
  font-size: 1.75rem;
  color: #003366;
  margin: 1.5em auto;
  width: 80%;
  max-width: 1200px;
  border-bottom: 2px solid #ccc;
  padding-bottom: 0.25em;
  padding-left: 50px;
  display: block;
  font-weight: bolder;
}

.az-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: flex-start;
}

.az-title {
  font-weight: bold;
  font-size: 1.1em;
  display: block;
  margin-bottom: 0.5em;
}

.az-desc {
  font-size: 0.9em;
  color: #555;
}

.az-card {
  background: #f9f9f9;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 1rem;
  width: calc(33.33% - 2rem);
  box-sizing: border-box;
  text-align: left;
}

@media screen and (max-width: 900px) {
  .az-card {
    width: calc(50% - 2rem);
  }
  .az-grid {
    gap: 1.5rem;
    padding-left: 10%;
    padding-right: 10%;
  }
}
@media screen and (max-width: 600px) {
  .az-index-text {
    text-align: center !important;
    padding-left: 0px !important;
  }
  .az-card {
    width: 100%;
  }
  .az-grid {
    padding-left: 5%;
    padding-right: 5%;
  }
}
