/* =========================================================
   LINK COMMUNITY HUB — STUDENT EXPERIENCE VISUAL LAYER
   Additive presentation only.
   ========================================================= */

:root {
  --student-navy: #0b2344;
  --student-deep: #06172e;
  --student-green: #577c42;
  --student-gold: #e0a52f;
  --student-cream: #f7f3eb;
  --student-white: #ffffff;
  --student-ink: #102847;
}

/* ---------- IMPACT JOURNEY ---------- */

.student-impact-journey {
  width: min(1180px, calc(100% - 36px));
  margin: 34px auto 10px;
  padding: 28px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(224,165,47,.18), transparent 32%),
    linear-gradient(135deg, #0b2344, #06172e);
  color: #fff;
  overflow: hidden;
  position: relative;
  box-shadow: 0 18px 46px rgba(11,35,68,.18);
}

.student-impact-journey::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -70px;
  top: -90px;
  border: 2px solid rgba(255,255,255,.10);
  border-radius: 50%;
  animation: linkStudentOrbit 12s linear infinite;
}

.student-impact-kicker {
  color: var(--student-gold);
  font-weight: 900;
  letter-spacing: .12em;
  font-size: .74rem;
}

.student-impact-journey h2 {
  margin: 7px 0 8px;
  color: #fff;
  font-size: clamp(1.65rem, 4vw, 2.5rem);
}

.student-impact-journey > p {
  max-width: 720px;
  margin: 0;
  color: rgba(255,255,255,.82);
  line-height: 1.55;
}

.student-journey-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.student-journey-step {
  position: relative;
  padding: 18px 16px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 15px;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(3px);
  transition: transform .2s ease, background .2s ease;
}

.student-journey-step:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.12);
}

.student-journey-step b {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
  border-radius: 50%;
  background: var(--student-gold);
  color: var(--student-navy);
  font-weight: 900;
}

.student-journey-step strong {
  display: block;
}

.student-journey-step span {
  display: block;
  margin-top: 5px;
  color: rgba(255,255,255,.72);
  font-size: .8rem;
}

/* ---------- PROFILE PROGRESS ---------- */

.student-profile-progress {
  margin: 0 0 22px;
  padding: 16px 18px;
  border-radius: 14px;
  background: #eef3e9;
  border: 1px solid rgba(87,124,66,.22);
}

.student-profile-progress__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 9px;
}

.student-profile-progress__head strong {
  color: var(--student-navy);
}

.student-profile-progress__head span {
  color: var(--student-green);
  font-weight: 900;
}

.student-profile-progress__track {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #dbe3d5;
}

.student-profile-progress__bar {
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    var(--student-green),
    var(--student-gold)
  );
  transition: width .35s ease;
}

/* ---------- ASSESSMENT CARD ---------- */

.student-assessment-card {
  border-radius: 24px !important;
  border: 1px solid rgba(11,35,68,.12) !important;
  box-shadow: 0 20px 55px rgba(11,35,68,.10) !important;
}

.student-assessment-card h2 {
  color: var(--student-navy);
}

.student-assessment-form {
  animation: linkStudentReveal .38s ease both;
}

/* ---------- SELECTABLE INTEREST / VALUE / SKILL CARDS ---------- */

.assessment-choice-grid {
  gap: 10px !important;
}

.assessment-choice-grid label {
  position: relative;
  min-height: 48px;
  padding: 12px 13px !important;
  display: flex !important;
  align-items: center;
  gap: 9px;
  border: 2px solid #e4e8ec !important;
  border-radius: 12px !important;
  background: #fff !important;
  color: var(--student-ink) !important;
  cursor: pointer;
  font-weight: 700;
  transition:
    transform .16s ease,
    border-color .16s ease,
    box-shadow .16s ease,
    background .16s ease;
}

.assessment-choice-grid label:hover {
  transform: translateY(-2px);
  border-color: var(--student-gold) !important;
  box-shadow: 0 8px 18px rgba(11,35,68,.08);
}

.assessment-choice-grid label:has(input:checked) {
  border-color: var(--student-green) !important;
  background: #eef5e9 !important;
  box-shadow: 0 0 0 3px rgba(87,124,66,.10);
}

.assessment-choice-grid label:has(input:checked)::after {
  content: "✓";
  margin-left: auto;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--student-green);
  color: #fff;
  font-size: .75rem;
  font-weight: 900;
}

/* ---------- QUESTIONS ---------- */

