            :root {
              --ttu-red: #E90802;
              --ttu-red-dark: #B00000;
              --ttu-black: #000;
              --ttu-gray: #f5f5f5;
              --ttu-white: #fff;
              --content-max: 1200px;
            }
            
/* HERO */
.future-hero-wrap {
  margin-top: -80px;
}

.future-hero-bg {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  min-height: clamp(650px, 82vh, 820px);
  padding: 120px 7% 90px;
  color: #fff;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  border-bottom: 10px solid var(--ttu-red);
}

.future-hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.92) 0%,
    rgba(0,0,0,.82) 28%,
    rgba(0,0,0,.58) 58%,
    rgba(0,0,0,.25) 100%
  );
}

.future-hero-bg::before {
  z-index: 1;
}

.future-hero-content {
  z-index: 3;
}

.future-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.future-kicker {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 800;
  margin-bottom: 18px;
}

.future-hero-bg h1 {
  color: #fff;
  font-size: clamp(3.2rem, 7vw, 7rem);
  line-height: .92;
  text-transform: uppercase;
  font-weight: 900;
  margin: 0 0 26px;
  max-width: 950px;
}

.future-hero-bg h1 span {
  color: var(--ttu-red);
}

.future-hero-bg p {
  color: #fff;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.7;
  max-width: 720px;
}
/* BUTTONS */
            .future-btn {
              display: inline-block;
              padding: 14px 24px;
              min-height: 48px;
              text-transform: uppercase;
              font-weight: 800;
              text-decoration: none;
              letter-spacing: .04em;
              line-height: 1.25;
              border-radius: 0;
            }
            
            .future-btn.red {
              background: var(--ttu-red);
              color: white;
            }
            
            .future-btn.black {
              background: black;
              color: white;
            }
            
            .future-btn.outline {
              border: 2px solid white;
              color: white;
            }
            
            .future-btn:hover,
            .future-btn:focus-visible {
              background: white;
              color: black;
              outline: 3px solid white;
              outline-offset: 3px;
            }

.future-hero-buttons {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.future-hero-buttons .future-btn {
    width: auto;
    flex: 0 0 auto;
}

.future-fast-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 42px;
  max-width: 900px;

  background: rgba(0,0,0,.35);
  backdrop-filter: blur(6px);

  border-top: 1px solid rgba(255,255,255,.25);
  border-bottom: 1px solid rgba(255,255,255,.25);
}

.future-fast-fact {
  padding: 20px 24px;
  border-right: 1px solid rgba(255,255,255,.18);
}

.future-fast-fact:last-child {
  border-right: none;
}

.future-fact-number {
  display: block;
  font-size: clamp(1.8rem,3vw,2.5rem);
  font-weight: 900;
  line-height: 1;
}

.future-fact-label {
  display: block;
  margin-top: 8px;
  text-transform: uppercase;
  font-size: .88rem;
  line-height: 1.4;
  letter-spacing: .05em;
}

