/* Main site styles */
@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto/Roboto-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto/Roboto-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto/Roboto-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto/Roboto-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto/Roboto-SemiBoldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto/Roboto-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto/Roboto-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Roboto Slab";
  src: url("../fonts/roboto-slab/RobotoSlab-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto Slab";
  src: url("../fonts/roboto-slab/RobotoSlab-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto Slab";
  src: url("../fonts/roboto-slab/RobotoSlab-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto Slab";
  src: url("../fonts/roboto-slab/RobotoSlab-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
.font-serif {
  font-family: var(--font-serif);
}

:root {
  --font-sans: Roboto, Helvetica Neue, Arial, sans-serif;
  --font-serif: Roboto Slab, Times New Roman, serif;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-web-red: #b60205;
  --color-hover-gold: #db9d00;
  --color-desert-gold: #FDB913;
  --color-light-background: #f7f0eb;
  --color-secondary-gray: #424242;
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

.section--space-none {
  margin-block-end: 0;
}

.section--space-tight {
  margin-block-end: 1rem;
}

.section--space-default {
  margin-block-end: 3rem;
}

.section--space-loose {
  margin-block-end: 4rem;
}

@media (min-width: 992px) {
  .section--space-tight {
    margin-block-end: 3rem;
  }
  .section--space-default {
    margin-block-end: 5rem;
  }
  .section--space-loose {
    margin-block-end: 6rem;
  }
}
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  color: var(--color-black);
  background-color: var(--color-white);
}

header,
main,
footer {
  width: 100%;
}

main {
  overflow-wrap: anywhere;
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero-mega-heading,
.hero-brand {
  font-family: var(--font-sans);
  font-weight: var(--font-weight-bold);
}

h1 {
  font-size: 6.25rem;
  line-height: 6.125rem;
}

.inner-landing-page h1,
.inner-page h1 {
  font-size: 4.375rem;
  line-height: 4.375rem;
}

h2 {
  font-weight: var(--font-weight-semibold);
  font-size: 3.75rem;
  line-height: 4.25rem;
  color: var(--color-web-red);
  padding-bottom: 1.75rem;
  margin-bottom: 0;
}

h3 {
  color: var(--color-black, #000000);
  font-family: var(--font-sans);
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

.card-title {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: var(--font-weight-bold);
  font-size: 1.375rem;
  line-height: 1.35;
  color: var(--color-black);
  text-decoration: none;
  text-underline-offset: 0.35rem;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.intro-text {
  font-size: 1.25rem;
  line-height: 2rem;
  letter-spacing: 0.025rem;
  border-left: 2px solid var(--color-web-red);
  padding-left: 20px;
}

.intro-text-accent {
  color: var(--color-web-red);
  font-weight: var(--font-weight-bold);
}

p {
  font-weight: var(--font-weight-regular);
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.025rem;
  margin-bottom: 1.5rem;
}
p a {
  text-decoration: underline;
}

.serif-title {
  font-family: var(--font-serif);
  font-weight: var(--font-weight-bold);
}

ol, ul {
  padding-left: revert;
}

a {
  color: var(--color-web-red);
  text-decoration: none;
}
a.is-external-link:not(.no-external-icon)::after {
  content: "arrow_outward";
  display: inline-block;
  margin-left: 0.15em;
  font-family: "Material Symbols Outlined";
  font-size: 1em;
  line-height: 1;
  font-variation-settings: "FILL" 0, "wght" 800, "GRAD" 0, "opsz" 20;
  vertical-align: text-bottom;
  color: var(--color-web-red);
}

:focus-visible {
  outline: 3px solid var(--color-desert-gold);
  outline-offset: 3px;
}

.form-control:focus {
  box-shadow: 0 0 0 2px rgba(253, 185, 19, 0.4);
  border-color: var(--color-desert-gold);
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  top: -100%;
  transform: translateY(0);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  color: var(--color-black);
  background-color: white;
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  border-radius: 0.35rem;
  z-index: 1100;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transition: top 0.2s ease, box-shadow 0.2s ease;
}
.skip-link:focus, .skip-link:focus-visible {
  top: 1rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

#main-content {
  scroll-margin-top: 6rem;
}

.link-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.07rem;
  font-weight: var(--font-weight-semibold);
  color: var(--color-black);
  text-decoration: none;
  transition: color 0.2s ease;
}
.link-with-icon__icon {
  width: 0.85rem;
  color: var(--color-web-red);
  transition: color 0.2s ease, transform 0.2s ease;
  transform: translateX(0);
}
.link-with-icon:hover, .link-with-icon:focus-visible {
  color: var(--color-web-red);
}
.link-with-icon:hover .link-with-icon__icon, .link-with-icon:focus-visible .link-with-icon__icon {
  transform: translateX(4px);
}

.icon-link-arrow {
  width: 0.75rem;
  height: 0.75rem;
  margin-top: -3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  transform: translateX(0);
}

.icon-link-large-arrow {
  width: 2.5rem;
  height: auto;
  display: block;
}

.btn {
  border-radius: 0;
  border-width: 2px;
  font-family: var(--font-sans);
  font-weight: var(--font-weight-bold);
  line-height: normal;
  display: flex;
  padding: 0.8rem 1.25rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  margin: 0 auto;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.3s ease;
}
.btn.btn-primary {
  border-color: var(--color-white);
  color: var(--color-white);
  width: fit-content;
  text-transform: uppercase;
  background: transparent;
  letter-spacing: 0.07rem;
}
.btn.btn-secondary {
  border-color: var(--color-web-red);
  color: var(--color-black);
  width: fit-content;
  text-transform: uppercase;
  background: transparent;
  letter-spacing: 0.07rem;
}
.btn.btn-secondary .icon-link-arrow {
  color: var(--color-web-red);
  transition: color 0.2s ease, transform 0.2s ease;
}
.btn.btn-secondary:hover .icon-link-arrow, .btn.btn-secondary:focus .icon-link-arrow {
  color: var(--color-black);
}
.btn.btn-cta {
  border-color: var(--color-white);
  color: var(--color-white);
  width: fit-content;
  text-transform: uppercase;
  background: transparent;
  letter-spacing: 0.07rem;
}
.btn.btn-cta .icon-link-arrow {
  color: var(--color-desert-gold);
  transition: color 0.2s ease, transform 0.2s ease;
}
.btn.btn-cta:hover .icon-link-arrow, .btn.btn-cta:focus .icon-link-arrow {
  color: var(--color-black);
}
.btn.btn-list {
  width: 100%;
  margin: 0;
  background: var(--color-white);
  border-color: var(--color-web-red);
  color: var(--color-black);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 1rem;
  padding: 1.5rem 20px;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: none;
  transform: translate(0, 0);
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.btn.btn-list:hover, .btn.btn-list:focus-visible {
  background-color: var(--color-white);
  color: var(--color-web-red);
  box-shadow: -6px 6px 0 var(--color-web-red);
  transform: translate(-3px, -3px);
}
.btn:focus {
  outline: none;
}
.btn:focus-visible {
  outline: 3px solid var(--color-desert-gold);
  outline-offset: 3px;
}
.btn:active {
  transform: translateY(1px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.14);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-secondary:hover,
.btn-secondary:focus,
.btn:not(.btn-list):not(.hero-catalog-btn):hover,
.btn:not(.btn-list):not(.hero-catalog-btn):focus {
  background-color: var(--color-desert-gold);
  color: var(--color-black);
  border-color: var(--color-desert-gold);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.desert-bg {
  background-image: linear-gradient(rgba(247, 240, 235, 0.6), rgba(247, 240, 235, 0.6)), url(../images/bg-desert-pattern.jpg);
  background-repeat: repeat;
  background-position: top left;
  background-size: contain;
}

/* ----------------------------------------
Header and Hero
---------------------------------------- */
.hero-header {
  position: relative;
  background-image: var(--hero-background-image, url("../images/hero-image.jpg"));
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #ffffff;
  z-index: 30;
}
.hero-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 0;
  pointer-events: none;
}
.hero-header > * {
  position: relative;
  z-index: 1;
}
.hero-header.header-2::before {
  background: linear-gradient(180deg, rgba(182, 2, 5, 0.5) 0%, rgba(182, 2, 5, 0) 100%), linear-gradient(180deg, #B60205 0%, rgba(182, 2, 5, 0) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
}
.hero-header.hero-red {
  background: var(--color-web-red);
}
.hero-header.hero-red::before {
  display: none;
}

/* Explicit modifier for MC template authors for dynamic hero image */
.hero-header.hero--dynamic {
  /* empty: MC overrides via CSS or page parameters */
}

.hero-wrapper {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  min-height: clamp(26rem, 70vh, 34rem);
}
.hero-wrapper.red-wrapper {
  min-height: 0;
}

.hero-utility {
  align-self: flex-end;
  margin-left: auto;
  width: fit-content;
  max-width: 100%;
  background: white;
  border-radius: 0 0 1.25rem 0.625rem;
  margin-right: 2rem;
  position: relative;
  z-index: 3;
}

.hero-utility nav {
  width: auto;
}

.hero-utility-list {
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: 1.5;
  font-size: 0.78125rem;
}
.hero-utility-list .hero-utility-item:first-child {
  padding-left: 8px;
  border-radius: 0 0 0 0.625rem;
}

.hero-utility-item {
  position: relative;
  height: 40px;
}
.hero-utility-item:hover, .hero-utility-item:focus, .hero-utility-item:active, .hero-utility-item:focus-within {
  background-color: var(--color-light-background);
  cursor: pointer;
}
.hero-utility-item .hero-link, .hero-utility-item.hero-catalog-btn {
  font-family: var(--font-sans);
  font-weight: var(--font-weight-semibold);
  font-size: 0.78125rem;
  border-radius: 0 0 0.625rem 0;
  color: var(--color-black);
  transition: color 0.2s ease;
  border: none;
  padding: 10px 13px;
  display: flex;
  align-items: center;
  text-transform: none;
  letter-spacing: 0;
}
.hero-utility-item .hero-link:hover, .hero-utility-item .hero-link:focus, .hero-utility-item .hero-link:active, .hero-utility-item .hero-link:focus-within {
  background-color: var(--color-light-background);
}
.hero-utility-item .hero-link:hover.hero-toggle::after, .hero-utility-item .hero-link:focus.hero-toggle::after, .hero-utility-item .hero-link:active.hero-toggle::after, .hero-utility-item .hero-link:focus-within.hero-toggle::after {
  color: var(--color-web-red);
}
.hero-utility-item.hero-catalog-btn:hover, .hero-utility-item.hero-catalog-btn:focus, .hero-utility-item.hero-catalog-btn:active {
  border-radius: 0 0 0.625rem 0;
}

.hero-brand {
  padding-bottom: 0.5rem;
}

.hero-top-row {
  width: 100%;
  margin-bottom: 0.5rem;
}

.hero-mobile-actions button {
  appearance: none;
  border: none;
  background: transparent;
  color: #ffffff;
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hero-mobile-actions button.is-active {
  color: var(--color-desert-gold);
}

.hero-mobile-icon {
  display: block;
  width: 2rem;
  height: 2rem;
  color: currentColor;
  position: relative;
  transform: rotateY(180deg);
}

.hero-mobile-icon--menu {
  width: 1.875rem;
  height: 0.1875rem;
  background-color: currentColor;
  border-radius: 999px;
}
.hero-mobile-icon--menu::before, .hero-mobile-icon--menu::after {
  content: "";
  position: absolute;
  left: 0;
  width: 1.875rem;
  height: 0.1875rem;
  background-color: currentColor;
  border-radius: 999px;
  transition: transform 0.2s ease, top 0.2s ease, opacity 0.2s ease;
}
.hero-mobile-icon--menu::before {
  top: -0.6rem;
}
.hero-mobile-icon--menu::after {
  top: 0.6rem;
}

.hero-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--color-white);
  pointer-events: none;
  transform: rotateY(180deg);
}

.hero-icon::before {
  content: attr(data-icon);
  font-family: "Material Symbols Outlined";
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  line-height: 1;
  display: inline-block;
}

.hero-icon--search {
  width: 1.4rem;
  height: 1.4rem;
  font-size: 2rem;
  transform: rotateY(180deg);
}

.hero-mobile-search-submit .hero-icon--search {
  width: 1.2rem;
  height: 1.2rem;
  font-size: 1.2rem;
  color: var(--color-web-red);
  transform: rotateY(180deg);
}

#hero-mobile-search .hero-icon--search {
  width: 1.4375rem;
  height: 1.4375rem;
  font-size: 1.4375rem;
}

.hero-mobile-search-toggle .hero-mobile-icon--search-close {
  display: none;
}
.hero-mobile-search-toggle.is-active .hero-icon--search {
  display: none;
}
.hero-mobile-search-toggle.is-active .hero-mobile-icon--search-close {
  display: block;
}

.hero-mobile-menu.is-active .hero-mobile-icon--menu,
.hero-mobile-search-toggle.is-active .hero-mobile-icon--search-close {
  background-color: transparent;
}
.hero-mobile-menu.is-active .hero-mobile-icon--menu::before,
.hero-mobile-search-toggle.is-active .hero-mobile-icon--search-close::before {
  top: 0;
  transform: rotate(45deg);
}
.hero-mobile-menu.is-active .hero-mobile-icon--menu::after,
.hero-mobile-search-toggle.is-active .hero-mobile-icon--search-close::after {
  top: 0;
  transform: rotate(-45deg);
}

#hero-utility-desktop-anchor {
  display: none;
}

.hero-mobile-search {
  order: -1;
  width: 0;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--color-light-background);
  padding: 0;
  margin: 0;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transform: translateY(-0.75rem);
  transition: max-height 0.3s ease, opacity 0.22s ease, transform 0.3s ease, padding 0.3s ease, margin 0.3s ease;
  pointer-events: none;
}

.hero-mobile-search.is-active {
  width: 100%;
  flex-basis: 100%;
  max-height: 5.25rem;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-mobile-search-input {
  flex: 1 1 auto;
  background: transparent;
  color: var(--color-black);
  border: none;
  padding: 0;
}
.hero-mobile-search-input:focus {
  border-color: none;
  box-shadow: none;
  background-color: transparent;
}

input.form-control[type=search]:focus::-webkit-search-cancel-button {
  filter: invert(11%) sepia(96%) saturate(7487%) hue-rotate(357deg) brightness(68%) contrast(122%);
}

.hero-mobile-search-submit {
  appearance: none;
  border: none;
  background: transparent;
  color: var(--color-web-red);
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition: background-color 0.2s ease;
}

.hero-mobile-search-submit:hover,
.hero-mobile-search-submit:focus {
  background: rgba(182, 2, 5, 0.12);
}

.hero-mobile-utility {
  width: 100%;
}

.hero-mobile-utility #hero-utility {
  width: 100%;
}

.hero-mobile-overlay {
  display: none;
}

.hero-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  --hero-chevron-color: currentColor;
}

.hero-utility .hero-toggle {
  --hero-chevron-color: var(--color-web-red);
  background-color: var(--color-light-background);
}

.hero-primary-nav .hero-toggle {
  --hero-chevron-color: var(--color-desert-gold);
  border: none;
  background: transparent;
}

.hero-toggle::after {
  content: "expand_more";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.8rem;
  height: auto;
  font-family: "Material Symbols Outlined";
  font-size: 1.05rem;
  line-height: 1;
  color: var(--hero-chevron-color);
  transform-origin: center;
  transform: translateY(1px);
  transition: transform 0.2s ease, color 0.2s ease;
}

.hero-menu-item:focus-within > .hero-toggle::after,
.hero-menu-item:hover > .hero-toggle::after,
.hero-menu-item.is-open > .hero-toggle::after,
.hero-menu-item .hero-toggle[aria-expanded=true]::after,
.hero-utility-item--dropdown:focus-within > .hero-toggle::after,
.hero-utility-item--dropdown:hover > .hero-toggle::after,
.hero-utility-item--dropdown.is-open > .hero-toggle::after,
.hero-utility-item--dropdown .hero-toggle[aria-expanded=true]::after {
  transform: translateY(-1px) rotate(180deg);
}

.hero-utility-item--dropdown .hero-utility-menu {
  position: absolute;
  top: 40px;
  left: 0;
  min-width: 210px;
  background-color: var(--color-light-background);
  color: var(--color-black);
  padding: 0.75rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 20;
}
.hero-utility-item--dropdown .hero-utility-menu .hero-utility-link {
  font-weight: var(--font-weight-regular);
  font-size: 1rem;
}

.hero-utility-item--dropdown.is-open .hero-utility-menu,
.hero-utility-item--dropdown > .hero-toggle[aria-expanded=true] + .hero-utility-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hero-utility-link {
  display: block;
  padding: 0.5rem 1.25rem;
  color: inherit;
  font-weight: var(--font-weight-regular);
  font-size: 1rem;
}
.hero-utility-link:hover, .hero-utility-link:active, .hero-utility-link:focus {
  color: inherit;
  background-color: var(--color-desert-gold);
}

.hero-link {
  color: var(--color-white);
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: var(--font-weight-semibold);
}

.hero-link:hover,
.hero-link:focus {
  color: var(--color-black);
  background-color: var(--color-desert-gold);
  text-decoration: none;
}

.hero-catalog-btn {
  background-color: var(--color-desert-gold);
  color: var(--color-black);
  padding-inline: 1.5rem;
  border-radius: 0 0 0.625rem 0;
  transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.hero-catalog-btn:hover, .hero-catalog-btn:focus, .hero-catalog-btn:focus-visible {
  background-color: var(--color-light-background);
  color: var(--color-black);
  box-shadow: none;
  transform: none;
}
.hero-catalog-btn:focus, .hero-catalog-btn:focus-visible {
  outline: 2px solid var(--color-desert-gold);
  outline-offset: 2px;
}
.hero-catalog-btn:active {
  box-shadow: none;
  transform: none;
}

.hero-nav {
  width: 100%;
  position: relative;
  z-index: 2;
  margin: 0 auto;
}

.hero-primary-nav ul {
  list-style: none;
}

.hero-logo {
  max-width: clamp(10rem, 40vw, 18.85rem);
  height: auto;
}

.hero-menu {
  gap: 1.5rem !important;
}

.hero-menu-item {
  position: static;
}

.hero-mega {
  position: absolute;
  left: 50%;
  width: min(90vw, 79.5rem);
  max-width: 79.5rem;
  background: var(--color-light-background);
  color: var(--color-black);
  border-bottom: 2px solid var(--color-web-red);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 25;
}
.hero-mega .hero-mega-inner {
  display: grid;
  grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
  gap: 1.5rem;
  padding: 1.5rem;
}

.hero-menu-item:hover .hero-mega,
.hero-menu-item:focus-within .hero-mega {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.hero-mega-media {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-mega-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hero-mega-caption {
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.55;
}

.hero-mega-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: var(--font-weight-semibold);
  color: var(--color-black);
  text-decoration: none;
  transition: color 0.2s ease;
  --icon-color: var(--color-web-red);
}

.hero-mega-cta:hover,
.hero-mega-cta:focus {
  color: var(--color-web-red);
  --icon-color: currentColor;
}

.hero-mega-cta-icon {
  align-items: center;
  justify-content: center;
  color: var(--icon-color, inherit);
  transition: color 0.2s ease, transform 0.2s ease;
  transform: translateX(0);
}

.hero-mega-cta:hover .hero-mega-cta-icon,
.hero-mega-cta:focus-visible .hero-mega-cta-icon {
  transform: translateX(4px);
}

.hero-mega-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 1rem;
}
.hero-mega-columns .hero-mega-column {
  border-left: 2px solid var(--color-web-red);
  padding-left: 15px;
  height: fit-content;
}

.hero-mega-heading {
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: var(--color-black);
  font-weight: var(--font-weight-semibold);
}

.hero-subheading {
  letter-spacing: 0.025rem;
  font-size: 1.25rem;
}

.hero-mega-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
  line-height: 2.3rem;
}

.hero-mega-list a {
  color: var(--color-black);
  font-weight: var(--font-weight-regular);
  font-size: 1rem;
}

.hero-mega-list a:hover,
.hero-mega-list a:focus {
  color: var(--color-web-red);
}

.hero-search {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: auto;
  z-index: 65;
}
.hero-search .hero-search-input {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  width: clamp(14rem, 24vw, 20rem);
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-black);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0;
  padding: 0.75rem 1rem;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.hero-search .hero-search-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(253, 185, 19, 0.45);
}
.hero-search.is-active .hero-search-input {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.hero-search-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: none;
  background-color: transparent;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.hero-search-button.is-active {
  background: rgba(255, 255, 255, 0.24);
  border-radius: 999px;
}
.hero-search-button.is-active .hero-icon--search::before {
  content: "close";
}

.hero-search-button:hover,
.hero-search-button:focus {
  background: rgba(255, 255, 255, 0.18);
  border-color: #ffffff;
  color: #ffffff;
}

.hero-search-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
}

.hero-search-button .hero-icon {
  width: 1.35rem;
  height: 1.35rem;
  font-size: 1.35rem;
}

.hero-content {
  padding: 5rem 0 4rem;
  max-width: 44rem;
  margin: 0 auto;
}

.hero-cta:hover,
.hero-cta:focus {
  background-color: var(--color-desert-gold);
  border-color: var(--color-desert-gold);
  color: var(--color-black);
}

/* ----------------------------------------
Homepage
---------------------------------------- */
.pathways-section {
  background: transparent;
  position: relative;
}
.pathways-section__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.pathways-section__header {
  margin-bottom: 0;
}

.pathways-grid {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
}

.pathways-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  height: auto;
  aspect-ratio: 1/1;
  color: var(--color-white);
  text-transform: uppercase;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pathways-card:hover, .pathways-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 22px 42px rgba(14, 14, 14, 0.18);
}
.pathways-card:focus-visible {
  outline: 3px solid var(--color-desert-gold);
  outline-offset: 2px;
}

.pathways-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.pathways-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) brightness(0.96);
  transform: scale(1);
  transition: transform 0.35s ease;
}

.pathways-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) -33.33%, rgb(0, 0, 0) 100%);
  transition: background 0.3s ease, opacity 0.3s ease;
}