.assessment-question {
  margin-top: 18px !important;
  padding: 18px !important;
  border: 1px solid #dfe5e9 !important;
  border-radius: 16px !important;
  background: #fbfcfc !important;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.assessment-question:focus-within {
  border-color: var(--student-gold) !important;
  box-shadow: 0 0 0 4px rgba(224,165,47,.08);
}

.assessment-question legend,
.assessment-question > span {
  color: var(--student-navy);
  font-weight: 900;
}

.assessment-question select {
  min-height: 48px;
  border-radius: 10px;
}

/* ---------- RESULT REVEAL ---------- */

.assessment-result:not([hidden]) {
  position: relative;
  overflow: hidden;
  animation: linkStudentResult .55s cubic-bezier(.2,.8,.2,1) both;
  border: 2px solid var(--student-gold);
  box-shadow: 0 16px 40px rgba(11,35,68,.12);
}

.assessment-result:not([hidden])::before {
  content: "YOUR IMPACT PATH";
  display: inline-block;
  margin-bottom: 9px;
  color: var(--student-green);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .12em;
}

/* ---------- GAMIFICATION VISUAL STRIP ---------- */

.student-game-strip {
  width: min(1180px, calc(100% - 36px));
  margin: 30px auto;
}

.student-game-strip__head {
  text-align: center;
  margin-bottom: 18px;
}

.student-game-strip__head small {
  color: var(--student-green);
  font-weight: 900;
  letter-spacing: .12em;
}

.student-game-strip__head h2 {
  margin: 6px 0;
  color: var(--student-navy);
}

.student-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}

.student-game-card {
  min-height: 150px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(11,35,68,.12);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 9px 24px rgba(11,35,68,.07);
  transition: transform .2s ease, box-shadow .2s ease;
}

.student-game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 32px rgba(11,35,68,.12);
}

.student-game-card__icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 13px;
  background: var(--student-navy);
  color: var(--student-gold);
  font-size: 1.2rem;
  font-weight: 900;
}

.student-game-card strong {
  color: var(--student-navy);
}

.student-game-card span {
  display: block;
  margin-top: 7px;
  color: #647184;
  line-height: 1.45;
  font-size: .83rem;
}

.student-game-card::after {
  content: "";
  position: absolute;
  right: -25px;
  bottom: -28px;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: rgba(224,165,47,.12);
}

/* ---------- LEADERBOARD ---------- */

.leaderboard-category {
  transition: transform .2s ease, box-shadow .2s ease;
}

.leaderboard-category:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 27px rgba(11,35,68,.10);
}

.leaderboard-category::before {
  content: "★";
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-bottom: 8px;
  border-radius: 50%;
  background: var(--student-gold);
  color: var(--student-navy);
  font-size: .8rem;
}

/* ---------- MOTION ---------- */

