/* Minification failed. Returning unminified contents.
(12,54): run-time error CSS1039: Token not allowed after unary operator: '-brand-gray'
(26,27): run-time error CSS1039: Token not allowed after unary operator: '-brand-purple'
(58,22): run-time error CSS1030: Expected identifier, found '.'
(58,42): run-time error CSS1031: Expected selector, found ')'
(58,42): run-time error CSS1025: Expected comma or open brace, found ')'
(60,22): run-time error CSS1030: Expected identifier, found '.'
(60,42): run-time error CSS1031: Expected selector, found ')'
(60,42): run-time error CSS1025: Expected comma or open brace, found ')'
(63,28): run-time error CSS1030: Expected identifier, found '.'
(63,48): run-time error CSS1031: Expected selector, found ')'
(63,48): run-time error CSS1025: Expected comma or open brace, found ')'
(92,15): run-time error CSS1039: Token not allowed after unary operator: '-brand-off-black'
(96,27): run-time error CSS1039: Token not allowed after unary operator: '-brand-purple'
(102,36): run-time error CSS1039: Token not allowed after unary operator: '-brand-purple'
(120,28): run-time error CSS1039: Token not allowed after unary operator: '-brand-gray'
(125,54): run-time error CSS1039: Token not allowed after unary operator: '-brand-gray'
 */
.global-page { text-align: left; }

.global-page .h1-header {
  margin: 1rem 0;
  text-transform: capitalize;
  font-size: 2rem;
  font-weight: 400;
}

.global-page p { padding: 0.5rem 0; }

.global-page section { border-bottom: 1px solid var(--brand-gray); }

.global-page section:last-of-type { border-bottom: none; }

.global-header {
  box-sizing: border-box;
  width: 100%;
  display: block;
  cursor: pointer;
  text-align: initial;
  position: relative;
}

.global-header:focus {
  outline: 1px solid var(--brand-purple);
  transition: outline 0.2s ease;
  border-radius: 0.05rem;
  outline-offset: 2px;
}

.global-header .h2-header {
  font-size: 1.55em;
  font-weight: 400;
  padding: 1rem 0;
  display: flex;
  padding-right: 3rem;
}

.global-header .h2-header::after {
  display: inline-flex;
  align-self: center;
  content: "";
  position: absolute;
  right: 3%;
  transition: transform .4s ease-in-out;
  background: url('/assets/img/icons/chevron-arrow-down-blk.svg') no-repeat;
  width: 1rem;
  height: 1rem;
  background-position: center;
}

.global-header .h2-header:hover::after {
  background: url('/assets/img/icons/chevron-arrow-down-purp.svg') no-repeat;
  background-position: center;
}

.global-header:has(+ .global-active-links) .h2-header::after { transform: rotate(-180deg); }

.global-header:has(+ .global-active-links) { border-bottom: 1px solid transparent; }

.global-header:hover,
.global-header:hover:has(+ .global-active-links) {
  color: var(--brand-purple);
  transition: .4s ease-in-out;
}

.global-header + * {
  max-height: 0;
  margin-bottom: 1rem;
  overflow: hidden;
  will-change: max-height;
  transition: max-height .4s ease-in-out;
}

.global-page section ul {
  display: grid;
  grid-template-columns: repeat( auto-fit, minmax( 17rem, 1fr ) );
}

.global-page section ul li {
  justify-self: start;
  margin: 0.5rem;
}

.global-page a {
  display: flex;
  gap: 0.75rem;
  flex-direction: row-reverse;
  align-items: center;
  padding: 0.25rem;
  color: var(--brand-off-black);
}

.global-page a:focus {
  outline: 1px solid var(--brand-purple);
  transition: outline 0.2s ease;
  border-radius: 0.05rem;
  outline-offset: 2px;
}

.global-page a:hover { color: var(--brand-purple); }

.global-page a:hover p { font-weight: 500; }

.global-page a p {
  text-align: left;
  padding: 0 0;
}

.global-page a p .job-count-span { font-size: 0.7em; }

.global-page a .cover-img {
  width: 3.125rem;
  height: auto;
  object-fit: cover;
}

.global-page a img {
  box-shadow: 0 0 8px var(--brand-gray);
  width: 100%;
  height: 100%;
}

.global-page a:hover img { box-shadow: 0 0 12px var(--brand-gray); 
}

@media only screen and (min-width: 52.5rem) {

  .global-page .sr-only {
    position: static !important;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
    padding: 1rem 0;
  }

  .global-header,
  .global-header::after { display: none; }

  .global-header + * {
    height: 100%;
    max-height: initial;
    will-change: initial;
  }

  .global-nav_content {
    border-bottom: 1px solid transparent;
    padding: 0 0;
  }
}