.pathways-card__content {
  position: relative;
  width: 100%;
  padding: 1.5rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 0.85rem;
  z-index: 1;
  text-align: center;
  transition: transform 0.3s ease;
}

.pathways-card__title {
  font-weight: var(--font-weight-bold);
  font-size: 1.5rem;
  line-height: 1.3;
  text-transform: uppercase;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.pathways-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.07rem;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.55);
  color: var(--color-white);
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 50%;
  bottom: 1.35rem;
  transform: translate(-50%, 110%);
  pointer-events: none;
  width: calc(100% - 2.5rem);
  will-change: transform, opacity;
}

.pathways-card:hover .pathways-card__image,
.pathways-card:focus-visible .pathways-card__image {
  transform: scale(1.05);
}

.pathways-card:hover .pathways-card__title,
.pathways-card:focus-visible .pathways-card__title {
  color: var(--color-white);
  transform: translateY(-3rem);
}

.pathways-card:hover .pathways-card__cta,
.pathways-card:focus-visible .pathways-card__cta {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.9);
  color: var(--color-white);
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.pathways-card:hover .pathways-card__overlay,
.pathways-card:focus-visible .pathways-card__overlay {
  background: linear-gradient(0deg, rgba(182, 2, 5, 0.8) 0%, rgba(182, 2, 5, 0.8) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.pathways-card--accent .pathways-card__overlay {
  background: linear-gradient(0deg, rgba(182, 2, 5, 0.8) 0%, rgba(182, 2, 5, 0.8) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.pathways-card--accent:hover .pathways-card__overlay,
.pathways-card--accent:focus-visible .pathways-card__overlay {
  background: linear-gradient(0deg, rgba(182, 2, 5, 0.8) 0%, rgba(182, 2, 5, 0.8) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%);
}

@media (max-width: 480px) {
  .pathways-grid {
    grid-template-columns: 1fr;
  }
}
.learning-section {
  background: var(--color-white);
  position: relative;
  --learning-media-width: clamp(220px, 36vw, 340px);
  --learning-media-gap: 1.5rem;
  overflow: hidden;
}
.learning-section__media {
  display: none;
}
.learning-section__media img {
  width: 100%;
  height: auto;
  display: block;
}
.learning-section__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.learning-section__actions {
  display: grid;
  gap: 0.75rem;
  width: 100%;
}

.campus-updates {
  position: relative;
  color: var(--color-black);
}
.campus-updates__pattern {
  position: relative;
}
.campus-updates__header {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
}
.campus-updates__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.07rem;
  font-weight: var(--font-weight-semibold);
  color: var(--color-black);
  text-decoration: none;
  transition: color 0.2s ease;
}
.campus-updates__link:hover, .campus-updates__link:focus-visible {
  color: var(--color-web-red);
}
.campus-updates__link:hover .hero-mega-cta-icon, .campus-updates__link:focus-visible .hero-mega-cta-icon {
  transform: translateX(4px);
}
.campus-updates__link .hero-mega-cta-icon {
  width: 0.85rem;
  color: var(--color-web-red);
  transition: color 0.2s ease, transform 0.2s ease;
  transform: translateX(0);
}
.campus-updates__layout {
  display: grid;
  gap: 2rem;
  align-items: stretch;
}

.campus-section-bar {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.campus-events__link--top,
.campus-news__link--top {
  display: none;
}

.campus-events__more,
.campus-news__more {
  display: inline-flex;
}

.campus-events {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}
.campus-events__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex: 1 1 auto;
}
.campus-events__item {
  cursor: pointer;
}

.campus-event__date {
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
  color: var(--color-web-red);
  align-items: center;
  text-align: center;
}
.campus-event__date .campus-event__month,
.campus-event__date .campus-event__day {
  font-family: var(--font-serif);
  color: var(--color-web-red);
}
.campus-event__date .campus-event__month {
  font-size: 1.5rem;
  font-weight: var(--font-weight-medium);
  margin-bottom: -8px;
}
.campus-event__date .campus-event__day {
  font-size: 4.0625rem;
  line-height: 1;
}

.campus-event__details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
.campus-event__details .campus-event__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: var(--font-weight-semibold);
  font-family: var(--font-serif);
}
.campus-event__details .campus-event__meta {
  margin: 0;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-secondary-gray);
  font-weight: var(--font-weight-bold);
}

.campus-events__link {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.25rem;
  border: 2px solid var(--color-web-red);
  padding: 1.25rem 1.5rem;
  background-color: rgba(255, 255, 255, 0.9);
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.campus-events__link:hover,
.campus-events__link:focus,
.campus-events__link:focus-visible {
  color: inherit;
  transform: translateY(-4px);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.12);
}

.campus-news-card__link {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.campus-news-card__link:hover,
.campus-news-card__link:focus,
.campus-news-card__link:focus-visible {
  color: inherit;
}

.campus-news {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}
.campus-news__grid {
  display: grid;
  gap: 0.15rem;
  grid-auto-rows: 1fr;
  flex: 1 1 auto;
}

.campus-news-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: var(--color-white);
}
.campus-news-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30, 30, 30, 0.1) 0%, rgba(0, 0, 0, 0.78) 85%);
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.campus-news-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.35s ease;
}
.campus-news-card__content {
  position: relative;
  z-index: 1;
  padding: 1.75rem;
  padding-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-width: 83%;
}
.campus-news-card__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: var(--font-weight-semibold);
  line-height: normal;
  font-family: var(--font-serif);
}
.campus-news-card__meta {
  margin: 0;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: var(--font-weight-bold);
}
.campus-news-card__icon {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  display: inline-flex;
  width: 3.1875rem;
  height: 3.0625rem;
  color: var(--color-white);
  z-index: 1;
  transition: transform 0.2s ease, color 0.2s ease;
}
.campus-news-card__icon .icon-link-large-arrow {
  width: 100%;
  height: 100%;
}
.campus-news-card:hover {
  cursor: pointer;
}
.campus-news-card:hover .campus-news-card__image {
  transform: scale(1.05);
}
.campus-news-card:hover .campus-news-card__icon {
  transform: translateX(6px);
}
.campus-news-card:focus-within::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 3px solid var(--color-desert-gold);
  outline: 3px solid var(--color-desert-gold);
  outline-offset: 2px;
  pointer-events: none;
  z-index: 5;
}