@keyframes linkStudentReveal {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes linkStudentResult {
  from {
    opacity: 0;
    transform: scale(.96) translateY(15px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes linkStudentOrbit {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 800px) {
  .student-journey-steps,
  .student-game-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .student-impact-journey {
    padding: 21px;
  }

  .student-journey-steps,
  .student-game-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .student-impact-journey::after,
  .student-assessment-form,
  .assessment-result,
  .student-game-card,
  .student-journey-step {
    animation: none !important;
    transition: none !important;
  }
}

.student-action-visuals {
  width:
    min(
      1180px,
      calc(
        100% - 36px
      )
    );
  margin:
    30px auto 12px;
}

.student-action-visuals__head {
  display: flex;
  align-items: end;
  justify-content:
    space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.student-action-visuals__head small {
  color: #577c42;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.student-action-visuals__head h2 {
  margin: 5px 0 0;
  color: #0b2344;
  font-size:
    clamp(
      2rem,
      4vw,
      3rem
    );
}

.student-action-visuals__head > a {
  color: #0b2344;
  font-size: .8rem;
  font-weight: 900;
  text-decoration: none;
}

.student-action-visuals__grid {
  display: grid;
  grid-template-columns:
    repeat(
      4,
      minmax(
        0,
        1fr
      )
    );
  gap: 14px;
}

.student-action-visual {
  overflow: hidden;
  position: relative;
  min-height: 330px;
  border-radius: 18px;
  background: #0b2344;
  color: #fff;
  box-shadow:
    0 12px 30px
    rgba(
      11,
      35,
      68,
      .12
    );
  transition:
    transform .22s ease,
    box-shadow .22s ease;
}

.student-action-visual:hover {
  transform:
    translateY(-6px);
  box-shadow:
    0 18px 38px
    rgba(
      11,
      35,
      68,
      .18
    );
}

.student-action-visual img {
  width: 100%;
  height: 180px;
  display: block;
  object-fit: cover;
}

.student-action-visual > div {
  padding: 18px;
}

.student-action-visual b {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 11px;
  border-radius: 50%;
  background: #e0a52f;
  color: #0b2344;
}

.student-action-visual strong {
  display: block;
  font-size: .95rem;
  letter-spacing: .02em;
}

.student-action-visual span {
  display: block;
  margin-top: 7px;
  color:
    rgba(
      255,
      255,
      255,
      .78
    );
  font-size: .82rem;
  line-height: 1.45;
}

.student-impact-track {
  margin-top: 16px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns:
    1fr auto 1fr auto
    1fr auto 1fr;
  gap: 12px;
  align-items: center;
  border:
    1px solid
    rgba(
      11,
      35,
      68,
      .12
    );
  border-radius: 16px;
  background: #fff;
}

.student-impact-track > div {
  text-align: center;
}

.student-impact-track strong {
  display: block;
  color: #0b2344;
  font-size: .8rem;
}

.student-impact-track span {
  display: block;
  margin-top: 4px;
  color: #657386;
  font-size: .72rem;
}

.student-impact-track i {
  color: #e0a52f;
  font-size: 1.4rem;
  font-style: normal;
  animation:
    linkStudentArrow
    1.6s
    ease-in-out
    infinite;
}

@keyframes linkStudentArrow {
  0%,
  100% {
    transform:
      translateX(0);
  }

  50% {
    transform:
      translateX(4px);
  }
}

.student-action-visuals__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.student-action-visuals__actions a {
  min-height: 48px;
  padding: 13px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: .78rem;
  font-weight: 900;
  text-decoration: none;
}

.student-action-primary {
  background: #577c42;
  color: #fff !important;
}

.student-action-secondary {
  border:
    2px solid
    #0b2344;
  background: #fff;
  color: #0b2344 !important;
}

@media (max-width: 900px) {
  .student-action-visuals__grid {
    grid-template-columns:
      repeat(
        2,
        minmax(
          0,
          1fr
        )
      );
  }

  .student-impact-track {
    grid-template-columns:
      1fr;
  }

  .student-impact-track i {
    transform:
      rotate(90deg);
  }
}

@media (max-width: 560px) {
  .student-action-visuals__head {
    align-items:
      flex-start;
    flex-direction:
      column;
  }

  .student-action-visuals__grid {
    grid-template-columns:
      1fr;
  }
}

@media (
  prefers-reduced-motion:
  reduce
) {
  .student-impact-track i {
    animation: none;
  }
}


/* ==========================================================
   APPROVED STUDENT VISUAL DIRECTION — 2026-09-09
   Visual layer only. Assessment, portal and data logic intact.
   ========================================================== */

.student-action-visuals--approved {
  width: min(1220px, calc(100% - 36px));
  margin: 30px auto 36px;
}

.student-approved-head {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  min-height: 420px;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(
      135deg,
      #071b33,
      #0b294d
    );
  box-shadow:
    0 22px 58px
    rgba(7,27,51,.18);
}

.student-approved-head__copy {
  padding:
    clamp(
      30px,
      5vw,
      58px
    );
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.student-approved-head__copy small {
  color: #e0a52f;
  font-weight: 900;
  letter-spacing: .13em;
}

.student-approved-head__copy h2 {
  margin: 10px 0 14px;
  color: #fff;
  font-size:
    clamp(
      2.4rem,
      5vw,
      4.3rem
    );
  line-height: .98;
}

.student-approved-head__copy p {
  max-width: 560px;
  margin: 0;
  color:
    rgba(
      255,
      255,
      255,
      .82
    );
  font-size: 1rem;
  line-height: 1.6;
}

.student-approved-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.student-approved-head__visual {
  position: relative;
  min-height: 420px;
}

.student-approved-head__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(7,27,51,.30),
      transparent 45%
    );
}

.student-approved-head__visual > img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
}

.student-approved-floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 14px;
  border-radius: 999px;
  background:
    rgba(
      255,
      255,
      255,
      .94
    );
  color: #0b2344;
  font-size: .72rem;
  font-weight: 900;
  box-shadow:
    0 10px 28px
    rgba(0,0,0,.16);
  animation:
    linkStudentFloat
    3.8s
    ease-in-out
    infinite;
}

.student-approved-floating-card b {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: #577c42;
  color: #fff;
}

.student-approved-floating-card--hours {
  left: 24px;
  bottom: 28px;
}

.student-approved-floating-card--challenge {
  right: 24px;
  top: 28px;
  animation-delay: .8s;
}

@keyframes linkStudentFloat {
  0%,
  100% {
    transform:
      translateY(0);
  }

  50% {
    transform:
      translateY(-7px);
  }
}


.student-impact-feature-row {
  display: grid;
  grid-template-columns:
    repeat(
      4,
      minmax(
        0,
        1fr
      )
    );
  gap: 12px;
  margin-top: 14px;
}

.student-impact-feature {
  padding: 21px;
  border:
    1px solid
    rgba(11,35,68,.12);
  border-radius: 16px;
  background: #fff;
  box-shadow:
    0 8px 22px
    rgba(11,35,68,.06);
  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.student-impact-feature:hover {
  transform:
    translateY(-4px);
  box-shadow:
    0 14px 30px
    rgba(11,35,68,.10);
}

.student-impact-feature__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 13px;
  border-radius: 50%;
  background: #0b2344;
  color: #e0a52f;
  font-size: 1.25rem;
}

.student-impact-feature:nth-child(2)
.student-impact-feature__icon,
.student-impact-feature:nth-child(4)
.student-impact-feature__icon {
  background: #577c42;
  color: #fff;
}

.student-impact-feature strong {
  display: block;
  color: #0b2344;
}

.student-impact-feature span {
  display: block;
  margin-top: 6px;
  color: #607083;
  font-size: .82rem;
  line-height: 1.45;
}


.student-challenge-section {
  margin-top: 40px;
}

.student-challenge-section__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 18px;
}

.student-challenge-section__head small {
  color: #577c42;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.student-challenge-section__head h2 {
  margin: 5px 0 0;
  color: #0b2344;
  font-size:
    clamp(
      2rem,
      4vw,
      3.1rem
    );
  line-height: 1.04;
}

.student-challenge-section__head p {
  max-width: 480px;
  margin: 0;
  color: #627184;
  line-height: 1.55;
}

.student-challenge-grid {
  display: grid;
  grid-template-columns:
    repeat(
      2,
      minmax(
        0,
        1fr
      )
    );
  gap: 18px;
}

.student-challenge-card {
  overflow: hidden;
  border:
    1px solid
    rgba(11,35,68,.13);
  border-radius: 20px;
  background: #fff;
  box-shadow:
    0 12px 30px
    rgba(11,35,68,.08);
  transition:
    transform .22s ease,
    box-shadow .22s ease;
}

.student-challenge-card:hover {
  transform:
    translateY(-5px);
  box-shadow:
    0 18px 38px
    rgba(11,35,68,.13);
}

.student-challenge-card__image {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: #f7f3eb;
}

.student-challenge-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.student-example-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background:
    rgba(
      7,
      27,
      51,
      .92
    );
  color: #fff;
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .09em;
}