@media screen and (max-width: 650px) {

  .future-hero-bg {

    /* MOBILE HERO HEIGHT */
    min-height: 580px;

    padding: 90px 24px 70px;

    background-position: center center !important;
  }

  .future-hero-bg::before{
    background:
      linear-gradient(
        90deg,
        rgba(0,0,0,.92) 0%,
        rgba(0,0,0,.78) 55%,
        rgba(0,0,0,.55) 100%
      );
  }

  .future-fast-facts{
    grid-template-columns:1fr;
  }

  .future-fast-fact{
    border-right:none;
    border-bottom:1px solid rgba(255,255,255,.18);
  }

  .future-fast-fact:last-child{
    border-bottom:none;
  }

}
            
            /* FAST FACTS */
            .future-fast-facts {
              display: grid;
              grid-template-columns: repeat(3, 1fr);
              margin-top: 38px;
              max-width: 900px;
              border-top: 1px solid rgba(255,255,255,.35);
              border-bottom: 1px solid rgba(255,255,255,.35);
              background: rgba(0,0,0,.35);
              backdrop-filter: blur(4px);
            }
            
            .future-fast-fact {
              padding: 18px 22px;
              border-right: 1px solid rgba(255,255,255,.25);
            }
            
            .future-fast-fact:last-child {
              border-right: none;
            }
            
            .future-fact-number {
              display: block;
              color: white;
              font-size: clamp(1.7rem, 3vw, 2.4rem);
              font-weight: 900;
              line-height: 1;
              text-transform: uppercase;
            }
            
            .future-fact-label {
              display: block;
              color: white;
              font-size: .9rem;
              line-height: 1.35;
              margin-top: 8px;
              text-transform: uppercase;
              letter-spacing: .05em;
            }
            
            /* INTRO */
            .future-intro {
              max-width: var(--content-max);
              margin: 0 auto;
              padding: 20px 7% 40px;
            }
            
            .future-intro h2 {
              font-size: clamp(2rem, 5vw, 4.5rem);
              line-height: 1.05;
              text-transform: uppercase;
              font-weight: 900;
              text-wrap: balance;
              margin-bottom: 24px;
            }
            
            .future-intro p {
              font-size: clamp(1.05rem, 2vw, 1.15rem);
              line-height: 1.7;
            }
            
            /* SECTION HEADING */
            .future-section-heading {
              max-width: 850px;
              margin: 0 auto;
              text-align: center;
            }
            
            .future-section-heading h2 {
              font-size: clamp(2.2rem,5vw,4.5rem);
              line-height: 1;
              text-transform: uppercase;
              font-weight: 900;
              margin: 12px 0 20px;
            }
            
            .future-section-heading p {
              font-size: 1.15rem;
              line-height: 1.7;
              color: #444;
            }
            
            /* CHOOSE PATH */
            .future-path-section {
              padding: 10px 7% 80px;
              background: white;
            }
            
            .future-path-grid {
              max-width: var(--content-max);
              margin: 38px auto 0;
              display: grid;
              grid-template-columns: repeat(4, minmax(0, 1fr));
              gap: 22px;
            }
            
            .future-path-card {
              background: var(--ttu-gray);
              padding: clamp(24px, 3vw, 32px);
              border-top: 8px solid var(--ttu-red);
              box-shadow: 0 10px 30px rgba(0,0,0,.08);
            }
            
            .future-path-card h3 {
              text-transform: uppercase;
              font-size: clamp(1.2rem, 2vw, 1.45rem);
              line-height: 1.1;
              margin-top: 0;
            }
            
            .future-path-card p {
              line-height: 1.6;
            }
            
            .future-path-card a {
              color: var(--ttu-red-dark);
              font-weight: 800;
              text-decoration: underline;
              text-underline-offset: 3px;
            }
            
            /* FEATURE SPLIT */
            .future-feature {
              display: grid;
              grid-template-columns: 1.1fr 1fr;
              align-items: center;
              gap: 50px;
              max-width: 1900px;
              margin: auto;
              padding: 20px 7%;
            }
            
            .future-feature.gray {
              background: var(--ttu-gray);
              max-width: none;
            }
            
            .future-feature-image {
              overflow: hidden;
              border-radius: 6px;
              min-height: 420px;
            }
            
            .future-feature-image img {
              display: block;
              width: 100%;
              height: 100%;
              min-height: 420px;
              object-fit: cover;
            }
            
            .future-feature-content h2 {
              font-size: clamp(2.3rem,5vw,4.8rem);
              line-height: 1;
              text-transform: uppercase;
              margin-bottom: 24px;
            }
            
            .future-feature-content p {
              font-size: 1.1rem;
              line-height: 1.8;
              margin-bottom: 28px;
            }
            
            .future-list {
              margin: 0 0 32px;
              padding-left: 20px;
            }
            
            .future-list li {
              margin-bottom: 10px;
              line-height: 1.6;
            }
            
            /* MAJORS */
            .future-majors-section {
              padding: 10px 7%;
              background: white;
            }
            
            .future-majors-grid {
              max-width: var(--content-max);
              margin: 38px auto 0;
              display: grid;
              grid-template-columns: repeat(3, minmax(0, 1fr));
              gap: 22px;
            }
            
            .future-major-card {
              position: relative;
              min-height: 260px;
              overflow: hidden;
              display: flex;
              align-items: flex-end;
              padding: 28px;
              color: white;
              background: black;
              text-decoration: none;
            }
            
            .future-major-card::before {
              content: "";
              position: absolute;
              inset: 0;
              background: linear-gradient(
                0deg,
                rgba(0,0,0,.88) 0%,
                rgba(0,0,0,.58) 48%,
                rgba(0,0,0,.20) 100%
              );
              z-index: 1;
            }
            
            .future-major-card-content {
              position: relative;
              z-index: 2;
            }
            
            .future-major-card h3 {
              color: white;
              text-transform: uppercase;
              font-size: clamp(1.25rem, 2vw, 1.65rem);
              line-height: 1.1;
              margin: 0 0 12px;
            }
            
            .future-major-card p {
              color: white;
              line-height: 1.55;
              margin: 0 0 14px;
            }
            
            .future-major-card span {
              color: white;
              font-weight: 800;
              text-transform: uppercase;
              letter-spacing: .04em;
            }
            
            /* ACTION GRID */
            .future-action-section {
              padding: 10px 7% 45px;
              background: white;
            }
            
            .future-action-grid {
              display: grid;
              grid-template-columns: repeat(3, minmax(0, 1fr));
              gap: 22px;
              padding: 0 7% 80px;
            }
            
            .future-card {
              background: var(--ttu-gray);
              padding: clamp(24px, 3vw, 32px);
              border-top: 8px solid var(--ttu-red);
              box-shadow: 0 10px 30px rgba(0,0,0,.08);
              transition: transform .25s ease, box-shadow .25s ease;
            }
            
            .future-card:hover {
              transform: translateY(-6px);
              box-shadow: 0 18px 40px rgba(0,0,0,.16);
            }
            
            .future-card h3 {
              text-transform: uppercase;
              font-size: clamp(1.25rem, 2vw, 1.45rem);
              line-height: 1.15;
              margin-top: 0;
            }
            
            .future-card p {
              line-height: 1.6;
            }
            
            .future-card a {
              color: var(--ttu-red-dark);
              font-weight: 800;
              text-decoration: underline;
              text-underline-offset: 3px;
            }
            
            /* IMPACT BAND */
            .future-impact-band {
              background: var(--ttu-red);
              color: white;
              text-align: center;
              padding: clamp(18px, 8vw, 90px) 7%;
              position: relative;
              overflow: hidden;
            }
            
            .future-impact-band h2 {
              color: white;
              font-size: clamp(2.3rem, 6vw, 6rem);
              line-height: 1.05;
              text-transform: uppercase;
              font-weight: 900;
              margin: 0 0 18px;
              text-wrap: balance;
            }
            
            .future-impact-band p {
              color: white;
              max-width: 850px;
              margin: auto;
              font-size: clamp(1.1rem, 2vw, 1.3rem);
              line-height: 1.6;
            }
            
            .future-impact-buttons {
              display: flex;
              justify-content: center;
              flex-wrap: wrap;
              gap: 14px;
              margin-top: 30px;
            }
            
            /* LINES */
            .future-lines {
              position: absolute !important;
              top: 0;
              bottom: 0;
              right: 0;
              width: 110px;
              height: 100%;
              z-index: 3 !important;
              opacity: .65;
              pointer-events: none;
              background:
                repeating-linear-gradient(
                  0deg,
                  transparent 0 18px,
                  rgba(255,255,255,.95) 18px 20px
                );
            }
            
           /* TABLET */