.campus-events__more,
.campus-news__more {
  align-self: flex-start;
  margin-top: 0.25rem;
}

.more-experience-cta {
  position: relative;
  z-index: 2;
  background: linear-gradient(90deg, rgba(182, 2, 5, 0.9) 0%, rgba(182, 2, 5, 0.85) 100%), url("../images/hero-image.jpg") center/cover no-repeat;
  color: var(--color-white);
  overflow: hidden;
}
.more-experience-cta__content {
  position: relative;
  display: grid;
  gap: 2rem;
}
.more-experience-cta__text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.more-experience-cta__text h2 {
  color: var(--color-white);
}
.more-experience-cta__text p {
  margin: 0;
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5rem;
  letter-spacing: 0.02rem;
}
.more-experience-cta__stats {
  display: grid;
  gap: 1.25rem;
}
.more-experience-cta__stat {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  text-align: center;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
  min-height: 18.9375rem;
  justify-content: center;
}
.more-experience-cta__value {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: var(--font-weight-regular);
  line-height: 1;
  color: var(--color-web-red);
}
.more-experience-cta__label {
  font-size: 1rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: var(--font-weight-bold);
  color: var(--color-secondary-gray);
  max-width: 75%;
  margin: 0 auto;
  line-height: normal;
}

.want-to {
  background: var(--color-white);
}
.want-to__grid {
  display: grid;
  gap: 1rem;
}

.want-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border: 2px solid var(--color-web-red);
  text-decoration: none;
  color: var(--color-black);
  background: var(--color-white);
  padding-bottom: 2rem;
  transition: background-color 0.25s ease, box-shadow 0.3s ease, transform 0.25s ease;
}
.want-card:hover, .want-card:focus-visible {
  background-color: var(--color-light-background);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}
.want-card:focus-visible {
  outline: 2px solid var(--color-desert-gold);
  outline-offset: 3px;
}
.want-card:active {
  transform: translateY(-1px);
}
.want-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
  border-bottom: 2px solid var(--color-web-red);
}
.want-card__category {
  font-family: var(--font-sans);
  font-weight: var(--font-weight-bold);
  font-size: 1rem;
  letter-spacing: 0.07rem;
  text-transform: uppercase;
  color: var(--color-secondary-gray);
  transition: color 0.2s ease;
  padding: 0 1rem;
}
.want-card__icon {
  display: inline-flex;
  color: var(--color-web-red);
}
.want-card__icon .icon-link-large-arrow {
  width: 3.1875rem;
  height: auto;
  transition: transform 0.2s ease;
  transform: translateX(0);
  border-left: 2px solid var(--color-web-red);
}
.want-card .card-title {
  padding: 1rem 1rem 0;
}
.want-card__text {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: var(--font-weight-regular);
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: 0.02rem;
  color: var(--color-secondary-gray);
  padding: 0 1rem;
}
.want-card:hover .want-card__category, .want-card:focus-visible .want-card__category {
  color: var(--color-web-red);
}
.want-card:hover .card-title, .want-card:focus-visible .card-title {
  text-decoration: underline;
  text-decoration-thickness: 0.125rem;
  text-decoration-color: var(--color-web-red);
}

.spotlights__carousel {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.spotlights__single {
  width: 100%;
}
.spotlights .carousel-item {
  padding: 0;
}
.spotlights .carousel-inner {
  overflow: visible;
}
.spotlights.desert-bg {
  padding-bottom: 7rem !important;
}

.spotlights__indicators {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
}

.spotlights__indicator {
  width: 0.875rem;
  height: 0.875rem;
  border: 2px solid var(--color-web-red);
  border-radius: 50%;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.spotlights__indicator.is-active {
  background: var(--color-web-red);
}

.spotlights__indicator:focus-visible {
  outline: 2px solid var(--color-web-red);
  outline-offset: 3px;
}

.spotlight {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.spotlight__media {
  position: relative;
  width: 100%;
  max-width: 21.5rem;
  margin: 0 auto;
}
.spotlight__media::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.spotlight__media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid var(--color-web-red);
  transform: translate(-1.8rem, 1.8rem);
  z-index: 0;
  pointer-events: none;
}
.spotlight__media img {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.spotlight__body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 34rem;
}
.spotlight__quote {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: var(--font-weight-regular);
  color: var(--color-black);
}
.spotlight__author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  font-size: 0.875rem;
  color: var(--color-secondary-gray);
}
.spotlight__name {
  font-weight: var(--font-weight-semibold);
  color: var(--color-black);
}

.spotlight-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  border: none;
  background: transparent;
  color: var(--color-web-red);
}
.spotlight-control:hover, .spotlight-control:focus-visible {
  color: var(--color-web-red);
}
.spotlight-control:focus-visible {
  outline: 2px solid var(--color-desert-gold);
  outline-offset: 4px;
}
.spotlight-control__icon {
  display: inline-flex;
}
.spotlight-control .icon-link-large-arrow {
  width: 3.1875rem;
  height: 3.0625rem;
  transition: transform 0.2s ease;
}
.spotlight-control:hover .icon-link-large-arrow, .spotlight-control:focus-visible .icon-link-large-arrow {
  transform: translateX(3px);
}
.spotlight-control--prev .icon-link-large-arrow {
  transform: rotate(180deg);
}
.spotlight-control--prev:hover .icon-link-large-arrow, .spotlight-control--prev:focus-visible .icon-link-large-arrow {
  transform: rotate(180deg) translateX(3px);
}

.spotlights__viewport,
.image-gallery-slider__viewport {
  display: grid;
  grid-template-areas: "slide" "controls";
  justify-items: center;
  gap: 0.75rem;
}

.carousel-inner {
  grid-area: slide;
}

.spotlight-control--prev,
.spotlight-control--next {
  grid-area: controls;
  position: static;
  transform: none;
}

/* Create a flex row INSIDE the controls area */
.spotlight-control--prev {
  margin-left: -70px;
}

.spotlight-control--next {
  margin-right: -70px;
}

.hsi__accent {
  color: var(--color-web-red);
  font-weight: var(--font-weight-bold);
}
.hsi__items {
  display: flex;
  flex-direction: column;
}

.hsi-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 1rem;
  position: relative;
}
.hsi-card__icon {
  width: auto;
  height: 5rem;
}
.hsi-card__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-black);
}
.hsi-card__text {
  margin: 0;
}
.hsi-card + .hsi-card {
  margin-top: 2.25rem;
  padding-top: 2rem;
  border-top: 2px solid var(--color-web-red);
}

.community-cta {
  position: relative;
  z-index: 1;
}
.community-cta__panel {
  padding: clamp(2.5rem, 6vw, 3.5rem) clamp(2rem, 5vw, 3rem);
  text-align: center;
  position: relative;
  z-index: 2;
}
.community-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.community-cta__actions .btn {
  margin: 0;
}

/* ----------------------------------------
Inner Landing Page Components
---------------------------------------- */
.custbreadcrumb .custbreadcrumbmain ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.4;
  color: var(--color-black);
}
.custbreadcrumb .custbreadcrumbmain li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.custbreadcrumb .custbreadcrumbmain li[aria-current=page] {
  font-weight: var(--font-weight-semibold);
}
.custbreadcrumb .custbreadcrumbmain li .breadcrumb-chevron {
  font-family: "Material Symbols Outlined";
  font-size: 1rem;
  line-height: 1;
  color: var(--color-web-red);
  font-weight: var(--font-weight-bold);
}
.custbreadcrumb .custbreadcrumbmain li:last-child .breadcrumb-chevron {
  display: none;
}
.custbreadcrumb .custbreadcrumbmain a {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.custbreadcrumb .custbreadcrumbmain a:hover, .custbreadcrumb .custbreadcrumbmain a:focus-visible {
  color: var(--color-web-red);
}

.stackable-alternating-cards {
  max-width: 1920px;
  margin-inline: auto;
}
.stackable-alternating-cards__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(1.75rem, 4vw, 3rem);
}
.stackable-alternating-cards__content {
  display: flex;
  flex-direction: column;
}

.stackable-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  align-items: center;
}
.stackable-card__panel {
  background: transparent;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}
.stackable-card__text {
  border-left: 2px solid var(--color-web-red);
  padding-left: 1.5rem;
}
.stackable-card__media {
  display: flex;
  min-height: 350px;
}
.stackable-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  height: 350px;
}
.stackable-card--reverse .stackable-card__panel {
  order: 2;
}
.stackable-card--reverse .stackable-card__media {
  order: 1;
}

.four-up-cards .intro-text {
  border-left: 0;
  padding-left: 0;
}

.inner-landing-page .full-width-cta,
.inner-page .full-width-cta {
  margin-top: 0;
}
.inner-landing-page .full-width-cta__panel,
.inner-page .full-width-cta__panel {
  padding: clamp(2.5rem, 6vw, 3.5rem) clamp(2rem, 5vw, 3rem);
  text-align: center;
  position: relative;
  z-index: 2;
}
.inner-landing-page .full-width-cta__panel .full-width-cta__text p,
.inner-page .full-width-cta__panel .full-width-cta__text p {
  line-height: 1.5rem;
  letter-spacing: 0.02rem;
}

.right-left-cta {
  --right-left-cta-panel-min: 20rem;
  --right-left-cta-panel-max: 33.625rem;
  --right-left-cta-media-min: 24rem;
  --right-left-cta-media-max: 45.875rem;
  --right-left-cta-panel-overlap: clamp(2rem, 3vw, 3.5rem);
}
.right-left-cta .stackable-alternating-cards__content {
  background: none;
}
.right-left-cta .stackable-card__panel {
  height: auto;
  background-image: linear-gradient(rgba(247, 240, 235, 0.6), rgba(247, 240, 235, 0.6)), url(../images/bg-desert-pattern.jpg);
  border-left: none;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  position: relative;
  z-index: 1;
}
.right-left-cta .stackable-card__text {
  border-left: none;
  padding-left: 0;
}
.right-left-cta .stackable-card__media {
  position: relative;
  z-index: 2;
}
.right-left-cta .stackable-card__media img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.right-left-cta .btn-secondary {
  margin: 0;
}

.cta-image-background {
  background: var(--color-web-red);
  color: var(--color-white);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}
.cta-image-background h2 {
  color: var(--color-white);
}
.cta-image-background p {
  margin-bottom: 1.5rem;
}
.cta-image-background__image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.three-up-cta__items {
  display: flex;
  flex-direction: column;
}

.three-up-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 1rem;
  position: relative;
}
.three-up-card__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-black);
}
.three-up-card__text {
  margin: 0;
}
.three-up-card + .three-up-card {
  margin-top: 2.25rem;
  padding-top: 2rem;
  border-top: 2px solid var(--color-web-red);
}
.three-up-card__icon {
  width: auto;
  height: 5rem;
  max-width: 5.125rem;
}

.wide-image img {
  max-height: 32.1875rem;
  min-height: 250px;
  width: 100%;
  object-fit: cover;
}

.text-section h3 {
  margin-top: 2rem;
}
.text-section ul {
  font-weight: var(--font-weight-regular);
  font-size: 1.25rem;
  line-height: 1.6875rem;
  letter-spacing: 0.025rem;
  margin-bottom: 1.5rem;
}
.text-section ul a {
  text-decoration: underline;
}

.important-link-info__nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.important-link-info__link {
  border: 0;
  border-bottom: 2px solid var(--color-web-red);
  background: transparent;
  padding: 0.8rem 0 1.4rem;
  text-align: left;
  font-family: var(--font-serif);
  font-weight: var(--font-weight-bold);
  color: var(--color-black);
  font-size: 1.25rem;
  line-height: normal;
  width: 100%;
  border-radius: 0;
  text-decoration: none;
  transition: color 0.2s ease;
  cursor: pointer;
}
.important-link-info__link:hover, .important-link-info__link:focus-visible, .important-link-info__link.active {
  color: var(--color-web-red);
}
.important-link-info__link:hover .important-link-info__label, .important-link-info__link:focus-visible .important-link-info__label, .important-link-info__link.active .important-link-info__label {
  text-decoration: underline;
}
.important-link-info__label {
  display: inline;
  text-decoration: none;
}
.important-link-info__accordion-panel {
  padding: 0.75rem 0 1rem;
  font-size: 1rem;
}
.important-link-info__accordion-panel ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}
.important-link-info__accordion-panel .link-with-icon {
  margin-top: 0.25rem;
}

.alert-box .bg-red {
  background: var(--color-web-red);
}