.student-challenge-card__body {
  padding: 23px;
}

.student-challenge-title {
  display: flex;
  align-items: center;
  gap: 13px;
}

.student-challenge-title > div {
  flex: 1;
}

.student-challenge-title small {
  color: #577c42;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .10em;
}

.student-challenge-title h3 {
  margin: 3px 0 0;
  color: #0b2344;
  font-size: 1.35rem;
}

.student-challenge-sport {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f7f3eb;
  font-size: 1.4rem;
}

.student-challenge-card h4 {
  margin: 18px 0 7px;
  color: #0b2344;
  font-size: 1.15rem;
}

.student-challenge-card p {
  color: #617083;
  line-height: 1.55;
}

.student-challenge-card__body > a {
  display: inline-flex;
  margin-top: 18px;
  color: #577c42;
  font-size: .76rem;
  font-weight: 900;
  text-decoration: none;
}

.student-versus-track {
  display: grid;
  grid-template-columns:
    1fr auto 1fr;
  align-items: end;
  gap: 12px;
  margin-top: 20px;
}

.student-versus-track > div {
  display: grid;
  gap: 6px;
}

.student-versus-track strong {
  color: #0b2344;
  font-size: .68rem;
}

.student-versus-track > b {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e0a52f;
  color: #0b2344;
  font-size: .7rem;
}

