  /* START NAV.CSS */
  :root {
    --au-navy: #0b2341;
    --au-orange: #cc4e0b;
    --white: #fff;
	--border: #d9d9d9;
    --text: #222222;
  }

  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  body {
    position: relative;
    overflow: visible;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
    margin: 0;
    background: #ffffff;
  }
/* to overwrite same from app.css */
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;}
/* .h2, h2 {font-family: sweet-sans-pro, serif;} */
/* end overwriting */

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
  }

  /* TOP BAR */
  .topbar {
    background: #d6d3d2;
    color: var(--au-navy);
    font-size: 0.7rem;
    padding: 5px 0;
  }

  .topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.35rem 1rem;
    min-height: 34px;
  }

  .top-left-link {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
    color: #0b2341 !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    line-height: 1 !important;
	margin-left: 10px !important;
  }

  .top-left-link img {
    display: block !important;
  }

  .top-left-link:hover {
    text-decoration: underline !important;
  }

  .top-right-pills {
    display: flex !important;
    gap: 0.75rem !important;
    align-items: center !important;
    flex-wrap: wrap !important;
  }

  .top-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(0, 108, 154, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: var(--au-navy);
    padding: 0.25rem 0.7rem;
    border-radius: 9999px;
    font-size: 0.68rem;
    text-decoration: none;
    line-height: 1;
    transition: background 0.15s;
    white-space: nowrap;
  }

  .top-pill:hover {
    background: rgba(255, 255, 255, 0.28);
  }

  .top-pill.is-highlight {
    background: var(--au-orange);
    color: var(--white);
    border-color: transparent;
  }
  .top-pill.is-highlight:hover {background:#fdefe5;color:var(--au-orange);border-color:var(--au-orange);}

  /* full-width strip */
  .nav-bar-wrap {
    background: var(--au-navy);
    border-bottom: 1px solid var(--white);
  }

  /* MAIN NAV (inside) */
  .nav-bar {
    background: transparent;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.5rem 1rem;
    position: relative;
    z-index: 2;
  }

  .brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--white);
  }

  .brand-logo {
    width: 165px;
    height: 44px;
    background: url("https://harbert.auburn.edu/_resources/img/logos/informal-white-orange.svg") no-repeat;
    flex: 0 0 165px;
  }

  .main-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .nav-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .nav-item {
    position: relative;
  }

  .nav-link {
    appearance: none;
    -webkit-appearance: none;
    background: none;
    border: none;
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    padding: 0.35rem 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    transition: background 0.15s ease-out;
    white-space: nowrap;
    cursor: pointer;
  }

  .nav-link a {color:#fff;text-decoration:none;}
  .nav-link a:hover, .nav-link a:focus {color:#fff !important;}
  a.nav-link:hover, a.nav-link:focus {color:#fff !important;}

  .nav-link:hover {
    background: rgba(255, 255, 255, 0.12);
  }

  /* DESKTOP MEGA */

  .mega {
    position: fixed;
    left: 0;
    right: 0;
    top: 109px; /* start of mega dropdown (tweak if needed) */
    background: #006c9a;
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all 0.12s ease-out;
    pointer-events: none;
    z-index: 1;
  }

	.mega.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

	
  .mega-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.6rem 1rem 1.8rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem;
  }

  .mega-col-title {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    opacity: 0.85;
    border-bottom: 1px solid #e7e9ec;
    padding-bottom: 0.5rem;
  }
  
  .mega-col-title a {
	  color:#ffffff;
	  text-decoration: none;
  }
	
	  .mega-col-title a:hover {
	  color:#e86100;
  }

  .mega-link {
    display: block;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    font-size: 1rem;
    padding: 0.5rem 0;
  }

  .mega-link:hover {
    color: var(--white);
  }
/* SEARCH MEGA (DESKTOP) */
.mega--search .mega-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1rem;
  grid-template-columns: 1fr; /* override grid */
}

.search-form {
  width: 100%;
  max-width: 640px;
}

.search-input {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  border: none;
  font-size: 1.1rem;
  outline: none;
}

.search-input::placeholder {
  color: #6b7280;
}

/* MOBILE SEARCH OVERLAY (unique, avoids collisions) */
.harbert-search-overlay {
  position: fixed !important;
  inset: 0 !important;
  background: rgba(11, 35, 65, 0.98) !important;
  display: none;
  z-index: 3000 !important; /* above header + megas */
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.harbert-search-overlay {
  animation: fadeIn 0.15s ease-out both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.harbert-search-overlay.is-visible {
  display: flex !important;
}

.harbert-search-overlay-inner {
  width: 100%;
  max-width: 640px;
}

.harbert-search-input--overlay {
  width: 100%;
  padding: 1rem 1.2rem;
  border-radius: 999px;
  border: none;
  font-size: 1.1rem;
}

.harbert-search-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.harbert-search-close:hover {
  background: rgba(255,255,255,0.2);
}


/* optional: dim background a bit on desktop search mega too */
.mega--search {
  background: rgba(0, 108, 154, 0.97);
}

  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .icon-btn {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.12);
    display: grid;
    place-items: center;
    cursor: pointer;
    color: var(--white);
  }

 /* MOBILE */
.mobile-toggle {
  display: none;
}

@media (max-width: 1050px) {
  .topbar,
  .nav-list {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex !important;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    width: 34px;
    height: 34px;
    border-radius: 6px;
    align-items: center;
    justify-content: center;
  }

  /* keep search icon visible on mobile */
   /* #searchToggle { */
   /*   display: inline-flex !important; */
  /*  } */

  /* hide desktop megas on mobile */
  .mega {
    display: none !important;
  }

  .topbar-inner {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .top-right-pills {
    justify-content: space-evenly;
  }
	
  .top-pill {
	background-color:#e9e7ec;
  }
  .top-pill:hover {
    background: rgba(255, 255, 255, 0.5);
    color: #ffffff;
  }
}


  /* MOBILE PANEL */
  .mobile-panel {
    display: none;
    background: var(--au-navy);
  }

  .mobile-panel.open {
    display: block;
  }

  .mobile-panel-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 1rem 1.1rem;
    display: grid;
    gap: 0.35rem;
  }

  .mobile-link {
    display: block;
    color: var(--white);
    text-decoration: none;
    padding: 0.6rem 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0.55rem;
    font-size: 0.85rem;
  }
  a.mobile-link:focus, a.mobile-link:hover {
    color: #e7e9ec;
    text-decoration: none;
}

  /* MOBILE ACCORDION (for mega items) */
  @media (max-width: 1050px) {
    .mobile-accordion {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.04);
      color: var(--white);
      width: 100%;
      text-align: left;
      padding: 0.6rem 0.75rem;
      border-radius: 0.55rem;
      font-size: 0.9rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 0.5rem;
      cursor: pointer;
    }

    .mobile-accordion::after {
      content: "+";
      font-weight: 600;
    }

    .mobile-accordion-body {
      display: none;
      padding-left: 0.75rem;
    }

    .mobile-accordion-body.open {
      display: block;
      background: #006c9a;
    }

    .mobile-accordion-body .mobile-link {
      background: none;
      padding-left: 0;
    }
  }
/* END NAV.CSS */

/* START MAIN CSS */
/* Global reset / base */
*,
*::before,
*::after {
  box-sizing: border-box;
}
	
body {
  position: relative;
  overflow: visible;
  margin: 0;
  background: #fff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}
.module:not(.module--full) .grid-container {
	padding-right:0;
	padding-left:0;
}
#main-content:focus-visible {
  outline: 3px solid #e87722;
  outline-offset: 4px;
}
.pill {
  background-color: #fdede5;
  border: 1px solid var(--au-orange);
  border-radius: 20px;
  padding: 5px 15px;
  font-size: 0.8275rem;
  max-width: 275px;
  text-align: center;
  margin: 0 10px 10px 0;
  font-weight: bold;
  color: var(--au-navy) !important;
  height: fit-content;
}

.program-name {
  color: #e86100;
  font-style: italic;
}
	
.l-intro {padding:0;}
.breadcrumbs {padding:0;margin-top:0;}

/* NEW UPDATE FOR HERO */

  .program-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(2rem, 4vw, 4rem) 1rem;
  }

  /* Background image */
  .program-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("https://harbert.auburn.edu/binaries/images/page-elements/banners/tiger-sculpture.jpg");
    background-size: cover;
    background-position: 70% center; /* keeps tiger on right */
    z-index: 0;
  }

  /* Fade overlay (top + left) */
  .program-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,0.6) 0%,
      rgba(255,255,255,0.75) 40%,
      #ffffff 85%
    ),
    linear-gradient(
      to right,
      rgba(255,255,255,0.9) 0%,
      rgba(255,255,255,0.6) 35%,
      rgba(255,255,255,0.1) 70%
    );

  z-index: 1;
}

  /* Ensure content is above overlays */
  .program-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(280px, 1fr);
    gap: 2rem;
    align-items: start;
  }

  .program-hero__content {
    min-width: 0;
  }

  .program-hero__eyebrow {
    margin: 0 0 0.75rem;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .program-hero__title {
    margin: 0.75rem 0 0 0;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.05;
    max-width: 15.5ch;
	font-weight: 900;
  }

  .program-hero__summary {
    max-width: 58ch;
    margin: 1rem 0 0;
    font-size: 1.125rem;
    line-height: 1.6;
  }

  .program-hero__actions {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 0.875rem;
  margin-top: 1.75rem;
  align-items: start;
}

  .program-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.875rem 1.25rem;
    border: 2px solid currentColor;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    line-height: 1.2;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
  }

  .program-hero__button:hover,
  .program-hero__button:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  }

  .program-hero__button:focus-visible {
    outline: 3px solid #005fcc;
    outline-offset: 3px;
  }

  .program-hero__button--primary {
    background: #006c9a;
    border-color: #006c9a;
    color: #ffffff;
  }

  .program-hero__button--secondary {
    background: #ffffff;
    color: #0b2341;
    border-color: #0b2341;
  }

  .program-hero__button--wide {
  grid-column: 1 / -1; /* spans both columns */
  width: 100%;         /* fills the full space */
}

  .program-hero__card {
    background: #ffffff;
    border: 1px solid #e86100;
    border-radius: 1rem;
    padding: 1.25rem;
    box-shadow: 0 10px 30px rgba(11, 35, 65, 0.08);
  }

  .program-hero__card-title {
    margin: 0 0 1rem;
    font-size: 1.25rem;
    line-height: 1.2;
	text-align:center;
	color: #006c9a;
  }

  .program-hero__stats {
    margin: 0;
  }

  .program-hero__stat-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    padding: 0.8rem 0;
    border-top: 1px solid #e7e9ec;
  }

  .program-hero__stat-row:first-child {
    border-top: 0;
    padding-top: 0;
  }

  .program-hero__stat-row dt {
    margin: 0;
    font-weight: 700;
  }

  .program-hero__stat-row dd {
    margin: 0;
    text-align: right;
  }

  /* Tablet */
  @media (max-width: 900px) {
    .program-hero__inner {
      grid-template-columns: 1fr;
    }

    .program-hero__title {
      max-width: 100%;
    }

    .program-hero__summary {
      max-width: 100%;
    }
  }

  /* Mobile */
  @media (max-width: 640px) {
    .program-hero {
      padding: 2rem 1rem;
    }

    .program-hero__actions {
      grid-template-columns: 1fr;
    }

    .program-hero__button,
    .program-hero__button--wide {
      width: 100%;
      grid-column: auto;
      justify-self: stretch;
    }

    .program-hero__stat-row {
      grid-template-columns: 1fr;
      gap: 0.25rem;
    }

    .program-hero__stat-row dd {
      text-align: left;
    }

    /* Slightly stronger fade on mobile for readability */
    .program-hero::after {
      background:
        linear-gradient(
          to bottom,
          rgba(255,255,255,0.9) 0%,
          #ffffff 70%
        ),
        linear-gradient(
          to right,
          #ffffff 0%,
          rgba(255,255,255,0.95) 50%,
          rgba(255,255,255,0.4) 100%
        );
    }
  }
		