.persona-wayfinder__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 0.75rem;
}
.persona-wayfinder__card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 2px solid var(--color-web-red);
  color: var(--color-black);
  text-decoration: none;
  background: var(--color-white);
  transition: transform 0.15s ease, box-shadow 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.persona-wayfinder__card:hover, .persona-wayfinder__card:focus-visible {
  color: var(--color-web-red);
  border-color: var(--color-web-red);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.persona-wayfinder__icon {
  width: 3rem;
  height: auto;
  flex-shrink: 0;
}
.persona-wayfinder__label {
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  line-height: normal;
}

.contact-cards__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.contact-cards.single-card-variation .contact-cards__grid {
  gap: 2rem;
}
.contact-cards.single-card-variation .contact-card {
  height: fit-content;
}

.contact-card {
  padding: 1.5rem;
  padding-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  height: 100%;
}
.contact-card__title,
.contact-card .card-title {
  margin: 0;
  padding: 0;
}
.contact-card__meta {
  display: grid;
  gap: 0.45rem;
  font-size: 1rem;
}
.contact-card__meta li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.4rem;
}
.contact-card__meta .material-symbols-outlined {
  font-size: 1.2rem;
  color: var(--color-web-red);
}

.fast-facts__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.fast-fact {
  border: 2px solid var(--color-web-red);
  padding: 2rem 1.5rem;
  text-align: center;
  color: var(--color-black);
  height: 100%;
  min-height: 15rem;
}
.fast-fact .more-experience-cta__stat {
  margin: 0 0 0.5rem;
}
.fast-fact__label {
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  margin: 0;
}

.important-dates__grid {
  display: grid;
  grid-template-columns: 1fr;
}
.important-dates .hsi-card {
  background: none;
  border-left: none;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  position: relative;
}
.important-dates .hsi-card__title {
  font-size: 1.25rem;
  font-family: var(--font-sans);
}
.important-dates .hsi-card__value {
  font-family: var(--font-serif);
  color: var(--color-web-red);
  font-size: 4.5rem;
  line-height: 3.8125rem;
}
.important-dates .hsi-card__meta {
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-secondary-gray);
  line-height: normal;
  letter-spacing: 0.07rem;
  margin-top: 0.8rem;
}
.important-dates .hsi-card__text {
  max-width: 16rem;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: 0.02rem;
}

.four-up-image-cards {
  --four-up-grid-gap: clamp(1.5rem, 3vw, 2rem);
  --four-up-max-columns: 1;
  --four-up-card-min-width: 14rem;
  --four-up-card-max-width: 20rem;
}
.four-up-image-cards__grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--four-up-grid-gap);
  justify-content: center;
  align-items: stretch;
  max-width: calc(var(--four-up-card-max-width) * var(--four-up-max-columns) + (var(--four-up-max-columns) - 1) * var(--four-up-grid-gap));
  width: 100%;
  margin-inline: auto;
}
.four-up-image-cards .four-up-image-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: min(100%, var(--four-up-card-max-width));
  flex: 1 1 var(--four-up-card-min-width);
  max-width: var(--four-up-card-max-width);
}
.four-up-image-cards .four-up-image-card__media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  padding-bottom: 1rem;
}
.four-up-image-cards .four-up-image-card__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.four-up-image-cards .four-up-image-card__body p {
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: 0.02rem;
  margin: 0;
}
.four-up-image-cards .four-up-image-card__body .btn {
  margin: 0;
}
.four-up-image-cards.red-background {
  background: var(--color-web-red);
  color: var(--color-white);
  padding-top: clamp(2.5rem, 6vw, 4rem);
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
}
.four-up-image-cards.red-background h2 {
  color: var(--color-white);
}
.four-up-image-cards.red-background .four-up-image-card__body p,
.four-up-image-cards.red-background .card-title {
  color: var(--color-white);
}
.four-up-image-cards.red-background .link-with-icon {
  color: white;
}
.four-up-image-cards.red-background .link-with-icon .icon-link-arrow {
  color: var(--color-desert-gold);
}
.four-up-image-cards.red-background .link-with-icon:hover .icon-link-arrow, .four-up-image-cards.red-background .link-with-icon:focus .icon-link-arrow, .four-up-image-cards.red-background .link-with-icon.active .icon-link-arrow {
  color: white;
}

.four-up-image-cards--two-up {
  --four-up-max-columns: 2;
}
.four-up-image-cards--two-up h2 {
  text-align: left;
}
.four-up-image-cards--two-up .four-up-image-cards__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(var(--four-up-card-min-width), 1fr));
  max-width: 100%;
  width: 100%;
  justify-content: stretch;
}
.four-up-image-cards--two-up .four-up-image-card {
  width: 100%;
  max-width: none;
}

.location-image-card__inner {
  display: flex;
  flex-direction: column;
  align-items: top;
}
.location-image-card__media {
  width: 100%;
  line-height: 0;
}
.location-image-card__media img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.location-image-card__content {
  flex: 1 1 auto;
}
.location-image-card__cta {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}
.location-image-card__cta .icon-link-arrow {
  width: 1rem;
  height: 1rem;
}
.location-image-card__details {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.5rem;
  font-size: 1.25rem;
  line-height: 1.6875rem;
  letter-spacing: 0.025rem;
}
.location-image-card__details strong {
  font-weight: var(--font-weight-bold);
}
.location-image-card__links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.location-image-card__links a {
  font-size: 1rem;
  text-decoration: underline;
}

.iframe-embed {
  --iframe-embed-aspect: 16 / 9;
}
.iframe-embed__frame {
  aspect-ratio: var(--iframe-embed-aspect);
  overflow: hidden;
  width: 100%;
  min-height: 18rem;
  max-height: 32.5rem;
  position: relative;
}
.iframe-embed__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.accordion-component .accordion-item {
  border: 0;
  border-radius: 0;
}
.accordion-component .accordion-header {
  font-family: var(--font-serif);
  font-weight: var(--font-weight-bold);
}
.accordion-component .accordion-button {
  background: transparent;
  color: var(--color-black);
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  padding-left: 0;
  padding-right: 0;
  gap: 1rem;
  position: relative;
  border-bottom: 2px solid var(--color-web-red);
}
.accordion-component .accordion-button::after {
  content: "expand_more";
  font-family: "Material Symbols Outlined";
  font-size: 2rem;
  line-height: 1;
  color: var(--color-web-red);
  font-variation-settings: "FILL" 0, "wght" 200, "GRAD" 0, "opsz" 24;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  background: none;
}
.accordion-component .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}
.accordion-component .accordion-button:focus {
  box-shadow: none;
}
.accordion-component .accordion-button:focus-visible {
  outline: 2px solid var(--color-desert-gold);
  outline-offset: 3px;
}
.accordion-component .accordion-button:not(.collapsed) {
  color: var(--color-web-red);
  box-shadow: none;
  border-bottom: 0;
}
.accordion-component .accordion-body {
  padding: 0 0 0.5rem;
  max-width: 95%;
}
.accordion-component .accordion-body p, .accordion-component .accordion-body ul {
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: 0.02rem;
}
.accordion-component .accordion-body ul {
  padding-left: 2rem;
}
.accordion-component .accordion-body ul a {
  text-decoration: underline;
}
.accordion-component .accordion-component__actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
}
.accordion-component .accordion-component__toggle-all {
  border: none;
  background: none;
}
.accordion-component .accordion-component__toggle-all .link-with-icon__icon,
.accordion-component .accordion-component__toggle-all svg {
  margin-top: -2px;
  color: var(--color-web-red);
}
.accordion-component .accordion-component__toggle-all:hover, .accordion-component .accordion-component__toggle-all:focus-visible {
  color: var(--color-web-red);
}
.accordion-component .accordion-component__toggle-all:hover .link-with-icon__icon,
.accordion-component .accordion-component__toggle-all:hover svg, .accordion-component .accordion-component__toggle-all:focus-visible .link-with-icon__icon,
.accordion-component .accordion-component__toggle-all:focus-visible svg {
  transform: translateX(4px);
}

.simple-table__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  overflow-wrap: normal;
}
.simple-table th,
.simple-table td {
  padding: 0.75rem 1rem 0.75rem 2rem;
  vertical-align: middle;
  border-bottom: none;
}
.simple-table th a,
.simple-table td a {
  text-decoration: underline;
}
.simple-table thead tr > *:nth-child(n+2),
.simple-table tbody tr > *:nth-child(n+2) {
  border-left: 2px solid var(--color-web-red);
}
.simple-table thead th > div {
  margin: 0;
  width: auto;
}
.simple-table tbody td,
.simple-table tbody th[scope=row] {
  font-weight: var(--font-weight-regular);
}
.simple-table tbody tr:nth-child(odd),
.simple-table tbody tr:nth-child(odd) td {
  background: #F7F0EB;
}
.simple-table__footnote {
  font-size: 1rem;
  margin-top: 1rem;
}

.pathway-accordion p.key-text span {
  font-size: 1rem;
}
.pathway-accordion tbody tr:nth-child(even),
.pathway-accordion tbody tr:nth-child(even) td {
  background: #F7F0EB;
}
.pathway-accordion tbody tr:nth-child(odd),
.pathway-accordion tbody tr:nth-child(odd) td {
  background: white;
}
.pathway-accordion .simple-table th, .pathway-accordion .simple-table td {
  padding: 0.75rem 1rem 0.75rem 1rem;
}
.pathway-accordion tbody td {
  text-align: right;
}
.pathway-accordion .accordion-body {
  max-width: 100%;
}
.pathway-accordion thead tr > *:nth-child(n+2), .pathway-accordion .simple-table tbody tr > *:nth-child(n+2) {
  border-left: none;
}