.student-versus-bar {
  display: block;
  height: 9px;
  border-radius: 999px;
  transform-origin: left;
  animation:
    linkStudentGrow
    1.2s
    ease-out
    both;
}

.student-versus-bar--navy {
  width: 76%;
  background: #0b2344;
}

.student-versus-bar--green {
  width: 88%;
  background: #577c42;
}

@keyframes linkStudentGrow {
  from {
    transform:
      scaleX(0);
  }

  to {
    transform:
      scaleX(1);
  }
}

.student-class-progress {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.student-class-progress > div {
  display: grid;
  grid-template-columns:
    100px 1fr;
  gap: 10px;
  align-items: center;
}

.student-class-progress span {
  color: #0b2344;
  font-size: .7rem;
  font-weight: 800;
}

.student-class-progress i {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8ecef;
}

.student-class-progress i b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background:
    linear-gradient(
      90deg,
      #577c42,
      #e0a52f
    );
  transform-origin: left;
  animation:
    linkStudentGrow
    1.3s
    ease-out
    both;
}


.student-progress-showcase {
  margin-top: 38px;
  padding: 28px;
  display: grid;
  grid-template-columns:
    .75fr 1.25fr;
  gap: 26px;
  border-radius: 22px;
  background:
    linear-gradient(
      135deg,
      #f7f3eb,
      #ffffff
    );
  border:
    1px solid
    rgba(11,35,68,.10);
}

.student-progress-showcase__copy {
  align-self: center;
}

.student-progress-showcase__copy small {
  color: #577c42;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .11em;
}

.student-progress-showcase__copy h2 {
  margin: 7px 0 10px;
  color: #0b2344;
  font-size:
    clamp(
      1.8rem,
      3vw,
      2.6rem
    );
  line-height: 1.08;
}

.student-progress-showcase__copy p {
  color: #617083;
  line-height: 1.55;
}

.student-progress-tools {
  display: grid;
  grid-template-columns:
    repeat(
      3,
      minmax(
        0,
        1fr
      )
    );
  gap: 12px;
}

.student-progress-tools article {
  padding: 18px;
  border-radius: 16px;
  background: #fff;
  border:
    1px solid
    rgba(11,35,68,.10);
}

.student-tool-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 13px;
  border-radius: 50%;
  background: #0b2344;
  color: #e0a52f;
  font-size: 1.25rem;
}

.student-progress-tools strong {
  display: block;
  color: #0b2344;
  font-size: .82rem;
}

.student-progress-tools p {
  margin-bottom: 0;
  color: #667487;
  font-size: .78rem;
  line-height: 1.45;
}

.student-badge-preview {
  width: 74px;
  height: 74px;
  display: block;
  margin-bottom: 12px;
  object-fit: contain;
}

.student-hour-demo {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.student-hour-demo > div {
  display: grid;
  grid-template-columns:
    70px 1fr;
  gap: 8px;
  align-items: center;
}

.student-hour-demo span {
  color: #617083;
  font-size: .6rem;
  font-weight: 900;
}

.student-hour-demo b {
  height: 7px;
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      #577c42,
      #e0a52f
    );
}

.student-mini-scoreboard {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 13px;
}

.student-mini-scoreboard span {
  padding: 5px 7px;
  border-radius: 999px;
  background: #0b2344;
  color: #fff;
  font-size: .56rem;
  font-weight: 900;
}

.student-approved-bottom-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}


@media (max-width: 900px) {

  .student-approved-head,
  .student-progress-showcase {
    grid-template-columns: 1fr;
  }

  .student-impact-feature-row,
  .student-progress-tools {
    grid-template-columns:
      repeat(
        2,
        minmax(
          0,
          1fr
        )
      );
  }

  .student-challenge-grid {
    grid-template-columns: 1fr;
  }

  .student-challenge-section__head {
    align-items: flex-start;
    flex-direction: column;
  }

}


@media (max-width: 580px) {

  .student-impact-feature-row,
  .student-progress-tools {
    grid-template-columns: 1fr;
  }

  .student-approved-head__visual,
  .student-approved-head__visual > img {
    min-height: 300px;
  }

  .student-progress-showcase {
    padding: 20px;
  }

}


@media (prefers-reduced-motion: reduce) {

  .student-approved-floating-card,
  .student-versus-bar,
  .student-class-progress i b {
    animation: none !important;
  }

}