@media screen and (max-width: 1050px) {
  .future-path-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .future-majors-grid,
  .future-action-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .future-lines {
    display: none;
  }
}

@media screen and (max-width: 900px) {
  .future-feature {
    grid-template-columns: 1fr;
  }

  .future-feature-image {
    order: -1;
  }
}

/* MOBILE */
@media screen and (max-width: 650px) {
  .future-hero-bg {
    min-height: 580px;
    padding: 10px 24px 70px;
  }

  .future-hero-bg::before {
    background: linear-gradient(
      90deg,
      rgba(0,0,0,.92) 0%,
      rgba(0,0,0,.78) 55%,
      rgba(0,0,0,.55) 100%
    );
  }

  .future-fast-facts {
    grid-template-columns: 1fr;
  }

  .future-fast-fact {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.25);
  }

  .future-fast-fact:last-child {
    border-bottom: none;
  }

  .future-intro,
  .future-path-section,
  .future-majors-section,
  .future-action-section,
  .future-feature,
  .future-impact-band {
    padding-left: 24px;
    padding-right: 24px;
  }

  .future-path-grid,
  .future-majors-grid,
  .future-action-grid {
    grid-template-columns: 1fr;
  }

  .future-action-grid {
    padding: 0 24px 60px;
  }

  .future-btn {
    width: 100%;
    text-align: center;
  }

  .future-hero-buttons,
  .future-impact-buttons {
    flex-direction: column;
  }
}
            
            /* REDUCED MOTION */
            @media (prefers-reduced-motion: reduce) {
              .future-card,
              .future-btn {
                transition: none;
              }
            
              .future-card:hover {
                transform: none;
              }
            }

            /* PARENTS &amp; FAMILIES */