.sort-table {
  /* Make the DT header wrapper align nicely with your title + icon */
  /* Give the order span a fixed spot to draw icons into */
  /* Base styles for BOTH chevrons (unsorted state) */
  /* Up chevron (top) */
  /* Down chevron (bottom) */
  /* When sorted ASC, emphasize the up chevron */
  /* When sorted DESC, emphasize the down chevron */
}
.sort-table .dt-layout-full {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.sort-table div.dt-container div.dt-search {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.sort-table div.dt-container div.dt-search label {
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: 0.02rem;
  margin-bottom: 0;
  padding-right: 7px;
}
.sort-table div.dt-container div.dt-search input {
  max-width: 16rem;
  border: 2px solid var(--color-web-red);
  border-radius: 0;
  padding: 0.4rem 0.65rem;
  margin-left: 0;
}
.sort-table div.dt-container div.dt-search input:focus {
  box-shadow: 0 0 0 0.25rem rgba(253, 189, 13, 0.25);
}
.sort-table table.dataTable thead > tr > th.dt-orderable-asc:hover, .sort-table table.dataTable thead > tr > th.dt-orderable-desc:hover, .sort-table table.dataTable thead > tr > td.dt-orderable-asc:hover, .sort-table table.dataTable thead > tr > td.dt-orderable-desc:hover {
  outline: none;
}
.sort-table table.dataTable thead > tr > th.dt-orderable-asc:hover .dt-column-order::after,
.sort-table table.dataTable thead > tr > th.dt-orderable-asc:hover .dt-column-order::before, .sort-table table.dataTable thead > tr > th.dt-orderable-desc:hover .dt-column-order::after,
.sort-table table.dataTable thead > tr > th.dt-orderable-desc:hover .dt-column-order::before, .sort-table table.dataTable thead > tr > td.dt-orderable-asc:hover .dt-column-order::after,
.sort-table table.dataTable thead > tr > td.dt-orderable-asc:hover .dt-column-order::before, .sort-table table.dataTable thead > tr > td.dt-orderable-desc:hover .dt-column-order::after,
.sort-table table.dataTable thead > tr > td.dt-orderable-desc:hover .dt-column-order::before {
  opacity: 1;
}
.sort-table .simple-table__table.dataTable thead th .dt-column-header {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.sort-table .simple-table__table.dataTable thead th .dt-column-order {
  position: relative;
  display: inline-block;
  width: 1.1rem;
  height: 1.1rem;
  vertical-align: middle;
}
.sort-table .simple-table__table.dataTable thead th.dt-orderable-asc .dt-column-order::before,
.sort-table .simple-table__table.dataTable thead th.dt-orderable-desc .dt-column-order::before,
.sort-table .simple-table__table.dataTable thead th.dt-orderable-asc .dt-column-order::after,
.sort-table .simple-table__table.dataTable thead th.dt-orderable-desc .dt-column-order::after {
  font-family: "Material Symbols Outlined"; /* swap if using Rounded/Sharp */
  font-size: 28px;
  font-weight: 200;
  line-height: 0.5;
  position: absolute;
  left: 0;
  right: 0;
  display: grid;
  place-items: center;
  opacity: 0.6;
  -webkit-font-feature-settings: "liga";
  font-feature-settings: "liga";
}
.sort-table .simple-table__table.dataTable thead th.dt-orderable-asc .dt-column-order::before,
.sort-table .simple-table__table.dataTable thead th.dt-orderable-desc .dt-column-order::before {
  content: "expand_less"; /* Material up chevron */
  color: var(--color-web-red);
}
.sort-table .simple-table__table.dataTable thead th.dt-orderable-asc .dt-column-order::after,
.sort-table .simple-table__table.dataTable thead th.dt-orderable-desc .dt-column-order::after {
  content: "expand_more"; /* Material down chevron */
  color: var(--color-web-red);
}
.sort-table .simple-table__table.dataTable thead th.dt-ordering-asc .dt-column-order::before {
  opacity: 1;
  font-weight: 400;
}
.sort-table .simple-table__table.dataTable thead th.dt-ordering-desc .dt-column-order::after {
  opacity: 1;
  font-weight: 300;
}
.sort-table .pagination .page-item .page-link {
  background-color: white;
  border: none;
  color: var(--color-black);
  text-decoration: underline;
}
.sort-table .pagination .page-item .page-link.previous, .sort-table .pagination .page-item .page-link.next {
  text-decoration: none;
  color: var(--color-web-red);
}
.sort-table .pagination .page-item .page-link.previous:focus, .sort-table .pagination .page-item .page-link.next:focus {
  box-shadow: 0 0 0 0.25rem rgba(253, 189, 13, 0.25);
}
.sort-table .pagination .page-item .page-link.first, .sort-table .pagination .page-item .page-link.last {
  display: none;
}
.sort-table .pagination .page-item .page-link:hover {
  cursor: pointer;
}
.sort-table .pagination .page-item .page-link:focus {
  box-shadow: 0 0 0 0.25rem rgba(253, 189, 13, 0.25);
}
.sort-table .pagination .page-item.active .page-link, .sort-table .pagination .page-item:hover .page-link {
  font-weight: var(--font-weight-bold);
  text-decoration: none;
}
.sort-table .pagination .page-item.disabled .page-link {
  text-decoration: none;
}

.career-coach__media {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.career-coach__media img, .career-coach__media iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 0;
}
.career-coach__media--embed {
  border: 1px solid #e6e2dc;
}

.link-list__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.875rem 2rem;
  padding-left: 1.25rem;
}
.link-list__grid li {
  line-height: 1.5rem;
  color: var(--color-black);
}
.link-list__grid li::marker {
  color: var(--color-web-red);
}
.link-list__grid a {
  text-decoration: underline;
  letter-spacing: 0.025rem;
}

.button-list__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.button-list__grid .button-list__item {
  width: 100%;
  height: 5rem;
}

.image-gallery-slider__media {
  position: relative;
  aspect-ratio: 16/9;
}
.image-gallery-slider__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  min-height: 22.0625rem;
}
.image-gallery-slider__controls {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}
.image-gallery-slider__control {
  border: none;
  background: transparent;
  color: var(--color-web-red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0.25rem;
}

.image-gallery-slider__indicators {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}

.image-gallery-slider__indicator {
  width: 0.875rem;
  height: 0.875rem;
  border: 2px solid var(--color-web-red);
  border-radius: 50%;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.image-gallery-slider__indicator.is-active {
  background: var(--color-web-red);
}

.image-gallery-slider__indicator:focus-visible {
  outline: 2px solid var(--color-web-red);
  outline-offset: 3px;
}

.home .community-cta.negative-bottom-margin,
.inner-landing-page .community-cta.negative-bottom-margin,
.inner-page .community-cta.negative-bottom-margin,
.single-program .community-cta.negative-bottom-margin {
  margin-bottom: -5rem;
}

/* Contact Page */
.campus-locations__group {
  display: flex;
  flex-direction: column;
  margin-top: 1.75rem;
}
.campus-locations__group:first-of-type {
  margin-top: 0.5rem;
}
.campus-locations__list {
  display: flex;
  flex-direction: column;
}

.campus-location {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 2rem 0;
  border-bottom: 2px solid var(--color-web-red);
}
.campus-location__media img {
  width: 100%;
  height: 12.8125rem;
  object-fit: cover;
  display: block;
}
.campus-location__title {
  font-family: var(--font-serif);
  font-weight: var(--font-weight-bold);
  font-size: 1.625rem;
  line-height: normal;
  margin-bottom: 1rem;
}
.campus-location__content p:last-of-type {
  margin-bottom: 0.75rem;
}

/* Support Services Page */
.support-filter-section {
  padding-bottom: 10rem;
}

.support-filter__list, .search-results__container .search-results__check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  column-count: 1;
  column-gap: 2.25rem;
}
.support-filter__item, .search-results__container .search-results__check-item {
  padding: 0.15rem 0;
  break-inside: avoid;
  page-break-inside: avoid;
  -webkit-column-break-inside: avoid;
}
.support-filter__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1.5rem;
  color: var(--color-black);
  user-select: none;
  font-family: var(--font-sans);
  font-weight: var(--font-weight-regular);
}
.support-filter__label:hover {
  font-weight: var(--font-weight-medium);
}
.support-filter__checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.support-filter__box {
  width: 1rem;
  height: 1rem;
  border: 1px solid var(--color-web-red);
  border-radius: 0.125rem;
  background: var(--color-light-background);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.support-filter__box::after {
  content: "";
  width: 0.35rem;
  height: 0.65rem;
  border: 2px solid var(--color-black);
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg) scale(0);
  transform-origin: center;
  transition: transform 0.15s ease;
}
.support-filter__checkbox:checked + .support-filter__box::after {
  transform: rotate(45deg) scale(1);
}
.support-filter__checkbox:focus-visible + .support-filter__box {
  outline: 2px solid var(--color-desert-gold);
  outline-offset: 2px;
}
.support-filter__reset {
  font-weight: var(--font-weight-bold);
  text-decoration: underline;
  color: var(--color-web-red);
}

.support-programs {
  margin-top: -12rem;
}
.support-programs .support-programs__grid {
  gap: 1rem;
}

.support-program-card {
  padding: 0;
  gap: 0;
  height: 100%;
  overflow: hidden;
}
.support-program-card__media {
  padding: 0.75rem 0.75rem 0;
}
.support-program-card__media img {
  width: 100%;
  height: 14.4375rem;
  object-fit: cover;
  display: block;
  border-radius: 0;
}
.support-program-card__body {
  padding: 1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1 1 auto;
}
.support-program-card .want-card__text {
  padding: 0;
  margin: 0;
}
.support-program-card__cta {
  margin-top: auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  border-top: 2px solid var(--color-web-red);
  font-size: 1rem;
  letter-spacing: 0.07rem;
  text-transform: uppercase;
  font-weight: var(--font-weight-semibold);
  line-height: 1;
  color: var(--color-black);
}
.support-program-card__cta-label {
  flex: 1 1 auto;
  padding: 0.9rem 1.25rem;
}
.support-program-card__cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.85rem;
  border-left: 2px solid var(--color-web-red);
  color: var(--color-web-red);
}
.support-program-card__cta-icon .material-symbols-outlined {
  font-size: 1.75rem;
  line-height: 1;
}

/* Program finder Page */
.program-finder-wrapper {
  display: flex;
  flex-direction: column;
}

.program-finder__legend {
  list-style: none;
  font-size: 1.25rem;
  line-height: 1.6875rem;
  letter-spacing: 0.025rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  align-items: flex-start;
  width: max-content;
  text-align: left;
}

.program-finder__legend-acronym {
  color: var(--color-web-red);
  font-weight: var(--font-weight-bold);
}

.program-finder__filters {
  padding: 1.25rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.program-finder__controls {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.program-finder__control {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.program-finder__select {
  width: 100%;
}

.program-finder__select-btn {
  width: 100%;
  text-align: left;
  border: 2px solid var(--color-web-red);
  border-radius: 0;
  padding: 0.65rem 2.8rem 0.65rem 0.75rem;
  background: transparent;
  color: var(--color-black);
  font-weight: var(--font-weight-regular);
  position: relative;
  font-size: 1rem;
  line-height: 1.5rem;
  cursor: pointer;
  background-image: linear-gradient(var(--color-web-red), var(--color-web-red));
  background-repeat: no-repeat;
  background-position: right 2.7rem center;
  background-size: 2px 100%;
  transition: background-image 0.2s ease;
}
.program-finder__select-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.7rem;
  width: 1.4rem;
  height: 1.4rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='12' viewBox='0 0 18 12'%3E%3Cpath fill='%23b60205' d='M3 3.5 9 9.5l6-6-0.8-0.8L9 7.9 3.8 2.7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 1.4rem 1.4rem;
  background-position: center;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.25s ease;
  pointer-events: none;
}

.program-finder__select-btn.dropdown-toggle::after {
  display: none !important;
}

.program-finder__select-btn[aria-expanded=true]::before,
.program-finder__select-btn.is-open::before {
  transform: translateY(-50%) rotate(180deg);
}

.program-finder__menu {
  width: 100%;
  max-height: none;
  overflow: visible;
  border-radius: 0;
  border: 2px solid var(--color-web-red);
  padding: 0.35rem 0;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.program-finder__menu.show {
  opacity: 1;
  transform: translateY(0);
}

.program-finder__select .dropdown-menu {
  transform: translate(0px, 46px) !important;
}

.program-finder__menu .dropdown-item {
  font-size: 0.98rem;
  color: var(--color-black);
  padding: 0.4rem 0.75rem;
}

.program-finder__menu .dropdown-item:hover,
.program-finder__menu .dropdown-item:focus-visible {
  background: var(--color-light-background);
  color: var(--color-web-red);
}

.program-finder__search {
  border: 2px solid var(--color-web-red);
  border-radius: 0;
  padding: 0.65rem 0.75rem;
  min-height: 3rem;
  font-size: 1rem;
  line-height: 1.5rem;
  background: transparent;
}

.program-finder__reset {
  font-weight: var(--font-weight-bold);
  text-decoration: underline;
  color: var(--color-web-red);
}

.program-finder__table-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  padding: 0.75rem 0.5rem;
  border-bottom: 2px solid var(--color-web-red);
}

.program-finder__rows {
  display: flex;
  flex-direction: column;
}

.program-finder__row {
  display: grid;
  grid-template-columns: 1fr;
  padding: 1rem 0.5rem;
  gap: 0.35rem;
}

.program-finder__row:nth-child(even) {
  background: var(--color-light-background);
}

.program-finder__cell {
  font-size: 1rem;
  line-height: 1.45rem;
}

.program-finder__cell--title a {
  color: var(--color-black);
}
.program-finder__cell--title a:hover, .program-finder__cell--title a:focus {
  color: var(--color-web-red);
  text-decoration: underline;
  cursor: pointer;
}

.program-finder__col--title {
  padding-right: 0.5rem;
}

/* Faculty bio page */
.faculty-bio-section .bio-image img {
  aspect-ratio: 1/1;
  object-fit: cover;
  border: 2px solid var(--color-web-red);
  display: block;
}
.faculty-bio-section .bio-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-black);
}
.faculty-bio-section .bio-phone__icon {
  color: var(--color-web-red);
  font-size: 1.75rem;
  line-height: 1;
}
.faculty-bio-section .department,
.faculty-bio-section .division,
.faculty-bio-section .bio-phone {
  font-size: 1rem;
  line-height: 1.5;
}

/* Search Results */
.search-results__container .search-results__filters {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.search-results__container .search-results__form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: stretch;
}
.search-results__container .search-results__search {
  display: grid;
  grid-template-columns: 1fr 2.75rem;
  border: 2px solid var(--color-web-red);
  flex: 1 1 16rem;
  min-width: 0;
}
.search-results__container .search-results__search input {
  border-radius: 0;
}
.search-results__container .search-results__search-icon {
  border: 0;
  border-left: 2px solid var(--color-web-red);
  background: transparent;
  color: var(--color-web-red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  width: 100%;
  padding: 0;
}
.search-results__container .search-results__search-icon:hover, .search-results__container .search-results__search-icon:focus-visible {
  background: var(--color-light-background);
  color: var(--color-black);
}
.search-results__container .search-results__search-icon .material-symbols-outlined {
  font-size: 1.5rem;
  line-height: 1;
  transform: rotateY(180deg);
}
.search-results__container .search-results__submit {
  flex: 0 0 auto;
  align-self: stretch;
  white-space: nowrap;
}
.search-results__container .search-results__filter {
  width: auto;
  display: inline-flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-top: 0.25rem;
}
.search-results__container .search-results__filter-btn {
  padding-right: 3.75rem;
  width: fit-content;
  cursor: pointer;
  transition: background-image 0.15s ease;
}
.search-results__container .program-finder__select-btn.is-open {
  background-image: linear-gradient(var(--color-web-red), var(--color-web-red));
  background-size: 2px 100%;
}
.search-results__container .search-results__filter-panel {
  border: 2px solid var(--color-web-red);
  padding: 0 1.5rem;
  margin-top: -4px;
  display: block;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  transform: translateY(-6px);
  border-color: transparent;
  transition: opacity 0.3s ease, transform 0.3s ease, max-height 0.35s ease, padding 0.3s ease, border-color 0.3s ease;
}
.search-results__container .search-results__filter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1.5rem 2rem;
}
.search-results__container .search-results__filter.is-open .search-results__filter-panel {
  opacity: 1;
  max-height: 1200px;
  padding: 1.5rem;
  visibility: visible;
  transform: translateY(0);
  border-color: var(--color-web-red);
}
.search-results__container .search-results__filter-col h4 {
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--color-web-red);
  padding-bottom: 0.75rem;
}
.search-results__container .search-results__link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.search-results__container .search-results__link-list a {
  color: var(--color-web-red);
  text-decoration: underline;
}
.search-results__container .search-results__select-group label {
  font-weight: var(--font-weight-regular);
  font-size: 1rem;
  font-family: var(--font-sans);
}
.search-results__container .search-results__select {
  position: relative;
  border: 2px solid var(--color-web-red);
  border-radius: 0;
  background: transparent;
  padding-right: 2.8rem;
  background-image: linear-gradient(var(--color-web-red), var(--color-web-red));
  background-repeat: no-repeat;
  background-position: right 2.7rem center;
  background-size: 2px 100%;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  margin-bottom: 1.5rem;
}
.search-results__container .search-results__select:focus-within {
  border-color: var(--color-desert-gold);
  box-shadow: 0 0 0 2px rgba(182, 2, 5, 0.18);
}
.search-results__container .search-results__select select {
  border: 0;
  padding: 0.65rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
  appearance: none;
  background: transparent;
  width: 100%;
  cursor: pointer;
}
.search-results__container .search-results__select .material-symbols-outlined {
  position: absolute;
  top: 50%;
  right: 0.65rem;
  width: 1.4rem;
  height: 1.4rem;
  transform: translateY(-50%);
  text-align: center;
  color: var(--color-web-red);
  font-size: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='12' viewBox='0 0 18 12'%3E%3Cpath fill='%23b60205' d='M3 3.5 9 9.5l6-6-0.8-0.8L9 7.9 3.8 2.7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 1.4rem 1.4rem;
  background-position: center;
  transition: transform 0.25s ease;
  pointer-events: none;
}
.search-results__container .search-results__select.is-open .material-symbols-outlined {
  transform: translateY(-50%) rotate(180deg);
}
.search-results__container .search-results__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 1rem;
  margin: 1rem 0;
}
.search-results__container .search-results__divider {
  border-top: 2px solid var(--color-web-red);
  width: 100%;
}
.search-results__container .search-results__list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.search-results__container .search-results__item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.search-results__container .search-results__title {
  margin-bottom: 0.75rem;
}
.search-results__container .search-results__item p {
  margin-bottom: 0.35rem;
}
.search-results__container .search-results__link {
  text-decoration: underline;
  word-break: break-word;
  font-size: 1.25rem;
}