.program-employers {
  margin-top: 2rem;
}

.program-employers__title {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.program-employers__logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.0rem;
  align-items: center;
}

.program-employers__logos img {
  max-height: 70px;
  width: auto;
  object-fit: contain;
padding: 0.5rem 1rem;

  filter: grayscale(100%) opacity(0.8);
  transition: filter 0.2s ease, transform 0.2s ease;
}

.program-employers__logos img:hover {
  filter: none;
  transform: scale(1.05);
}
		
.section--accent[style*=background-image]:before {
    background: #d6d3d2;
}
.section--accent {background: #d6d3d2}

.program-internships__stats {
  margin-top: 1rem;
  display: grid;
  gap: 0.75rem;
}

.program-internships__stats strong {
  display: block;
  font-size: 1.4rem;
}

.program-internships__stats span {
  font-size: 0.9rem;
}
		
.career-tag {
  background: transparent;
  color: #0b2341;
  padding: 0.25rem 0;
  margin-right: 1rem;
  line-height:2.25rem;
  font-weight: 900;
  font-size: 1rem;
  border-bottom: 1px solid rgba(11, 35, 65, 0.2);
}

.sidebar--nav a {color:#0b2341;}

aside[class="sidebar"] {
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 5px;
}

/* ACCORDION 2026 */
.native-accordion {
	margin: 0;
	padding: 0;
}

.native-accordion__item {
	box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
	margin-bottom:5px;
}

.native-accordion__title {
	display: grid;
	grid-template-columns: 4rem 1fr 4rem;
	align-items: stretch;
	padding: 0;
	cursor: pointer;
	list-style: none;
	font-weight: 700;
}

.native-accordion__title::-webkit-details-marker {
	display: none;
}

.native-accordion__title::marker {
	content: "";
}

.native-accordion__title-text {
	display: flex;
	align-items: center;
	padding: 1rem 1.5rem;
}
		
.native-accordion__content {
	padding: 2rem 2rem 2rem 5rem;
}

.native-accordion__arrow {
	display: flex;
	align-items: center;
	justify-content: center;
}

.native-accordion__arrow::before {
	content: "";
	width: 0.65rem;
	height: 0.65rem;
	border-right: 4px solid #cc4e0b;
	border-bottom: 4px solid #cc4e0b;
	transform: rotate(45deg);
	transition: transform .2s ease;
}

.native-accordion__item[open] .native-accordion__arrow::before {
	transform: rotate(-135deg);
}

.native-accordion__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #006c9a;
	color: #fff;
	min-height: 4rem;
	height: 100%;
}
		
.native-accordion__icon > span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 4rem;
	height: 4rem;
}

.native-accordion__icon--count {
	font-weight: 700;
}