.future-family-section {
  background: #fafafa;
  padding: 20px 7%;
  position: relative;
  overflow: hidden;
}

.future-family-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 90px;
  bottom: 90px;
  width: 12px;
  background: var(--ttu-red);
}

.future-family-inner {
  max-width: 1500px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 54px;
  align-items: center;
}

.future-family-image {
  min-height: 460px;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 18px 44px rgba(0,0,0,.16);
}

.future-family-image img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  display: block;
  object-fit: cover;
}

.future-family-content h2 {
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 24px;
}

.future-family-content p {
  font-size: 1.1rem;
  line-height: 1.8;
}

.future-family-list {
  margin: 0 0 30px;
  padding-left: 20px;
}

.future-family-list li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.future-family-quote {
  border-left: 6px solid var(--ttu-red);
  background: white;
  padding: 22px 26px;
  margin: 32px 0;
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
}

.future-family-quote p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 700;
}

/* TABLET */
@media screen and (max-width: 900px) {
  .future-family-inner {
    grid-template-columns: 1fr;
  }

  .future-family-image {
    order: -1;
  }
}

/* MOBILE */
@media screen and (max-width: 650px) {
  .future-family-section {
    padding: 70px 24px;
  }

  .future-family-section::before {
    display: none;
  }

  .future-family-image,
  .future-family-image img {
    min-height: 320px;
  }
}

/* MINI GRID INSIDE FEATURE SECTIONS */
.future-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 30px 0 32px;
}

.future-mini-grid div {
  background: var(--ttu-gray);
  border-left: 6px solid var(--ttu-red);
  padding: 20px 22px;
}

.future-mini-grid h3 {
  margin: 0 0 8px;
  text-transform: uppercase;
  font-size: 1.05rem;
  line-height: 1.2;
}

.future-mini-grid p {
  margin: 0;
  font-size: .98rem;
  line-height: 1.55;
}

/* STUDENT SPOTLIGHT */
.future-spotlight-section {
  background: #fff;
  padding: 90px 7%;
}

.future-spotlight-inner {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 34px;
  align-items: stretch;
}

.future-spotlight-content {
  background: var(--ttu-gray);
  padding: clamp(32px, 5vw, 56px);
  border-left: 10px solid var(--ttu-red);
}

.future-spotlight-content h2 {
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 24px;
}

.future-spotlight-content p {
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 30px;
}