/* News Page */
.newsroom .news-intro {
  max-width: 71.4375rem;
}

.news-layout {
  align-items: flex-start;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.25rem;
  margin-bottom: 2rem;
}

.news-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 1.2rem 0;
  position: relative;
  isolation: isolate;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.news-item::before {
  content: "";
  position: absolute;
  inset: 0;
  left: -1.15rem;
  right: -1.15rem;
  background: transparent;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  z-index: -1;
}
.news-item__media {
  height: 11.4375rem;
}
.news-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news-item__category {
  text-transform: uppercase;
  letter-spacing: 0.07rem;
  font-weight: var(--font-weight-bold);
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
.news-item .card-title {
  margin-bottom: 1.25rem;
}
.news-item .card-title a {
  color: var(--color-black);
  text-decoration: none;
}
.news-item .card-title a:hover, .news-item .card-title a:focus-visible {
  color: var(--color-web-red);
}
.news-item__excerpt {
  margin: 0;
}

.news-item__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  text-indent: -9999px;
  overflow: hidden;
}

.news-item__overlay:focus-visible {
  outline: 2px solid var(--color-desert-gold);
  outline-offset: 6px;
}

.news-item:hover,
.news-item:focus-within {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
  cursor: pointer;
}
.news-item:hover .card-title,
.news-item:focus-within .card-title {
  color: var(--color-web-red);
}

.news-item:hover::before,
.news-item:focus-within::before {
  background: var(--color-light-background);
}

.news-pagination,
.program-finder-pagination {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 1rem;
  letter-spacing: 0.02rem;
}
.news-pagination__pages,
.program-finder-pagination__pages {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
.news-pagination__link,
.program-finder-pagination__link {
  text-decoration: none;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.news-pagination__link--control,
.program-finder-pagination__link--control {
  color: var(--color-web-red);
  font-weight: var(--font-weight-bold);
}
.news-pagination__link--control:hover, .news-pagination__link--control:focus-visible,
.program-finder-pagination__link--control:hover,
.program-finder-pagination__link--control:focus-visible {
  text-decoration: underline;
  color: var(--color-web-red);
}
.news-pagination__link--page,
.program-finder-pagination__link--page {
  color: var(--color-black);
  text-decoration: underline;
}
.news-pagination__link--page:hover, .news-pagination__link--page:focus-visible,
.program-finder-pagination__link--page:hover,
.program-finder-pagination__link--page:focus-visible {
  text-decoration-thickness: 2px;
  color: var(--color-web-red);
}
.news-pagination__link--page[aria-current=page], .news-pagination__link--page.is-active,
.program-finder-pagination__link--page[aria-current=page],
.program-finder-pagination__link--page.is-active {
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  color: var(--color-black);
}
.news-pagination__limit,
.program-finder-pagination__limit {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.news-pagination .form-select,
.program-finder-pagination .form-select {
  width: auto;
  min-width: 5.25rem;
  height: auto;
  padding: 0.35rem 2.4rem 0.35rem 0.75rem;
  border-radius: 0;
  border: 2px solid var(--color-web-red);
  color: var(--color-black);
  background-color: transparent;
  background-image: linear-gradient(#b10000, #b10000), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='12' viewBox='0 0 18 12'%3E%3Cpath fill='%23b10000' d='M3 3.5L9 9.5 15 3.5l-.8-.8L9 7.9 3.8 2.7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2.15rem center, right 0.35rem center;
  background-size: 2px 100%, 1.5rem 1rem;
  appearance: none;
  box-shadow: none;
}

/* ----------------------------------------
Newsroom - News Article
---------------------------------------- */
.news-main .news-category {
  font-size: 1rem;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 0.07rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.article-socials {
  color: var(--color-black);
  gap: 0.75rem;
  font-size: 0.875rem;
}
.article-socials__label {
  letter-spacing: 0.02rem;
}
.article-socials__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  line-height: 1;
}
.article-socials img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0);
  max-height: 1.4rem;
  max-width: 1.5rem;
}

.article-divider {
  border: 0;
  border-top: 2px solid var(--color-web-red);
  margin: 2.75rem 0;
  opacity: 1;
}

.article-gallery__grid {
  --article-gallery-gap: 0.75rem;
  --article-gallery-height: clamp(11rem, 22vw, 15rem);
}

.article-gallery__item {
  position: relative;
  width: 100%;
  height: var(--article-gallery-height);
  overflow: hidden;
  border: 1px solid #e6e6e6;
}
.article-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-gallery__wide {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border: 1px solid #e6e6e6;
}
.article-gallery__wide .article-gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-gallery__caption {
  font-size: 0.95rem;
  color: var(--color-black);
}

.article-info-blurb {
  border-left: 2px solid var(--color-web-red);
  padding-left: 1rem;
  margin-top: 1rem;
}
.article-info-blurb p {
  margin: 0;
}

.article-figure .article-figure__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.article-figure .article-figure__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-figure .article-figure__caption {
  font-size: 0.95rem;
  color: var(--color-black);
}

.related-posts__grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 0.15rem;
}
.related-posts__grid .campus-news-card__link {
  aspect-ratio: 1/1;
}

.related-posts .campus-news-card {
  height: 17.25rem;
}
.related-posts .campus-news-card__link {
  align-items: flex-start;
}
.related-posts .campus-news-card__content {
  justify-content: flex-start;
  padding-top: 0;
  padding: 1rem;
  max-width: 100%;
}
.related-posts .campus-news-card__icon {
  left: 1.25rem;
  right: auto;
}

/* ----------------------------------------
Sidebar Page Components
---------------------------------------- */
.sidebar-page__layout {
  row-gap: 1.25rem;
}

.sidebar-page__content {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}

.sidebar-page__content-inner {
  width: 100%;
}

.sidebar-page__content .container,
.sidebar-page__content .container-fluid,
.sidebar-page__content .container-xxl {
  max-width: 100%;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.sidebar-page__side {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.sidebar-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}

.sidebar-nav__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: var(--font-weight-semibold);
  line-height: 1.2;
  margin: 0;
}

.sidebar-nav__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.7rem 0.9rem;
  background: var(--color-white);
  border: 1px solid #e6e2dc;
  border-radius: 0.75rem;
  color: var(--color-black);
  font-weight: var(--font-weight-medium);
  text-align: left;
}

.sidebar-nav__toggle .material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 200, "GRAD" 0, "opsz" 24;
  transition: transform 0.2s ease, color 0.2s ease;
  color: var(--color-web-red);
}

.sidebar-nav__body {
  margin-top: 0.5rem;
}

.sidebar-nav__body.collapse:not(.show) {
  overflow: hidden;
}

.sidebar-nav__toggle[aria-expanded=true] .sidebar-nav__chevron .material-symbols-outlined {
  transform: rotate(180deg);
}

.sidebar-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.sidebar-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  padding: 0.3rem 0;
  line-height: 1.5rem;
  letter-spacing: 0.02rem;
  color: var(--color-web-red);
  font-weight: var(--font-weight-regular);
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  border: none;
  background-color: transparent;
}

.sidebar-nav__text {
  text-decoration: underline;
  text-decoration-color: var(--color-web-red);
  text-underline-offset: 0.15rem;
}

.sidebar-nav__count {
  color: var(--color-black);
  text-decoration: none;
  min-width: 1.5rem;
  text-align: right;
}

.sidebar-nav__link:hover,
.sidebar-nav__link:focus-visible {
  color: var(--color-web-red);
  background: var(--color-white);
  border-color: #e6e2dc;
  text-decoration: none;
  cursor: pointer;
  font-weight: var(--font-weight-bold);
}

.sidebar-nav__link:focus-visible {
  outline: 2px solid var(--color-desert-gold);
}

.sidebar-nav__link:focus {
  color: var(--color-web-red);
}

.sidebar-nav__link.active {
  font-weight: 700;
}

.sidebar-nav__link[aria-expanded=true] .sidebar-nav__text,
.sidebar-nav__link[aria-expanded=true]:hover .sidebar-nav__text,
.sidebar-nav__link[aria-expanded=true]:focus-visible .sidebar-nav__text {
  text-decoration: underline;
}

.sidebar-nav__link:hover .sidebar-nav__text,
.sidebar-nav__link:focus-visible .sidebar-nav__text {
  text-decoration: underline;
}

/* ----------------------------------------
Forms
---------------------------------------- */
.form-card {
  padding: clamp(2.5rem, 6vw, 3.5rem) clamp(2rem, 5vw, 3rem);
}
.form-card__form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

label,
.form-label {
  display: block;
  font-family: var(--font-serif);
  font-weight: var(--font-weight-bold);
  color: var(--color-black);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.form-helper {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.75);
}

textarea.form-control {
  min-height: 15.5rem;
}

.form-field {
  width: 100%;
  border: 2px solid var(--color-web-red);
  border-radius: 0;
  padding: 0.55rem 0.75rem;
  background: transparent;
  color: var(--color-black);
  font-size: 1rem;
  line-height: 1.5rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: var(--color-white);
}
.form-field::placeholder {
  font-size: 1rem;
  font-weight: var(--font-weight-regular);
  line-height: 1.5rem;
  letter-spacing: 0.02rem;
  color: var(--color-black);
}
.form-field:focus, .form-field:focus-visible {
  outline: none;
  border-color: var(--color-desert-gold);
  box-shadow: 0 0 0 2px rgba(253, 185, 19, 0.4);
}

.form-field--textarea {
  min-height: 9rem;
  resize: vertical;
}

.form-select.form-field {
  background-image: none;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.form-check .form-check-input {
  width: 1.1rem;
  height: 1.1rem;
  border: 2px solid var(--color-web-red);
  border-radius: 0;
  box-shadow: none;
  position: relative;
}
.form-check .form-check-input:checked {
  background-color: var(--color-web-red);
}
.form-check .form-check-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(253, 185, 19, 0.4);
}
.form-check .form-check-input[type=radio] {
  border-radius: 999px;
}
.form-check .form-check-label {
  margin: 0;
  margin-top: 2px;
  font-weight: var(--font-weight-regular);
  font-family: var(--font-sans);
}

/* ----------------------------------------
Footer
---------------------------------------- */
.site-footer {
  background: var(--color-web-red);
  color: var(--color-white);
  padding: 0;
  font-size: 0.95rem;
}
.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer__layout {
  display: grid;
  grid-template-columns: 1fr;
}

.site-footer__brand {
  background: var(--color-light-background);
  color: var(--color-black);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  min-height: 100%;
}

.site-footer__logo {
  max-width: 300px;
  height: auto;
  padding-bottom: 2rem;
  width: 100%;
}

