/* Minification failed. Returning unminified contents.
(20,54): run-time error CSS1039: Token not allowed after unary operator: '-brand-gray'
(69,22): run-time error CSS1030: Expected identifier, found '.'
(69,42): run-time error CSS1031: Expected selector, found ')'
(69,42): run-time error CSS1025: Expected comma or open brace, found ')'
(71,22): run-time error CSS1030: Expected identifier, found '.'
(71,42): run-time error CSS1031: Expected selector, found ')'
(71,42): run-time error CSS1025: Expected comma or open brace, found ')'
(74,28): run-time error CSS1030: Expected identifier, found '.'
(74,48): run-time error CSS1031: Expected selector, found ')'
(74,48): run-time error CSS1025: Expected comma or open brace, found ')'
(103,15): run-time error CSS1039: Token not allowed after unary operator: '-brand-off-black'
(131,28): run-time error CSS1039: Token not allowed after unary operator: '-brand-gray'
(136,54): run-time error CSS1039: Token not allowed after unary operator: '-brand-gray'
 */
.global-page { 
  text-align: left;
  padding: 4rem 1rem;
}

.global-page .h1-header {
  padding: 2rem 0 1rem;
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: -0.8px;
  /*text-transform: uppercase;*/
}

.global-page p {
  padding: 0.5rem 0;
  font-weight: 400;
  font-size: 1rem;
}

.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;
  color: rgba(0, 0, 0, 0.6);
}

.global-header:focus {
  outline: 1px solid rgba(0, 0, 0, 0.4);
  transition: outline 0.2s ease;
  border-radius: 0.05rem;
  outline-offset: 2px;
}

.global-header .h2-header {  
  font-size: 1.25rem;
  font-weight: 700;
  /*text-transform: uppercase;*/
  letter-spacing: 1.6px;
  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: #000;
  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 #000;
  transition: outline 0.2s ease;
  border-radius: 0.05rem;
  outline-offset: 2px;
}

.global-page a:hover { color: #000; }

.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;
  }
}