.future-spotlight-card {
  background: #000;
  color: white;
  padding: clamp(28px, 4vw, 42px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-top: 10px solid var(--ttu-red);
}

.future-spotlight-card h3 {
  color: white;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.05;
  text-transform: uppercase;
  margin: 0 0 18px;
}

.future-spotlight-card p {
  color: white;
  line-height: 1.7;
}

.future-spotlight-card a {
  color: white;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.future-spotlight-inner {
  grid-template-columns: 1fr;
}

.future-spotlight-section {
  padding: 70px 24px;
}

.future-mini-grid {
  grid-template-columns: 1fr;
}

/* MAJOR STRIP */
.future-major-strip {
  background: #111;
  color: white;
  border-bottom: 6px solid var(--ttu-red);
}

.future-major-strip-inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  max-width: 1600px;
  margin: auto;
  padding: 0 7%;
}

.future-major-strip-heading {
  padding: 26px 28px 26px 0;
  border-right: 1px solid rgba(255,255,255,.35);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.future-major-strip-heading h2 {
  color: white;
  font-size: clamp(1.5rem, 1.5vw, 1.2rem);
  line-height: 1;
  text-transform: uppercase;
  font-weight: 900;
  margin: 0 0 10px;
}

.future-major-strip-heading a {
  color: var(--ttu-red);
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  font-size: .9rem;
  letter-spacing: .04em;
}

.future-major-strip-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.future-major-strip-grid a {
  color: white;
  min-height: 120px;
  padding: 22px 18px;
  text-align: center;
  text-decoration: none;
  border-right: 1px solid rgba(255,255,255,.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 11px;
  transition: background .25s ease, color .25s ease;
}

.future-major-strip-grid a:last-child {
  border-right: none;
}

.future-major-strip-grid a:hover,
.future-major-strip-grid a:focus-visible {
  background: var(--ttu-red);
  color: white;
  outline: none;
}

.future-major-icon {
  display: block;
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
}

.future-major-strip-grid span:last-child {
  font-size: .88rem;
  line-height: 1.25;
  font-weight: 800;
}

/* MAJOR STRIP TABLET */
@media screen and (max-width: 1200px) {
  .future-major-strip-inner {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .future-major-strip-heading {
    padding: 24px 7%;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.25);
  }

  .future-major-strip-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .future-major-strip-grid a {
    border-bottom: 1px solid rgba(255,255,255,.20);
  }
}

/* MAJOR STRIP MOBILE */
@media screen and (max-width: 650px) {
  .future-major-strip-heading {
    padding: 24px;
  }

  .future-major-strip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .future-major-strip-grid a {
    min-height: 112px;
    padding: 18px 12px;
  }

  .future-major-icon {
    font-size: 1.65rem;
  }
}

/* WHY WHITACRE */
.future-why-section {
  background: white;
  padding: 82px 7%;
}

.future-why-intro {
  margin: 0 0 44px;
}

.future-why-intro h2 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1;
  text-transform: uppercase;
  font-weight: 900;
  margin: 10px 0 20px;
}

.future-why-intro p {
  font-size: 1.15rem;
  line-height: 1.7;

}

.future-why-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  min-height: 480px;
  box-shadow: 0 18px 44px rgba(0,0,0,.12);
}

.future-why-image {
  min-height: 480px;
  overflow: hidden;
}

.future-why-image img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  display: block;
  object-fit: cover;
}

.future-why-panel {
  background: var(--ttu-red);
  color: white;
  display: grid;
  align-content: center;
  padding: clamp(30px, 4vw, 54px);
  gap: 28px;
}

.future-why-item {
  display: grid;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,.28);
  padding-bottom: 24px;
}

.future-why-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.future-why-item h3 {
  color: white;
  text-transform: uppercase;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.1;
  margin: 0;
}

.future-why-item p {
  color: white;
  line-height: 1.6;
  margin: 0;
}

/* WHY WHITACRE TABLET */
@media screen and (max-width: 900px) {
  .future-why-grid {
    grid-template-columns: 1fr;
  }
}

/* WHY WHITACRE MOBILE */
@media screen and (max-width: 650px) {
  .future-why-section {
    padding: 70px 24px;
  }

  .future-why-grid {
    box-shadow: none;
  }

  .future-why-image,
  .future-why-image img {
    min-height: 320px;
  }
}

/* CINEMATIC IMAGE FADE BREAK */
.future-image-break {
  position: relative;
  min-height: clamp(620px, 58vw, 920px);
  display: flex;
  align-items: flex-end;
  padding: 80px 7%;
  overflow: hidden;
  background: #000;
}

.future-image-fade {
  isolation: isolate;
}

.future-image-slide {
  position: absolute;
  inset: 0;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  opacity: 0;
  transform: scale(1.04);
  animation: futureFadeSlides 24s infinite;
  z-index: 0;
}

.future-image-slide:nth-child(1) {
  animation-delay: 0s;
}

.future-image-slide:nth-child(2) {
  animation-delay: 6s;
}

.future-image-slide:nth-child(3) {
  animation-delay: 12s;
}

.future-image-slide:nth-child(4) {
  animation-delay: 18s;
}

.future-image-break-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      0deg,
      rgba(0,0,0,.84) 0%,
      rgba(0,0,0,.46) 45%,
      rgba(0,0,0,.14) 100%
    );
  z-index: 1;
}