.site-footer__address {
  font-style: normal;
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: 0.025rem;
}
.site-footer__address a {
  color: inherit;
  text-decoration: none;
}
.site-footer__address a:hover, .site-footer__address a:focus, .site-footer__address a:active {
  color: var(--color-web-red);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 2.5rem;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.footer-social__link img {
  width: 1.8125rem;
  height: 2.125rem;
  object-fit: contain;
}
.footer-social__link img:hover, .footer-social__link img:focus, .footer-social__link img:active {
  filter: opacity(0.6);
}

.site-footer__links {
  padding: 2.5rem 2rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background: var(--color-web-red);
  align-items: flex-start;
  align-self: stretch;
}

.site-footer--after-community .site-footer__brand {
  padding: 10rem 2rem 2.5rem;
}

.site-footer__link-columns {
  display: grid;
  gap: 2rem;
  width: 100%;
}

.site-footer__column {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.site-footer__heading {
  font-size: 1rem;
  font-weight: var(--font-weight-bold);
  text-transform: none;
  font-size: 1.25rem;
  line-height: 1rem;
  letter-spacing: 0.025rem;
  color: var(--color-white);
}

.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.site-footer__list a {
  font-weight: var(--font-weight-regular);
  color: rgba(255, 255, 255, 0.9);
  font-family: Roboto;
  font-size: 1rem;
  line-height: 2.5rem;
}
.site-footer__list a:hover, .site-footer__list a:focus {
  color: var(--color-white);
  text-decoration: underline;
}

.site-footer__cta {
  margin: 0;
}

.site-footer__legal {
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  width: 100%;
}

/* ----------------------------------------
Responsive Styles
---------------------------------------- */
@media (max-width: 575.98px) {
  .hero-content {
    max-width: 330px;
  }
  .hero-utility {
    gap: 0.75rem;
  }
}
@media (max-width: 767.98px) {
  .pathways-grid {
    margin-right: -12px;
    margin-left: -12px;
  }
  .pathways-card__title {
    font-size: 1rem;
  }
  .pathways-card__cta,
  .pathways-card:hover .pathways-card__cta,
  .pathways-card:focus-visible .pathways-card__cta {
    display: none;
  }
  .pathways-card:hover .pathways-card__title,
  .pathways-card:focus-visible .pathways-card__title {
    transform: translateY(-1rem);
  }
  .campus-news-card {
    min-height: 14rem;
  }
  .more-experience-cta .container-sm {
    padding-left: 0;
    padding-right: 0;
  }
  .spotlight__media {
    margin-left: 30px;
  }
  .spotlights__controls {
    margin-left: -3px;
  }
  .community-cta__actions .btn {
    width: 100%;
  }
  .program-finder__cell {
    position: relative;
    padding-left: 0.25rem;
  }
  .program-finder__cell:nth-child(1)::before {
    content: "Degrees/Certificate";
  }
  .program-finder__cell:nth-child(2)::before {
    content: "Program of Study";
  }
  .program-finder__cell:nth-child(3)::before {
    content: "Academic Pathway";
  }
  .program-finder__cell::before {
    display: block;
    font-size: 0.85rem;
    color: var(--color-secondary-gray);
    margin-bottom: 0.1rem;
  }
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .spotlights__carousel {
    align-items: center;
    text-align: center;
    margin: 0 auto;
  }
  .spotlight {
    text-align: center;
    align-items: center;
  }
  .spotlight__media {
    margin: 0 auto;
  }
  .spotlight__body {
    align-items: center;
    margin: 0 auto;
  }
  .spotlights__controls {
    align-self: center;
  }
}
@media (max-width: 991.98px) {
  h1 {
    font-size: 3.75rem;
    line-height: 4rem;
  }
  h2 {
    font-size: 3rem;
    line-height: normal;
  }
  p,
  .intro-text,
  .important-link-info__link,
  .text-section ul,
  .location-image-card ul,
  ul.program-finder__legend,
  .search-results__container .search-results__link {
    font-size: 1rem;
    line-height: 1.5rem;
    letter-spacing: 0.02rem;
  }
  .hero-wrapper {
    padding-top: 0.5rem;
    padding-bottom: 4rem;
    padding-left: 0;
    padding-right: 0;
  }
  .hero-wrapper .hero-top-row {
    padding-left: 1rem;
    padding-right: 0.5rem;
  }
  .hero-wrapper .hero-primary-nav {
    width: 100%;
    padding: 1rem 1.2rem 0.3rem;
  }
  .hero-wrapper.red-wrapper {
    padding-bottom: 0;
  }
  .hero-brand {
    justify-content: flex-start;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
  .hero-brand .hero-logo {
    max-height: 3.5rem;
    width: auto;
  }
  .hero-utility {
    display: none;
    width: 100%;
  }
  .hero-utility-item {
    height: auto;
    min-height: 0;
    padding-left: 0;
  }
  .hero-nav {
    display: none !important;
    width: 100%;
    position: static;
    color: var(--color-black);
    flex-direction: column;
    align-items: stretch;
    box-sizing: border-box;
    background-color: var(--color-white);
    border-bottom: 2px solid var(--color-web-red);
  }
  .hero-nav .hero-mobile-search-wrapper {
    background-color: var(--color-light-background);
  }
  .hero-mobile-search-wrapper {
    display: none;
  }
  .hero-mobile-search-wrapper.is-active {
    display: block;
  }
  .hero-header[data-mobile-nav=open][data-mobile-panel=menu] .hero-nav {
    display: flex !important;
  }
  .hero-header[data-mobile-nav=open][data-mobile-panel=menu] #hero-utility {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    margin: 0;
    padding: 0.8rem 1.2rem 1.8rem;
  }
  .hero-header[data-mobile-nav=open][data-mobile-panel=menu] #hero-utility nav {
    width: 100%;
  }
  .hero-header[data-mobile-nav=open][data-mobile-panel=menu] .hero-utility-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0 !important;
    width: 100%;
  }
  .hero-header[data-mobile-nav=open][data-mobile-panel=menu] .hero-utility-list .hero-utility-item:first-child {
    padding-left: 0;
  }
  .hero-header[data-mobile-nav=open][data-mobile-panel=menu] .hero-utility-item:not(.hero-catalog-btn) {
    width: 100%;
    background: transparent;
    border-radius: 0;
  }
  .hero-header[data-mobile-nav=open][data-mobile-panel=menu] .hero-utility-item:not(.hero-catalog-btn) .hero-link {
    color: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.6rem 0;
    font-size: 1rem;
  }
  .hero-header[data-mobile-nav=open][data-mobile-panel=menu] .hero-utility-item:not(.hero-catalog-btn) .hero-link::after {
    font-size: 1.8rem;
    font-weight: var(--font-weight-regular);
  }
  .hero-header[data-mobile-nav=open][data-mobile-panel=menu] .hero-utility-item:not(.hero-catalog-btn) .hero-link:not(.hero-toggle)::after {
    font-size: 1.1rem;
    margin-right: -3px;
  }
  .hero-header[data-mobile-nav=open][data-mobile-panel=menu] .hero-utility-item--dropdown .hero-toggle {
    position: relative;
    --hero-chevron-color: var(--color-web-red);
  }
  .hero-header[data-mobile-nav=open][data-mobile-panel=menu] .hero-utility-item--dropdown .hero-utility-menu {
    position: static;
    top: auto;
    right: auto;
    min-width: 100%;
    margin-top: 0;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .hero-header[data-mobile-nav=open][data-mobile-panel=menu] .hero-utility-item--dropdown.is-open .hero-utility-menu,
  .hero-header[data-mobile-nav=open][data-mobile-panel=menu] .hero-utility-item--dropdown .hero-toggle[aria-expanded=true] + .hero-utility-menu {
    max-height: 2000px;
    overflow: visible;
  }
  .hero-header[data-mobile-nav=open][data-mobile-panel=menu] .hero-utility-item--dropdown .hero-utility-link {
    padding: 0.45rem 0;
    color: var(--color-web-red);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
  }
  .hero-header[data-mobile-nav=open][data-mobile-panel=menu] .hero-mobile-utility {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    background: var(--color-light-background);
  }
  .hero-header[data-mobile-nav=open][data-mobile-panel=menu] .hero-catalog-btn {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    border-radius: 0;
    padding: 1rem 1.25rem;
  }
  .hero-header[data-mobile-nav=open][data-mobile-panel=menu] .hero-catalog-btn:hover, .hero-header[data-mobile-nav=open][data-mobile-panel=menu] .hero-catalog-btn:active, .hero-header[data-mobile-nav=open][data-mobile-panel=menu] .hero-catalog-btn:focus {
    background-color: var(--color-desert-gold);
  }
  .hero-header[data-mobile-nav=open][data-mobile-panel=search] .hero-nav {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
  }
  .hero-header[data-mobile-nav=open][data-mobile-panel=search] #hero-mobile-search {
    margin-top: 0;
    border-bottom: 2px solid var(--color-web-red);
  }
  .hero-header[data-mobile-nav=open][data-mobile-panel=search] .hero-primary-nav,
  .hero-header[data-mobile-nav=open][data-mobile-panel=search] .hero-mobile-utility,
  .hero-header[data-mobile-nav=open][data-mobile-panel=search] #hero-utility,
  .hero-header[data-mobile-nav=open][data-mobile-panel=search] .hero-catalog-btn {
    display: none !important;
  }
  .hero-header[data-search-state=open] .hero-nav {
    flex-direction: column !important;
    align-items: stretch !important;
  }
  .hero-header[data-search-state=open] .hero-primary-nav {
    display: none !important;
  }
  .hero-utility-item--dropdown {
    position: static;
  }
  .hero-utility-item--dropdown .hero-utility-menu {
    position: static;
    top: auto;
    right: auto;
    min-width: 100%;
    margin-top: 0.75rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 0.65rem;
    padding: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
  }
  .hero-utility-item--dropdown .hero-utility-link {
    padding: 0.75rem 1rem;
    color: rgba(255, 255, 255, 0.92);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
  }
  .hero-utility-item--dropdown .hero-utility-link:hover, .hero-utility-item--dropdown .hero-utility-link:focus {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
  }
  .hero-utility-item--dropdown.is-open .hero-utility-menu,
  .hero-utility-item--dropdown .hero-toggle[aria-expanded=true] + .hero-utility-menu {
    max-height: 480px;
    padding: 0.5rem 0;
  }
  .hero-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem !important;
    width: 100%;
  }
  .hero-menu-item {
    width: 100%;
    background: var(--color-white);
    padding: 0;
    padding-top: 5px;
  }
  .hero-menu-item:not(:last-child) {
    border-bottom: 2px solid rgb(230, 230, 230);
  }
  .hero-menu .hero-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.125rem;
    line-height: 0.625rem;
    color: var(--color-black);
    --hero-chevron-color: var(--color-web-red);
    font-weight: var(--font-weight-semibold);
  }
  .hero-menu .hero-toggle::after {
    font-size: 1.8rem;
    color: var(--color-web-red);
    font-weight: var(--font-weight-regular);
  }
  .hero-menu .hero-toggle:hover, .hero-menu .hero-toggle:active, .hero-menu .hero-toggle:focus {
    background-color: var(--color-white);
  }
  .hero-menu-item .hero-mega {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 0.9rem;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.3s ease;
    background: #ffffff;
    border-bottom: none;
  }
  .hero-menu-item:not(.is-open):hover .hero-mega,
  .hero-menu-item:not(.is-open):focus-within .hero-mega {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transform: none;
  }
  .hero-menu-item .hero-mega-inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0;
  }
  .hero-menu-item .hero-mega-media img {
    display: none;
  }
  .hero-menu-item .hero-mega-columns {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: transparent;
    border-radius: 0;
  }
  .hero-menu-item .hero-mega-columns .hero-mega-column {
    border-left: 0;
    text-align: left;
    padding-left: 0;
    padding-bottom: 15px;
    padding-top: 10px;
  }
  .hero-menu-item .hero-mega-columns .hero-mega-column:first-child {
    border-bottom: 2px solid var(--color-web-red);
  }
  .hero-menu-item .hero-mega-heading {
    color: var(--color-black);
    text-transform: uppercase;
    font-size: 1rem;
  }
  .hero-menu-item .hero-mega-list a {
    color: var(--color-black);
    display: block;
  }
  .hero-menu-item .hero-mega-list a:hover,
  .hero-menu-item .hero-mega-list a:focus {
    color: var(--color-web-red);
  }
  .hero-menu-item.is-open .hero-mega,
  .hero-menu-item .hero-toggle[aria-expanded=true] + .hero-mega {
    max-height: 1200px;
    opacity: 1;
    visibility: visible;
    margin-top: 1rem;
    transform: none;
  }
  .hero-search {
    display: none !important;
  }
  .hero-subheading {
    font-size: 1.0625rem;
    padding: 0 10px;
  }
  .pathways-grid {
    gap: 0.15rem;
  }
  .campus-news-card {
    min-height: 14.1875rem;
  }
  .spotlight__media {
    width: 90%;
    margin-bottom: 2rem;
  }
  .important-link-info__content {
    display: none;
  }
  .important-link-info__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    position: relative;
    padding: 0.8rem 0;
    color: var(--color-black);
  }
  .important-link-info__link::after {
    content: "expand_more";
    font-family: "Material Symbols Outlined";
    font-size: 2rem;
    line-height: 1;
    color: var(--color-web-red);
    font-variation-settings: "FILL" 0, "wght" 200, "GRAD" 0, "opsz" 24;
    display: inline-flex;
    text-decoration: none;
    transition: transform 0.2s ease;
  }
  .important-link-info__link:hover, .important-link-info__link:focus-visible, .important-link-info__link.active {
    color: var(--color-black);
  }
  .important-link-info__link:hover .important-link-info__label, .important-link-info__link:focus-visible .important-link-info__label, .important-link-info__link.active .important-link-info__label {
    text-decoration: none;
  }
  .important-link-info__link.is-open {
    color: var(--color-web-red);
    border-bottom: 0;
  }
  .important-link-info__link.is-open::after {
    transform: rotate(180deg);
    text-decoration: none;
  }
  .important-link-info__accordion-panel {
    border-bottom: 2px solid var(--color-web-red);
    padding-top: 0.75rem;
  }
}
@media (max-width: 1199.98px) {
  .hero-menu-item:hover > .hero-toggle,
  .hero-menu-item:focus > .hero-toggle,
  .hero-menu-item:focus-visible > .hero-toggle,
  .hero-menu-item:focus-within > .hero-toggle,
  .hero-menu-item:active > .hero-toggle {
    background-color: var(--color-white);
  }
  .campus-event__details .campus-event__title {
    font-size: 1rem;
  }
  .campus-event__details .campus-event__meta {
    font-size: 0.875rem;
    letter-spacing: 0.06125rem;
  }
  .campus-news-card__title {
    font-size: 1.125rem;
  }
  .campus-news-card__meta {
    font-size: 0.875rem;
  }
  .more-experience-cta__label {
    font-size: 0.875rem;
    letter-spacing: 0.06125rem;
  }
  .want-card__category {
    font-size: 0.875rem;
  }
  .stackable-card {
    grid-template-columns: 1fr;
  }
  .stackable-card--reverse .stackable-card__panel, .stackable-card--reverse .stackable-card__media {
    order: initial;
  }
  .sidebar-nav__toggle {
    border: 2px solid var(--color-web-red);
    border-radius: 0;
    padding: 0;
    align-items: stretch;
    min-height: 2.75rem;
  }
  .sidebar-nav__toggle .sidebar-nav__title {
    display: flex;
    align-items: center;
    padding: 0.65rem 0.9rem;
  }
  .sidebar-nav__chevron {
    border-left: 2px solid var(--color-web-red);
    padding: 0 0.15rem;
    margin-left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    height: auto;
  }
  .sidebar-nav__chevron .material-symbols-outlined {
    font-size: 2.75rem;
    line-height: 1;
  }
}
@media (min-width: 576px) {
  .want-to__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .four-up-image-cards {
    --four-up-max-columns: 2;
  }
  .four-up-image-cards--two-up {
    --four-up-max-columns: 2;
  }
  .news-item {
    grid-template-columns: 40% 1fr;
  }
  .news-pagination,
  .program-finder-pagination {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  .related-posts__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 768px) {
  .pathways-grid {
    gap: 0.75rem;
    grid-auto-rows: 1fr;
  }
  .pathways-section__inner {
    gap: 2rem;
  }
  .learning-section__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 1rem;
  }
  .campus-updates__header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
  }
  .campus-events,
  .campus-news {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
  }
  .campus-events > h3,
  .campus-news > h3 {
    margin: 0;
  }
  .campus-events__list,
  .campus-news__grid {
    flex: 1 1 auto;
  }
  .campus-events__more,
  .campus-news__more {
    align-self: flex-start;
  }
  .campus-events__link--top,
  .campus-news__link--top {
    display: inline-flex;
  }
  .campus-events__more,
  .campus-news__more {
    display: none;
  }
  .campus-events__item {
    grid-template-columns: minmax(70px, 90px) minmax(0, 1fr);
  }
  .more-experience-cta__content {
    gap: 3rem;
  }
  .more-experience-cta__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
  .want-to__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .spotlight-control {
    pointer-events: auto;
  }
  .spotlights__viewport {
    display: block;
    position: relative;
  }
  .spotlight-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }
  .sidebar-page .image-gallery-slider .image-gallery-slider__viewport {
    display: grid;
    grid-template-areas: "slide" "controls";
    justify-items: center;
    gap: 0.75rem;
  }
  .sidebar-page .image-gallery-slider .carousel-inner {
    grid-area: slide;
  }
  .sidebar-page .image-gallery-slider .spotlight-control--prev,
  .sidebar-page .image-gallery-slider .spotlight-control--next {
    grid-area: controls;
    position: static;
    transform: none;
  }
  .sidebar-page .image-gallery-slider .spotlight-control--prev {
    margin-right: 0.5rem;
  }
  .sidebar-page .image-gallery-slider .spotlight-control--next {
    margin-left: 0.5rem;
  }
  .spotlight-control--prev {
    left: 0px;
  }
  .spotlight-control--next {
    right: 0px;
  }
  .community-cta__actions {
    flex-direction: row;
    justify-content: center;
  }
  .site-footer__link-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .site-footer__cta {
    align-self: flex-start;
    width: auto;
  }
  .site-footer__legal {
    text-align: left;
  }
  .important-link-info__accordion-panel {
    display: none !important;
  }
  .persona-wayfinder__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-cards__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .fast-fact {
    min-height: 18.9375rem;
  }
  .fast-facts__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .persona-wayfinder__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .location-image-card__inner {
    flex-direction: row;
  }
  .location-image-card__media,
  .location-image-card__content {
    flex: 1 1 0;
  }
  .link-list__grid,
  .button-list__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .link-list__grid a {
    font-size: 1.25rem;
    line-height: 1.6875;
  }
  .program-finder__controls {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .program-finder__table-header {
    grid-template-columns: 1.25fr 1fr 1fr;
    align-items: end;
  }
  .faculty-directory .program-finder__table-header {
    grid-template-columns: 1.25fr 1fr 1fr 1fr;
  }
  .program-finder__row {
    grid-template-columns: 1.25fr 1fr 1fr;
    gap: 0.75rem;
    align-items: center;
  }
  .faculty-directory .program-finder__row {
    grid-template-columns: 1.25fr 1fr 1fr 1fr;
  }
  .campus-location {
    grid-template-columns: 18.875rem 1fr;
    align-items: start;
    gap: 1.5rem;
  }
  .news-item {
    grid-template-columns: 18.9375rem 1fr;
  }
  .related-posts__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 992px) {
  .hero-wrapper {
    padding-bottom: 7rem;
  }
  .hero-wrapper.red-wrapper {
    padding-bottom: 2rem;
  }
  .hero-content {
    padding-top: 3rem;
  }
  .hero-primary-nav {
    flex: 1 1 auto;
  }
  .hero-menu {
    flex-wrap: nowrap !important;
    justify-content: center;
  }
  .hero-menu-item {
    flex: 0 0 auto;
  }
  .hero-menu .hero-link {
    white-space: nowrap;
    word-break: normal;
    padding: 10px 8px;
  }
  .hero-menu-item:hover > .hero-toggle,
  .hero-menu-item:focus-within > .hero-toggle,
  .hero-menu-item.is-open > .hero-toggle,
  .hero-menu-item .hero-toggle[aria-expanded=true] {
    --hero-chevron-color: var(--color-black);
    background-color: var(--color-desert-gold);
    color: var(--color-black);
  }
  .hero-utility-item .hero-link:hover, .hero-utility-item .hero-link:focus, .hero-utility-item .hero-link:active, .hero-utility-item .hero-link:focus-within {
    border-bottom: 1px solid lightgray;
    border-radius: 0;
  }
  .hero-search {
    margin-left: 0.5rem;
  }
  .hero-search .hero-icon {
    color: var(--color-desert-gold);
  }
  .hero-utility {
    align-self: flex-end;
    justify-content: flex-end !important;
  }
  .hero-utility .hero-toggle {
    background-color: white;
  }
  .hero-utility nav {
    flex: 0 1 auto;
  }
  .pathways-section__inner {
    gap: 2.5rem;
  }
  .pathways-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 1fr;
  }
  .pathways-section__header {
    align-items: flex-start;
  }
  .pathways-section__intro {
    margin-top: 0.35rem;
  }
  .learning-section {
    --learning-media-width: clamp(300px, 34vw, 420px);
    --learning-media-gap: 2.25rem;
  }
  .learning-section__media {
    display: block;
    position: absolute;
    top: 3rem;
    bottom: 0;
    left: 0;
  }
  .learning-section__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left top;
  }
  .learning-section .container {
    position: relative;
    align-items: center;
    z-index: 1;
  }
  .learning-section__body {
    margin-left: calc(var(--learning-media-width) + var(--learning-media-gap));
    max-width: none;
  }
  .campus-updates__pattern {
    padding-bottom: 16rem;
  }
  .campus-updates__header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2.5rem;
  }
  .campus-section-bar {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
  }
  .campus-updates__layout {
    grid-template-columns: minmax(0, 0.6fr) minmax(0, 1.15fr);
    column-gap: 1.25rem;
    row-gap: 2.75rem;
    align-items: stretch;
  }
  .campus-events {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
  }
  .campus-events__list {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
  .campus-events__more {
    align-self: flex-start;
  }
  .campus-news {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
  }
  .campus-news__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    flex: 1 1 auto;
  }
  .campus-news__more {
    align-self: flex-start;
  }
  .campus-news-card {
    min-height: 0;
  }
  .campus-event__month {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
  }
  .campus-event__day {
    font-size: 4.5rem;
    line-height: 1;
    font-family: var(--font-serif);
  }
  .campus-news__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .more-experience-cta {
    margin-top: -14rem;
  }
  .more-experience-cta__content {
    grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr);
    align-items: center;
  }
  .more-experience-cta__text p {
    font-size: 1.25rem;
    line-height: 1.6875rem;
  }
  .more-experience-cta__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    align-items: flex-start;
  }
  .more-experience-cta__stat:nth-child(2) {
    margin-top: 6rem;
  }
  .want-to h2 {
    text-align: center;
  }
  .want-to__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
  }
  .want-card .card-title {
    font-size: 1.625rem;
    padding-top: 1.5rem;
  }
  .want-card.support-program-card .card-title {
    font-size: 1.5rem;
    padding-top: 0;
  }
  .card-title {
    font-size: 1.625rem;
  }
  .spotlight-control--prev {
    left: -30px;
  }
  .image-gallery-slider__viewport .spotlight-control--prev {
    left: 0px;
  }
  .spotlight-control--next {
    right: 0px;
  }
  .spotlight {
    flex-direction: row;
    align-items: center;
    gap: 2.5rem;
    justify-content: center;
  }
  .spotlight__media {
    max-width: 24rem;
    margin: 0;
  }
  .spotlight__body {
    flex: 1 1 auto;
    max-width: 32rem;
  }
  .spotlight__quote {
    font-size: 1.625rem;
    line-height: 2.25rem;
  }
  .news-article .spotlight {
    gap: 2rem;
  }
  .news-article .spotlight__body {
    flex: 1 1;
  }
  .news-article .spotlight__media {
    max-width: 14rem;
  }
  .hsi__intro p {
    max-width: 40rem;
    margin: 0 auto;
  }
  .hsi__items {
    flex-direction: row;
    justify-content: center;
    gap: clamp(2rem, 4vw, 3rem);
  }
  .hsi-card {
    flex: 1 1 0;
  }
  .hsi-card + .hsi-card {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }
  .hsi-card::before {
    content: "";
    position: absolute;
    top: 0.25rem;
    bottom: 0.25rem;
    left: 0;
    width: 2px;
    background: var(--color-web-red);
    transform: translateX(-1.5rem);
    pointer-events: none;
  }
  .hsi-card:first-child::before {
    display: none;
  }
  .site-footer__layout {
    grid-template-columns: 30% 70%;
  }
  .site-footer__links {
    gap: 2.5rem;
  }
  .site-footer__brand,
  .site-footer__links {
    padding: 6rem 3.5rem;
    border-top: 2px solid var(--color-web-red);
  }
  .site-footer--after-community .site-footer__brand,
  .site-footer--after-community .site-footer__links {
    padding: 10rem 3.5rem 6rem;
  }
  .site-footer__address {
    font-size: 1.25rem;
    line-height: 1.6875rem;
  }
  .site-footer__legal {
    padding: 0;
  }
  .footer-social__link img {
    width: auto;
    height: 1.5rem;
  }
  .inner-landing-page .hero-wrapper {
    padding-bottom: 4rem;
  }
  .stackable-alternating-cards .container {
    padding-left: 0;
    padding-right: 0;
  }
  .stackable-card__text p {
    font-size: 1.25rem;
    line-height: 1.6875rem;
    letter-spacing: 0.025rem;
  }
  .stackable-card__media img {
    height: 32.375rem;
  }
  .full-width-cta__text p {
    font-size: 1.25rem;
    line-height: 1.6875rem;
  }
  .right-left-cta .stackable-card {
    --right-left-cta-panel-width: clamp(var(--right-left-cta-panel-min), 36vw, var(--right-left-cta-panel-max));
    --right-left-cta-media-width: clamp(var(--right-left-cta-media-min), 49vw, var(--right-left-cta-media-max));
    --right-left-cta-panel-offset: clamp(3rem, 6vw, 5rem);
    --right-left-cta-panel-height: calc(var(--right-left-cta-media-width) - var(--right-left-cta-panel-offset));
    align-items: center;
    display: flex;
    flex-direction: row;
    gap: 0;
    justify-content: center;
  }
  .right-left-cta .stackable-card--reverse {
    flex-direction: row-reverse;
  }
  .right-left-cta .stackable-card--reverse .stackable-card__panel,
  .right-left-cta .stackable-card--reverse .stackable-card__media {
    order: initial;
  }
  .right-left-cta .stackable-card__panel {
    flex: 0 0 var(--right-left-cta-panel-width);
    max-width: var(--right-left-cta-panel-max);
    margin: 0;
    margin-right: calc(-0.1 * var(--right-left-cta-panel-overlap));
    min-height: clamp(25rem, var(--right-left-cta-panel-height), 34rem);
    padding: clamp(2.75rem, 4vw, 3.75rem);
  }
  .right-left-cta .stackable-card--reverse .stackable-card__panel {
    margin-right: 0;
    margin-left: calc(-0.1 * var(--right-left-cta-panel-overlap));
  }
  .right-left-cta .stackable-card__media {
    flex: 0 0 var(--right-left-cta-media-width);
    max-width: var(--right-left-cta-media-max);
  }
  .right-left-cta .stackable-card__media img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    max-width: none;
  }
  .three-up-cta__items {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }
  .three-up-card {
    flex: 1 1 0;
    gap: 1.5rem;
  }
  .three-up-card + .three-up-card {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }
  .three-up-card__content {
    border-left: 2px solid var(--color-web-red);
    padding-left: 20px;
  }
  .location-image-card__inner {
    align-items: flex-start;
  }
  .location-image-card__media {
    flex: 0 0 32.375rem;
    flex: 0 0 50%;
  }
  .location-image-card__content {
    flex: 1 1 auto;
  }
  .persona-wayfinder__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .contact-cards__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .fast-facts__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .important-dates__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .four-up-image-cards {
    --four-up-max-columns: 3;
  }
  .four-up-image-cards--two-up {
    --four-up-max-columns: 2;
  }
  .four-up-image-cards--two-up .four-up-image-cards__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sidebar-page__layout {
    row-gap: 0;
	  margin: 0;
  }
  .sidebar-page__side {
    position: sticky;
    top: 2rem;
    align-self: flex-start;
  }
  .newsroom:not(.news-article) .sidebar-page__side {
    margin-top: 5rem;
  }
  .sidebar-nav__header {
    margin-bottom: 0.75rem;
  }
  .sidebar-nav__body.collapse {
    display: block;
    height: auto !important;
    visibility: visible;
    overflow: visible;
  }
  .program-finder__controls {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .support-filter-section {
    padding-bottom: 14rem;
  }
  .support-filter__list, .search-results__container .search-results__check-list {
    column-count: 2;
  }
  .support-programs {
    margin-top: -18rem;
  }
  .related-posts__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .search-results__container .search-results__check-list {
    column-count: 1;
  }
}
@media (min-width: 1200px) {
  .hero-nav {
    width: auto;
  }
  .more-experience-cta__value {
    font-size: 5.625rem;
  }
  .more-experience-cta__content {
    padding: 2rem 1rem 2rem 0;
  }
  .support-programs .want-to__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .want-to__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .fast-facts__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .four-up-image-cards {
    --four-up-max-columns: 4;
  }
  .four-up-image-cards--two-up {
    --four-up-max-columns: 2;
  }
}
.four-up-image-cards--two-up {
  --four-up-max-columns: 2 !important;
}

@media (min-width: 1400px) {
  .hero-mega .hero-mega-inner {
    grid-template-columns: minmax(380px, 260px) minmax(0, 1fr);
    padding: 3rem 5rem;
  }
  .news-article .spotlight__media {
    max-width: 24rem;
  }
}