.future-image-break-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.future-image-break-content h2 {
  color: white;
  font-size: clamp(2.4rem, 6vw, 5.8rem);
  line-height: .98;
  text-transform: uppercase;
  font-weight: 900;
  margin: 0;
}

.future-image-break-content .future-kicker {
  color: white;
}

@keyframes futureFadeSlides {
  0% {
    opacity: 0;
    transform: scale(1.04);
  }

  8% {
    opacity: 1;
  }

  25% {
    opacity: 1;
  }

  33% {
    opacity: 0;
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}

/* MOBILE */
@media screen and (max-width: 650px) {
  .future-image-break {
    min-height: 460px;
    padding: 70px 24px;
  }

  .future-image-slide {
    background-position: center center !important;
  }
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  .future-image-slide {
    animation: none;
    opacity: 0;
    transform: none;
  }

  .future-image-slide:first-child {
    opacity: 1;
  }
}
.future-btn.red {
  background: var(--ttu-red);
  color: white;
}

.future-btn.outline {
  border: 2px solid white;
  color: white;
}

.future-hero-buttons {
  display: flex !important;
  flex-direction: row !important;
  justify-content: flex-start !important;
  align-items: center !important;
  gap: 18px !important;
  margin-top: 36px;
  flex-wrap: wrap;
}

.future-hero-buttons .future-btn {
  width: auto !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto !important;
  text-align: center;
}

/* MOBILE ONLY */
@media screen and (max-width: 650px) {
  .future-hero-buttons {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .future-hero-buttons .future-btn {
    width: 100% !important;
  }
}

/* START EXPLORING / VIEWBOOK */
.future-explore-resources {
  background: #fff;
  padding: 60px 7%;
}

.future-explore-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.future-explore-heading {
  margin-bottom: 34px;
}

.future-explore-heading h2 {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 1;
  text-transform: uppercase;
  font-weight: 900;
  margin: 10px 0 18px;
}

.future-explore-heading p {
  font-size: 1.12rem;
  line-height: 1.7;
}

.future-explore-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.future-explore-card {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: #111;
  color: white;
  padding: clamp(28px, 4vw, 44px);
  box-shadow: 0 14px 34px rgba(0,0,0,.14);
}

.future-explore-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
      0deg,
      rgba(0,0,0,.90) 0%,
      rgba(0,0,0,.66) 48%,
      rgba(0,0,0,.22) 100%
    );
}

.future-explore-card.viewbook {
  background-image: url('PASTE-VIEWBOOK-IMAGE-URL-HERE');
  background-size: cover;
  background-position: center center;
}

.future-explore-card.camp {
  background-image: url('PASTE-CAMP-IMAGE-URL-HERE');
  background-size: cover;
  background-position: center center;
}

.future-explore-card-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.future-card-label {
  color: var(--ttu-red);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 900;
  margin: 0 0 12px;
}

.future-explore-card h3 {
  color: white;
  font-size: clamp(1.65rem, 3vw, 2.7rem);
  line-height: 1.05;
  text-transform: uppercase;
  margin: 0 0 18px;
}

.future-explore-card p {
  color: white;
  line-height: 1.65;
}

.future-explore-card .future-btn {
  margin-top: 10px;
}

/* MOBILE */
@media screen and (max-width: 800px) {
  .future-explore-grid {
    grid-template-columns: 1fr;
  }

  .future-explore-card {
    min-height: 340px;
  }
}

@media screen and (max-width: 650px) {
  .future-explore-resources {
    padding: 50px 24px;
  }
}

.future-grad-callout{
    margin-top:40px;
    padding:32px 40px;
    background:#f5f5f5;
    border-left:6px solid var(--ttu-red);

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:32px;
}

.future-grad-kicker{
    color:var(--ttu-red);
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.08em;
    margin-bottom:10px;
}

.future-grad-content h3{
    margin:0 0 12px;
    font-size:clamp(1.6rem,2vw,2.2rem);
}

.future-grad-content p{
    margin:0;
    max-width:700px;
}

@media(max-width:900px){

.future-grad-callout{
    flex-direction:column;
    align-items:flex-start;
    padding:28px;
}

.future-grad-action{
    width:100%;
}

.future-grad-action .future-btn{
    width:100%;
    text-align:center;
}

}