body {
  position: relative;
  font-family: Manrope, ui-sans-serif, system-ui, sans-serif;
  --dashboard-bg-light:url("/assets/img/dashboard-bg-light.jpg?v=20260629dashbg3");
  --dashboard-bg-dark:url("/assets/img/dashboard-bg-dark.jpg?v=20260629dashbg3");
  background-color:#edf7ff !important;
  background-image:var(--dashboard-bg-light) !important;
  background-position:center top !important;
  background-size:cover !important;
  background-attachment:scroll !important;
  background-repeat:no-repeat !important;
}

@media (max-width: 900px) {
  body {
    background-attachment: scroll !important;
    background-position: right top !important;
  }
  #dashboardWallpaper{
    background-position:right top !important;
  }
}

html.wsa-night-mode {
  color-scheme: dark;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: none;
  opacity: 0;
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 8% 10%, rgba(56,189,248,.22), transparent 26%),
    radial-gradient(circle at 92% 12%, rgba(99,102,241,.18), transparent 22%),
    radial-gradient(circle at 50% 100%, rgba(250,204,21,.16), transparent 28%);
  pointer-events: none;
}

body.dark {
  background-color:#050b16 !important;
  background-image:var(--dashboard-bg-dark) !important;
  background-position:center top !important;
  background-size:cover !important;
  background-attachment:scroll !important;
  background-repeat:no-repeat !important;
  color: #e5eefb !important;
}

body.dark::after {
  background:
    radial-gradient(circle at 8% 10%, rgba(59,130,246,.18), transparent 27%),
    radial-gradient(circle at 92% 12%, rgba(168,85,247,.16), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(245,158,11,.1), transparent 30%),
    linear-gradient(180deg, rgba(2,6,23,.82), rgba(2,6,23,.94));
}

body.student-dashboard-page::before,
body.student-dashboard-page::after{
  display:none !important;
}

#dashboardWallpaper{
  position:fixed;
  inset:0;
  z-index:0;
  pointer-events:none;
  background-color:#edf7ff;
  background-image:var(--dashboard-bg-light);
  background-position:center top;
  background-size:cover;
  background-repeat:no-repeat;
}

html.wsa-night-mode #dashboardWallpaper,
body.student-dashboard-page.dark #dashboardWallpaper{
  background-color:#050b16;
  background-image:var(--dashboard-bg-dark);
}

@media (max-width: 900px) {
  body.dark {
    background-position:right top !important;
  }
}

#dashboardShell{
  position:relative;
  z-index:1;
}

#dashboardServerTime{
  z-index:44;
}

body.student-dashboard-page .student-actions{
  z-index:54;
}

#dashboardShell {
  width: min(1540px, calc(100% - 42px)) !important;
  max-width: none !important;
  padding: 28px 22px 56px 108px !important;
  display: block !important;
}

#dashboardMain {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(350px, .88fr);
  grid-template-areas:
    "welcome welcome"
    "vocabReminder vocabReminder"
    "actions actions"
    "feedback word"
    "library library"
    "listen reading"
    "arena arena"
    "tools tools"
    "trusted trusted";
  gap: 24px;
  align-items: start;
}

#dashboardMain > * {
  margin-top: 0 !important;
}

#dashboardWelcomeCard { grid-area: welcome; }
#dailyVocabReminderCard { grid-area: vocabReminder; }
#feedbackHubCard { grid-area: feedback; }
#wordOfDayCard { grid-area: word; }
#contentLibraryShowcase { grid-area: library; }
#quickActionsGrid { grid-area: actions; }
#listeningSummaryCard { grid-area: listen; }
#readingSummaryCard { grid-area: reading; }
#studentToolsFold { grid-area: tools; }
#rankedArenaFold { grid-area: arena; }
#trustedOrgsCard { grid-area: trusted; }

.card {
  border-radius: 28px !important;
  border: 1px solid rgba(255,255,255,.34) !important;
  background: linear-gradient(180deg, rgba(255,255,255,.82), rgba(244,248,252,.7)) !important;
  box-shadow:
    0 22px 54px rgba(15,23,42,.14),
    inset 0 1px 0 rgba(255,255,255,.9) !important;
  backdrop-filter: blur(18px) saturate(1.08);
  color: #0f172a !important;
}

body.dark .card {
  border-color: rgba(148,163,184,.18) !important;
  background: linear-gradient(180deg, rgba(15,23,42,.86), rgba(8,15,29,.78)) !important;
  box-shadow:
    0 24px 58px rgba(0,0,0,.36),
    inset 0 1px 0 rgba(255,255,255,.06) !important;
  color: #e5eefb !important;
}

.card:hover {
  transform: translateY(-2px);
}

#dashboardWelcomeCard {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  padding: 30px !important;
  border-radius: 34px !important;
  border: 1px solid rgba(191,219,254,.46) !important;
  background:
    radial-gradient(circle at top right, rgba(56,189,248,.24), transparent 28%),
    radial-gradient(circle at top left, rgba(99,102,241,.14), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,.9), rgba(233,243,255,.76)) !important;
  box-shadow: 0 34px 76px rgba(59,130,246,.16) !important;
  align-items: start !important;
}

body.dark #dashboardWelcomeCard {
  border-color: rgba(96,165,250,.2) !important;
  background:
    radial-gradient(circle at top right, rgba(59,130,246,.2), transparent 28%),
    radial-gradient(circle at top left, rgba(168,85,247,.12), transparent 32%),
    linear-gradient(135deg, rgba(15,23,42,.9), rgba(8,15,29,.82)) !important;
  box-shadow: 0 34px 76px rgba(0,0,0,.38) !important;
}

#dashboardWelcomeCard h1 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -.05em;
}

#dashboardWelcomeCard > div:first-child > p {
  font-size: 15px;
  line-height: 1.72;
  color: #58708d !important;
  max-width: 760px;
}

body.dark #dashboardWelcomeCard h1,
body.dark .daily-vocab-reminder-title,
body.dark #wordOfDayCard h2,
body.dark #feedbackHubCard h2,
body.dark #studentToolsFold h2,
body.dark #rankedArenaFold h2,
body.dark #trustedOrgsCard h2,
body.dark #studentArticlesCard .articles-hub-title,
body.dark #studentArticlesCard .article-preview-compact-title,
body.dark #studentArticlesCard .article-preview-feature-title,
body.dark #studentPodcastsCard .podcast-dock-title,
body.dark #studentPodcastsCard .podcast-preview-title,
body.dark .plan-summary-value,
body.dark .text-slate-800,
body.dark .text-slate-900 {
  color: #f8fbff !important;
}

body.dark #dashboardWelcomeCard > div:first-child > p,
body.dark .daily-vocab-reminder-text,
body.dark .daily-vocab-reminder-count small,
body.dark #studentArticlesCard .articles-hub-subtitle,
body.dark #studentArticlesCard .article-preview-compact-summary,
body.dark #studentPodcastsCard .podcast-dock-subtitle,
body.dark #studentPodcastsCard .podcast-preview-copy,
body.dark #studentPodcastsCard .podcast-dock-stat-copy,
body.dark .welcome-rank-sub,
body.dark .welcome-permanent-sub,
body.dark .text-gray-500,
body.dark .text-slate-500,
body.dark .text-slate-700,
body.dark .muted {
  color: #a9bdd8 !important;
}

.daily-vocab-reminder-card{
  position:relative;
  overflow:hidden;
  border-radius:30px !important;
  border:1px solid rgba(59,130,246,.24) !important;
  background:
    radial-gradient(700px 260px at 0% 0%, rgba(59,130,246,.2), transparent 58%),
    radial-gradient(560px 260px at 100% 0%, rgba(250,204,21,.18), transparent 62%),
    linear-gradient(135deg, rgba(255,255,255,.9), rgba(240,249,255,.78)) !important;
}

.daily-vocab-reminder-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg, transparent 0%, rgba(255,255,255,.34) 46%, transparent 72%);
  transform:translateX(-100%);
  pointer-events:none;
}

.daily-vocab-reminder-card.is-complete{
  border-color:rgba(245,158,11,.42) !important;
  background:
    radial-gradient(720px 280px at 0% 10%, rgba(251,146,60,.2), transparent 58%),
    radial-gradient(620px 280px at 100% 0%, rgba(250,204,21,.24), transparent 62%),
    linear-gradient(135deg, rgba(255,251,235,.95), rgba(255,247,237,.82)) !important;
  box-shadow:0 28px 70px rgba(245,158,11,.18), inset 0 1px 0 rgba(255,255,255,.88) !important;
}

.daily-vocab-reminder-card.is-active{
  border-color:rgba(37,99,235,.34) !important;
  box-shadow:0 26px 64px rgba(37,99,235,.15), inset 0 1px 0 rgba(255,255,255,.88) !important;
}

body.dark .daily-vocab-reminder-card {
  border-color: rgba(96,165,250,.24) !important;
  background:
    radial-gradient(700px 260px at 0% 0%, rgba(37,99,235,.22), transparent 58%),
    radial-gradient(560px 260px at 100% 0%, rgba(245,158,11,.1), transparent 62%),
    linear-gradient(135deg, rgba(15,23,42,.9), rgba(8,15,29,.8)) !important;
}

body.dark .daily-vocab-reminder-card.is-complete {
  border-color: rgba(251,191,36,.34) !important;
  background:
    radial-gradient(720px 280px at 0% 10%, rgba(249,115,22,.16), transparent 58%),
    radial-gradient(620px 280px at 100% 0%, rgba(250,204,21,.14), transparent 62%),
    linear-gradient(135deg, rgba(30,22,13,.9), rgba(15,23,42,.82)) !important;
  box-shadow: 0 28px 70px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.06) !important;
}

.daily-vocab-reminder-card.is-active .daily-vocab-reminder-track span{
  background:linear-gradient(90deg,#2563eb,#38bdf8,#a78bfa);
  background-size:180% 100%;
  animation:dailyVocabProgressGlow 1.8s ease-in-out infinite;
}

.daily-vocab-reminder-card.is-complete::before{
  animation:dailyVocabShine 2.6s ease-in-out infinite;
}

.daily-vocab-reminder-main{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(220px,.42fr) auto;
  align-items:center;
  gap:18px;
}

.daily-vocab-reminder-kicker{
  display:inline-flex;
  align-items:center;
  min-height:30px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(37,99,235,.1);
  color:#1d4ed8;
  font-size:11px;
  font-weight:950;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.daily-vocab-reminder-card.is-complete .daily-vocab-reminder-kicker{
  background:rgba(245,158,11,.16);
  color:#b45309;
}

.daily-vocab-reminder-title{
  margin:12px 0 0;
  color:#0f172a;
  font-size:clamp(22px, 2.7vw, 34px);
  line-height:1.05;
  font-weight:950;
  letter-spacing:-.03em;
}

.daily-vocab-reminder-text{
  margin:10px 0 0;
  max-width:760px;
  color:#475569;
  font-size:14px;
  line-height:1.65;
  font-weight:700;
}

.daily-vocab-reminder-meter{
  min-width:0;
  padding:16px;
  border-radius:20px;
  background:rgba(255,255,255,.68);
  border:1px solid rgba(148,163,184,.18);
}

body.dark .daily-vocab-reminder-meter,
body.dark .welcome-rank-block,
body.dark .welcome-permanent-card,
body.dark .plan-summary-item,
body.dark .tool-box,
body.dark .mistake-card,
body.dark .skill-map-card,
body.dark .article-preview-compact,
body.dark .article-preview-empty,
body.dark #studentPodcastsCard .podcast-preview-card {
  background: rgba(15,23,42,.74) !important;
  border-color: rgba(148,163,184,.18) !important;
  color: #e5eefb !important;
}

.daily-vocab-reminder-count{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
}

.daily-vocab-reminder-count span{
  color:#0f172a;
  font-size:28px;
  line-height:1;
  font-weight:950;
}

body.dark .daily-vocab-reminder-count span {
  color: #f8fbff;
}

.daily-vocab-reminder-count small{
  color:#64748b;
  font-size:12px;
  font-weight:900;
  text-align:right;
}

.daily-vocab-reminder-track{
  margin-top:12px;
  height:10px;
  overflow:hidden;
  border-radius:999px;
  background:#e2e8f0;
}

body.dark .daily-vocab-reminder-track,
body.dark .progress {
  background: #1e293b !important;
}

.daily-vocab-reminder-track span{
  display:block;
  width:0%;
  height:100%;
  border-radius:inherit;
  background:linear-gradient(90deg,#2563eb,#38bdf8);
  transition:width .22s ease;
}

.daily-vocab-reminder-card.is-complete .daily-vocab-reminder-track span{
  background:linear-gradient(90deg,#f97316,#facc15);
}

.daily-vocab-reminder-action{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 18px;
  border-radius:16px;
  text-decoration:none;
  background:linear-gradient(135deg,#2563eb,#38bdf8);
  color:#fff;
  font-size:13px;
  font-weight:950;
  white-space:nowrap;
  box-shadow:0 16px 30px rgba(37,99,235,.18);
}

.daily-vocab-reminder-card.is-complete .daily-vocab-reminder-action{
  background:linear-gradient(135deg,#f97316,#facc15);
  color:#111827;
  box-shadow:0 16px 30px rgba(245,158,11,.22);
}

.daily-vocab-effects{
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  opacity:0;
}

.daily-vocab-reminder-card.is-complete .daily-vocab-effects{
  opacity:1;
}

.daily-vocab-effects span{
  position:absolute;
  bottom:10px;
  font-size:22px;
  opacity:0;
  filter:drop-shadow(0 8px 14px rgba(245,158,11,.28));
}

.daily-vocab-reminder-card.is-complete .daily-vocab-effects span{
  animation:dailyVocabFloat 2.8s ease-in-out infinite;
}

.daily-vocab-effects span:nth-child(1){ left:10%; animation-delay:0s; }
.daily-vocab-effects span:nth-child(2){ left:27%; animation-delay:.38s; }
.daily-vocab-effects span:nth-child(3){ left:52%; animation-delay:.76s; }
.daily-vocab-effects span:nth-child(4){ left:70%; animation-delay:1.14s; }
.daily-vocab-effects span:nth-child(5){ left:88%; animation-delay:1.52s; }

@keyframes dailyVocabFloat{
  0%{ transform:translateY(14px) scale(.86) rotate(-8deg); opacity:0; }
  18%{ opacity:1; }
  72%{ opacity:.95; }
  100%{ transform:translateY(-84px) scale(1.16) rotate(10deg); opacity:0; }
}

@keyframes dailyVocabShine{
  0%{ transform:translateX(-100%); }
  48%, 100%{ transform:translateX(100%); }
}

@keyframes dailyVocabProgressGlow{
  0%, 100%{ background-position:0% 50%; }
  50%{ background-position:100% 50%; }
}

.welcome-rank-block {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(148,163,184,.16);
  background: rgba(255,255,255,.74);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
}

.student-avatar-rail {
  align-self: stretch;
  justify-content: center;
  min-width: 140px;
}

.student-avatar-rail .avatar-frame {
  transform: scale(1.08);
}

#feedbackHubCard,
#wordOfDayCard,
#studentArticlesCard,
#studentPodcastsCard,
#listeningSummaryCard,
#readingSummaryCard,
#studentToolsFold,
#rankedArenaFold,
#trustedOrgsCard {
  overflow: hidden;
}

#feedbackHubCard,
#wordOfDayCard {
  min-height: 100%;
}

#feedbackHubCard {
  padding: 22px !important;
  background:
    radial-gradient(circle at top right, rgba(245,158,11,.18), transparent 24%),
    linear-gradient(180deg, rgba(255,248,220,.86), rgba(255,255,255,.72)) !important;
}

#wordOfDayCard {
  padding: 24px !important;
  background:
    radial-gradient(circle at top right, rgba(59,130,246,.18), transparent 24%),
    linear-gradient(180deg, rgba(233,245,255,.86), rgba(255,255,255,.72)) !important;
}

#wordOfDayCard h2,
#feedbackHubCard h2,
#studentToolsFold h2,
#rankedArenaFold h2 {
  letter-spacing: -.03em;
}

#contentLibraryShowcase{
  padding:24px !important;
  border-radius:32px !important;
  background:
    radial-gradient(circle at top left, rgba(56,189,248,.12), transparent 24%),
    radial-gradient(circle at top right, rgba(129,140,248,.1), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,.84), rgba(242,247,255,.76)) !important;
  box-shadow:
    0 24px 52px rgba(15,23,42,.12),
    inset 0 1px 0 rgba(255,255,255,.92) !important;
}

.content-library-header{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
  padding-bottom:20px;
}

.content-library-header-copy{
  min-width:0;
}

.content-library-kicker{
  display:inline-flex;
  align-items:center;
  min-height:32px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(125,211,252,.28);
  color:#0f6fb4;
  font-size:11px;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.content-library-title{
  margin:14px 0 0;
  font-size:clamp(28px, 3vw, 38px);
  line-height:1.08;
  letter-spacing:-.04em;
  color:#0f172a;
}

.content-library-subtitle{
  margin:12px 0 0;
  max-width:840px;
  color:#5b6f88;
  line-height:1.72;
}

.content-library-header-pills{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:10px;
}

.content-library-top-pill{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(148,163,184,.18);
  color:#1f3b61;
  font-size:12px;
  font-weight:800;
}

.content-library-columns{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:20px;
}

.content-library-lane{
  min-width:0;
  padding:20px;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.48);
  box-shadow:0 18px 40px rgba(15,23,42,.08);
}

#contentLibraryShowcase #studentArticlesCard{
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(248,251,255,.88));
}

#contentLibraryShowcase #studentPodcastsCard{
  background:
    linear-gradient(180deg, rgba(245,249,255,.95), rgba(237,245,255,.9));
}

.content-library-lane-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:16px;
}

.content-library-lane-title{
  margin:0;
  font-size:26px;
  line-height:1.06;
  letter-spacing:-.04em;
  color:#0f172a;
}

.content-library-lane-link{
  flex-shrink:0;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:38px;
  padding:0 14px;
  border-radius:14px;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(148,163,184,.16);
  color:#214467;
  text-decoration:none;
  font-weight:900;
  font-size:12px;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.content-library-lane-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:0;
}

.content-library-card-stack{
  display:grid;
  gap:14px;
}

.content-library-card{
  position:relative;
  overflow:hidden;
  text-decoration:none;
  color:inherit;
  border-radius:24px;
  border:1px solid rgba(148,163,184,.18);
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), color-mix(in srgb, var(--library-accent-soft, #dbeafe) 14%, rgba(255,255,255,.94)));
  box-shadow:0 18px 34px rgba(15,23,42,.08);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.content-library-card:hover{
  transform:translateY(-4px);
  border-color:color-mix(in srgb, var(--library-accent, #38bdf8) 38%, rgba(148,163,184,.2));
  box-shadow:0 24px 40px rgba(15,23,42,.12);
}

.content-library-card-feature{
  display:grid;
  grid-template-rows:280px minmax(0,1fr);
  min-height:100%;
}

.content-library-card-secondary{
  display:grid;
  grid-template-columns:112px minmax(0,1fr);
  min-height:148px;
}

.content-library-card-media{
  position:relative;
  overflow:hidden;
  background:rgba(226,232,240,.8);
}

.content-library-card-feature .content-library-card-media{
  border-bottom:1px solid rgba(255,255,255,.56);
}

.content-library-card-secondary .content-library-card-media{
  border-right:1px solid rgba(255,255,255,.56);
}

.content-library-card-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.content-library-card-media::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(15,23,42,.05), rgba(15,23,42,.24)),
    radial-gradient(circle at top right, color-mix(in srgb, var(--library-accent-soft, #dbeafe) 45%, transparent) 0%, transparent 46%);
  pointer-events:none;
}

.content-library-card-body{
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:10px;
  padding:18px;
}

.content-library-card-topline{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
}

.content-library-chip-row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.content-library-chip{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:0 10px;
  border-radius:999px;
  font-size:10px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.content-library-chip.primary{
  background:rgba(239,246,255,.92);
  border:1px solid rgba(125,211,252,.26);
  color:#0f6fb4;
}

.content-library-chip.subtle{
  background:rgba(255,255,255,.8);
  border:1px solid rgba(148,163,184,.14);
  color:#46627f;
}

.content-library-chip.success{
  background:rgba(236,253,245,.9);
  border:1px solid rgba(16,185,129,.16);
  color:#047857;
}

.content-library-chip.warm{
  background:rgba(255,247,237,.92);
  border:1px solid rgba(251,146,60,.18);
  color:#c2410c;
}

.content-library-chip.podcast{
  background:rgba(226,232,255,.9);
  border:1px solid rgba(129,140,248,.18);
  color:#4338ca;
}

.content-library-chip.podcast-soft{
  background:rgba(236,245,255,.88);
  border:1px solid rgba(56,189,248,.18);
  color:#0f4c81;
}

.content-library-card-title{
  margin:0;
  font-size:24px;
  line-height:1.14;
  letter-spacing:-.03em;
  color:#0f172a;
}

.content-library-card-secondary .content-library-card-title{
  font-size:17px;
}

.content-library-card-summary{
  margin:0;
  color:#607287;
  line-height:1.62;
}

.content-library-card-feature .content-library-card-summary{
  font-size:14px;
  max-width:44ch;
}

.content-library-card-secondary .content-library-card-summary{
  font-size:13px;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.content-library-card-footer{
  margin-top:auto;
  padding-top:4px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
}

.content-library-card-meta-group{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.content-library-card-meta{
  color:#506980;
  font-size:12px;
  line-height:1.5;
  font-weight:700;
}

.content-library-card-cta{
  flex-shrink:0;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:38px;
  padding:0 14px;
  border-radius:14px;
  background:linear-gradient(135deg, rgba(255,255,255,.96), color-mix(in srgb, var(--library-accent-soft, #dbeafe) 42%, #fff));
  border:1px solid color-mix(in srgb, var(--library-accent, #38bdf8) 18%, rgba(148,163,184,.16));
  color:#113f67;
  font-size:12px;
  font-weight:900;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.podcast-library-card{
  background:
    linear-gradient(180deg, rgba(250,252,255,.96), color-mix(in srgb, var(--library-accent-soft, #dbeafe) 16%, rgba(243,248,255,.96)));
}

.content-library-empty{
  padding:24px;
  border-radius:22px;
  border:1px dashed rgba(148,163,184,.22);
  background:rgba(255,255,255,.72);
  color:#607287;
  text-align:center;
  font-weight:700;
}

.articles-hub-hero,
.podcast-dock-hero{
  display:grid !important;
  grid-template-columns:minmax(0, 1fr) minmax(230px, .72fr);
  gap:18px;
  align-items:stretch;
  padding:24px 24px 18px !important;
}

.articles-hub-copy,
.podcast-dock-copy{
  display:flex;
  flex-direction:column;
  min-height:100%;
}

.articles-hub-kicker,
.podcast-dock-kicker{
  min-height:34px;
  align-self:flex-start;
}

.articles-hub-title,
.podcast-dock-title{
  min-height:2.28em;
  margin-top:14px;
  font-size:28px;
  line-height:1.1;
}

.articles-hub-subtitle,
.podcast-dock-subtitle{
  min-height:4.95em;
  margin-top:10px;
  line-height:1.68;
}

.articles-hub-highlights,
.podcast-dock-pills{
  min-height:88px;
  align-content:flex-start;
  margin-top:16px;
}

.articles-hub-actions{
  display:grid !important;
  grid-template-rows:minmax(0,1fr) auto;
  gap:12px;
  align-content:stretch;
}

.podcast-dock-actions{
  display:grid !important;
  grid-template-columns:1fr;
  gap:10px;
  align-content:start;
}

.podcast-dock-actions .podcast-dock-stat:nth-of-type(2){
  display:none;
}

.articles-hub-stat,
.podcast-dock-stat{
  min-height:100%;
}

.articles-preview-shell,
.podcast-dock-preview{
  padding:18px 20px 22px !important;
}

.podcast-dock-preview{
  gap:10px;
}

.articles-preview-grid{
  align-items:stretch;
}

.article-preview-feature{
  min-height:340px;
}

.article-preview-feature-body{
  min-height:340px;
}

.article-preview-stack{
  display:grid;
  gap:14px;
}

#studentArticlesCard .article-preview-compact{
  min-height:162px;
  display:grid;
  grid-template-columns:94px minmax(0, 1fr);
  gap:14px;
  align-items:stretch;
}

#studentArticlesCard .article-preview-compact-media{
  overflow:hidden;
  border-radius:18px;
  min-height:100%;
  background:rgba(226,232,240,.8);
}

#studentArticlesCard .article-preview-compact-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

#studentArticlesCard .article-preview-compact-content{
  min-width:0;
  display:flex;
  flex-direction:column;
}

#quickActionsGrid {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px !important;
  padding: 20px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.34);
  background:
    radial-gradient(circle at top left, rgba(56,189,248,.12), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,.82), rgba(241,247,255,.7));
  box-shadow: 0 18px 44px rgba(15,23,42,.1);
}

#quickActionsGrid .feature-card {
  min-height: 188px;
  border-radius: 24px !important;
  background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(245,248,255,.72)) !important;
  border: 1px solid rgba(226,232,240,.85) !important;
  box-shadow: 0 18px 30px rgba(15,23,42,.05) !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

#quickActionsGrid .feature-card h3 {
  letter-spacing: -.02em;
}

#quickActionsGrid .feature-card p {
  margin-top: 8px;
  line-height: 1.55;
}

#listeningSummaryCard,
#readingSummaryCard {
  padding: 24px !important;
}

#listeningSummaryCard > .grid > .card,
#readingSummaryCard > .grid > .card {
  border-radius: 22px !important;
  background: linear-gradient(180deg, rgba(255,255,255,.84), rgba(244,248,255,.7)) !important;
  box-shadow: 0 14px 28px rgba(15,23,42,.04) !important;
}

#studentToolsFold,
#rankedArenaFold {
  padding: 22px !important;
}

#rankedArenaFold{
  min-width:0;
}

#rankedArenaBody > .grid{
  display:grid !important;
  grid-template-columns:minmax(0, 1.38fr) minmax(300px, .62fr);
  gap:18px !important;
}

#rankedArenaBody > .grid > :first-child,
#rankedArenaBody > .grid > :last-child{
  min-width:0;
}

#studentToolsBody > .grid{
  display:grid !important;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:18px !important;
}

#studentToolsFold .fold-head,
#rankedArenaFold .fold-head {
  padding-bottom: 6px;
}

#rankedArenaFold {
  background:
    radial-gradient(circle at top right, rgba(56,189,248,.2), transparent 24%),
    radial-gradient(circle at top left, rgba(99,102,241,.12), transparent 26%),
    linear-gradient(180deg, rgba(236,248,255,.84), rgba(255,255,255,.72)) !important;
}

#trustedOrgsCard {
  padding: 26px !important;
  background:
    radial-gradient(circle at top center, rgba(59,130,246,.14), transparent 26%),
    linear-gradient(180deg, rgba(241,246,255,.82), rgba(255,255,255,.72)) !important;
}

#studentArticlesCard{
  background:
    radial-gradient(circle at top left, rgba(249,115,22,.1), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(248,251,255,.88)) !important;
}

#studentPodcastsCard{
  background:
    radial-gradient(circle at top right, rgba(56,189,248,.12), transparent 26%),
    linear-gradient(180deg, rgba(245,249,255,.95), rgba(237,245,255,.9)) !important;
}

#listeningSummaryCard{
  background:
    radial-gradient(circle at top right, rgba(56,189,248,.16), transparent 24%),
    linear-gradient(180deg, rgba(237,248,255,.84), rgba(255,255,255,.7)) !important;
}

#readingSummaryCard{
  background:
    radial-gradient(circle at top right, rgba(34,197,94,.14), transparent 24%),
    linear-gradient(180deg, rgba(240,253,244,.84), rgba(255,255,255,.7)) !important;
}

#studentToolsFold{
  background:
    radial-gradient(circle at top left, rgba(99,102,241,.12), transparent 24%),
    linear-gradient(180deg, rgba(241,245,255,.84), rgba(255,255,255,.7)) !important;
}

#studentPodcastsCard .podcast-dock-title,
#studentPodcastsCard .podcast-preview-title,
#studentPodcastsCard .podcast-dock-stat-value,
#studentPodcastsCard .podcast-preview-badge,
#studentPodcastsCard .podcast-preview-meta {
  color: #e2e8f0;
}

#studentPodcastsCard .podcast-dock-subtitle,
#studentPodcastsCard .podcast-preview-copy,
#studentPodcastsCard .podcast-dock-stat-copy {
  color: #bfd0e6;
}

#studentPodcastsCard .podcast-dock-kicker,
#studentPodcastsCard .podcast-dock-stat-label {
  color: #7dd3fc;
}

#studentPodcastsCard .podcast-dock-pill {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(148,163,184,.14);
  color: #dbeafe;
}

#studentPodcastsCard .podcast-preview-card {
  display:grid;
  grid-template-columns:72px minmax(0, 1fr);
  gap:12px;
  padding:12px 14px;
  border-radius:18px;
}

#studentPodcastsCard .podcast-preview-art {
  min-height:72px;
  border-radius:16px;
  overflow:hidden;
}

#studentPodcastsCard .podcast-preview-image{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

#studentPodcastsCard .podcast-preview-art::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(2,6,23,.08), rgba(2,6,23,.42));
}

#studentPodcastsCard .podcast-preview-art-badge{
  position:absolute;
  left:10px;
  bottom:10px;
  z-index:2;
  display:inline-flex;
  align-items:center;
  min-height:24px;
  padding:0 8px;
  border-radius:999px;
  background:rgba(15,23,42,.72);
  border:1px solid rgba(255,255,255,.12);
  color:#f8fbff;
  font-size:10px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}

#studentPodcastsCard .podcast-preview-body{
  min-width:0;
  display:flex;
  flex-direction:column;
}

#studentPodcastsCard .podcast-preview-title {
  margin-top:8px;
  font-size:15px;
  line-height:1.3;
}

#studentPodcastsCard .podcast-preview-copy {
  margin-top:6px;
  font-size:12px;
  line-height:1.5;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

#studentPodcastsCard .podcast-preview-meta {
  margin-top:auto;
  padding-top:8px;
  font-size:11px;
}

#studentArticlesCard .articles-hub-title,
#studentArticlesCard .article-preview-compact-title,
#studentArticlesCard .article-preview-feature-title {
  color: #0f172a;
}

#studentArticlesCard .articles-hub-subtitle,
#studentArticlesCard .article-preview-compact-summary {
  color: #64748b;
}

.student-actions.student-actions-left {
  left: 24px;
  top: 110px;
}

.student-actions.student-actions-left .dashboard-fab-action {
  width: 60px;
  min-height: 60px;
}

.student-actions.student-actions-left .dashboard-fab-btn {
  width: 60px;
  height: 60px;
  font-size: 25px;
}

.student-actions.student-actions-left .dashboard-fab-label {
  left: 74px;
}

.dashboard-fab-svg {
  width: 36px;
  height: 36px;
  padding: 8px;
  border-radius: 14px;
  background: rgba(255,255,255,.96);
  box-shadow: inset 0 0 0 1px rgba(15,23,42,.08), 0 8px 18px rgba(15,23,42,.16);
  color: #0f172a;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.night-mode-fab.active .dashboard-fab-svg {
  background: linear-gradient(135deg, #facc15, #f97316);
  color: #111827;
  transform: rotate(-8deg);
}

body.dark .student-actions.student-actions-left .dashboard-fab-label {
  background: rgba(226,232,240,.94);
  color: #0f172a;
}

body.dark .student-actions.student-actions-left .dashboard-fab-btn {
  background: linear-gradient(145deg, #0f1b31, #020617 70%);
  box-shadow: 0 24px 46px rgba(0,0,0,.42), inset 0 0 0 1px rgba(148,163,184,.16);
}

body.dark .dashboard-fab-icon,
body.dark .dashboard-fab-svg {
  background: rgba(226,232,240,.92);
  box-shadow: inset 0 0 0 1px rgba(15,23,42,.16), 0 8px 18px rgba(0,0,0,.2);
}

.dashboard-server-time {
  position: fixed;
  top: auto;
  right: 18px;
  bottom: 18px;
  z-index: 44;
  width: min(232px, calc(100vw - 32px));
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(191, 219, 254, .72);
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 18px 42px rgba(15, 23, 42, .14);
  backdrop-filter: blur(14px);
  color: #0f172a;
  font-variant-numeric: tabular-nums;
  pointer-events: none;
}

.dashboard-server-time-label {
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #2563eb;
}

.dashboard-server-time-clock {
  display: block;
  margin-top: 4px;
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
}

.dashboard-server-time-date {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 800;
  color: #475569;
}

.dashboard-server-time-status {
  margin-top: 5px;
  font-size: 11px;
  font-weight: 800;
  color: #64748b;
}

body.dark .dashboard-server-time {
  border-color: rgba(56, 189, 248, .26);
  background: rgba(15, 23, 42, .88);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .36);
  color: #f8fbff;
}

body.dark .dashboard-server-time-label {
  color: #7dd3fc;
}

body.dark .dashboard-server-time-date,
body.dark .dashboard-server-time-status {
  color: #b8c7de;
}

body.dark .btn-sec,
body.dark input,
body.dark textarea,
body.dark select {
  background: #0b1220 !important;
  color: #e5eefb !important;
  border-color: rgba(148,163,184,.22) !important;
}

body.dark #feedbackHubCard,
body.dark #wordOfDayCard,
body.dark #studentToolsFold,
body.dark #rankedArenaFold,
body.dark #trustedOrgsCard {
  background:
    radial-gradient(circle at top right, rgba(59,130,246,.12), transparent 24%),
    linear-gradient(180deg, rgba(15,23,42,.88), rgba(8,15,29,.76)) !important;
}

body.dark #quickActionsGrid {
  background:
    radial-gradient(circle at top left, rgba(56,189,248,.13), transparent 28%),
    linear-gradient(180deg, rgba(15,23,42,.86), rgba(8,15,29,.72)) !important;
  border-color: rgba(148,163,184,.16) !important;
  box-shadow: 0 24px 58px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.06) !important;
}

body.dark #quickActionsGrid .feature-card {
  background:
    linear-gradient(180deg, rgba(15,23,42,.92), rgba(11,18,32,.84)) !important;
  border-color: rgba(148,163,184,.18) !important;
  box-shadow: 0 16px 34px rgba(0,0,0,.26), inset 0 1px 0 rgba(255,255,255,.05) !important;
  color: #e5eefb !important;
}

body.dark #quickActionsGrid .feature-card:hover {
  border-color: rgba(125,211,252,.28) !important;
  box-shadow: 0 22px 42px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.07) !important;
}

body.dark #quickActionsGrid .feature-card h3 {
  color: #f8fbff !important;
}

body.dark #quickActionsGrid .feature-card p {
  color: #a9bdd8 !important;
}

body.dark #quickActionsGrid .feature-card .icon-wrap {
  background: rgba(15,23,42,.58) !important;
  border: 1px solid rgba(148,163,184,.14) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06) !important;
}

body.dark #eventAnnouncementCard {
  border-color: rgba(245, 158, 11, .36) !important;
  background:
    radial-gradient(circle at 0% 0%, rgba(245, 158, 11, .18), transparent 34%),
    radial-gradient(circle at 100% 0%, rgba(14, 165, 233, .16), transparent 30%),
    linear-gradient(135deg, rgba(15, 23, 42, .94), rgba(8, 15, 29, .9)) !important;
  box-shadow: 0 18px 46px rgba(0, 0, 0, .34), inset 0 1px 0 rgba(255, 255, 255, .07) !important;
  color: #e5eefb !important;
}

body.dark #eventAnnouncementKicker {
  color: #fbbf24 !important;
}

body.dark #eventAnnouncementTitle {
  color: #f8fbff !important;
}

body.dark #eventAnnouncementCopy {
  color: #b8c7de !important;
}

body.dark #eventAnnouncementLink {
  background: rgba(15, 23, 42, .82) !important;
  border-color: rgba(251, 191, 36, .28) !important;
  color: #fff7db !important;
}

body.dark #listeningSummaryCard {
  border-color: rgba(56, 189, 248, .22) !important;
  background:
    radial-gradient(circle at top right, rgba(56, 189, 248, .16), transparent 30%),
    linear-gradient(180deg, rgba(15, 23, 42, .92), rgba(8, 15, 29, .82)) !important;
}

body.dark #readingSummaryCard {
  border-color: rgba(34, 197, 94, .22) !important;
  background:
    radial-gradient(circle at top right, rgba(34, 197, 94, .14), transparent 30%),
    linear-gradient(180deg, rgba(15, 23, 42, .92), rgba(8, 15, 29, .82)) !important;
}

body.dark #listeningSummaryCard > h2,
body.dark #readingSummaryCard > h2 {
  color: #f8fbff !important;
}

body.dark #listeningSummaryCard > .grid > .card,
body.dark #readingSummaryCard > .grid > .card {
  border-color: rgba(148, 163, 184, .18) !important;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, .9), rgba(11, 18, 32, .8)) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06), 0 12px 28px rgba(0, 0, 0, .22) !important;
}

body.dark #listeningSummaryCard > .grid > .card p,
body.dark #readingSummaryCard > .grid > .card p {
  color: #a9bdd8 !important;
}

body.dark #listenFirstBand,
body.dark #readFirstBand {
  color: #7dd3fc !important;
}

body.dark #listenBestBand,
body.dark #readBestBand {
  color: #86efac !important;
}

body.dark #listenLastBand,
body.dark #readLastBand {
  color: #fbbf24 !important;
}

body.dark #contentLibraryShowcase {
  background:
    radial-gradient(circle at top left, rgba(56,189,248,.14), transparent 28%),
    radial-gradient(circle at top right, rgba(129,140,248,.12), transparent 24%),
    linear-gradient(180deg, rgba(15,23,42,.9), rgba(8,15,29,.78)) !important;
  border-color: rgba(148,163,184,.18) !important;
  box-shadow: 0 24px 58px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.06) !important;
}

body.dark .content-library-kicker,
body.dark .content-library-top-pill,
body.dark .content-library-lane-link {
  background: rgba(15,23,42,.72) !important;
  border-color: rgba(148,163,184,.18) !important;
  color: #dbeafe !important;
}

body.dark .content-library-title,
body.dark .content-library-lane-title,
body.dark .content-library-card-title {
  color: #f8fbff !important;
}

body.dark .content-library-subtitle,
body.dark .content-library-card-summary,
body.dark .content-library-card-meta,
body.dark .content-library-empty {
  color: #a9bdd8 !important;
}

body.dark #contentLibraryShowcase #studentArticlesCard,
body.dark #studentArticlesCard {
  background:
    radial-gradient(circle at top left, rgba(249,115,22,.13), transparent 30%),
    linear-gradient(180deg, rgba(15,23,42,.86), rgba(11,18,32,.78)) !important;
  border-color: rgba(249,115,22,.2) !important;
}

body.dark #contentLibraryShowcase #studentPodcastsCard,
body.dark #studentPodcastsCard {
  background:
    radial-gradient(circle at top right, rgba(56,189,248,.14), transparent 30%),
    linear-gradient(180deg, rgba(15,23,42,.86), rgba(11,18,32,.78)) !important;
  border-color: rgba(56,189,248,.2) !important;
}

body.dark .content-library-card,
body.dark .podcast-library-card,
body.dark .content-library-empty,
body.dark #studentArticlesCard .article-preview-feature,
body.dark #studentArticlesCard .article-preview-feature-body,
body.dark #studentArticlesCard .article-preview-compact,
body.dark #studentPodcastsCard .podcast-preview-card,
body.dark #studentPodcastsCard .podcast-dock-stat {
  background:
    linear-gradient(180deg, rgba(15,23,42,.9), rgba(8,15,29,.78)) !important;
  border-color: rgba(148,163,184,.18) !important;
  box-shadow: 0 14px 30px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.05) !important;
  color: #e5eefb !important;
}

body.dark .content-library-card:hover {
  border-color: color-mix(in srgb, var(--library-accent, #38bdf8) 45%, rgba(148,163,184,.22)) !important;
  box-shadow: 0 22px 40px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.06) !important;
}

body.dark .content-library-chip,
body.dark #studentPodcastsCard .podcast-dock-pill {
  background: rgba(15,23,42,.72) !important;
  border-color: rgba(148,163,184,.18) !important;
  color: #dbeafe !important;
}

body.dark .content-library-card-cta {
  background: rgba(15,23,42,.8) !important;
  border-color: color-mix(in srgb, var(--library-accent, #38bdf8) 30%, rgba(148,163,184,.18)) !important;
  color: #f8fbff !important;
}

body.dark .content-library-card-media,
body.dark #studentArticlesCard .article-preview-compact-media,
body.dark #studentPodcastsCard .podcast-preview-art {
  background: rgba(15,23,42,.82) !important;
  border-color: rgba(148,163,184,.14) !important;
}

body.dark .content-library-card-feature .content-library-card-media,
body.dark .content-library-card-secondary .content-library-card-media {
  border-color: rgba(148,163,184,.14) !important;
}

@media (max-width: 1420px) {
  #dashboardShell {
    padding-left: 98px !important;
  }

  #quickActionsGrid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1160px) {
  #dashboardShell {
    width: min(calc(100% - 28px), 100%) !important;
    padding: 22px 14px 42px 86px !important;
  }

  #dashboardMain {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "welcome"
      "vocabReminder"
      "actions"
      "feedback"
      "word"
      "library"
      "listen"
      "reading"
      "arena"
      "tools"
      "trusted";
  }

  #dashboardWelcomeCard {
    grid-template-columns: 1fr;
  }

  .daily-vocab-reminder-main{
    grid-template-columns:1fr;
    align-items:stretch;
  }

  .daily-vocab-reminder-action{
    width:100%;
  }

  .student-avatar-rail {
    justify-content: flex-start;
  }

  #quickActionsGrid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .content-library-header,
  .content-library-lane-head{
    flex-direction:column;
    align-items:flex-start;
  }

  .content-library-columns{
    grid-template-columns:1fr;
  }

  .content-library-lane-grid{
    grid-template-columns:1fr;
  }

  #rankedArenaBody > .grid{
    grid-template-columns:1fr;
  }

  #studentToolsBody > .grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  #dashboardShell {
    padding: 18px 10px 34px !important;
  }

  .dashboard-server-time {
    position: fixed;
    right: 12px;
    bottom: 12px;
    width: min(210px, calc(100vw - 24px));
    margin: 0;
  }

  #dashboardMain {
    gap: 18px;
  }

  #contentLibraryShowcase{
    padding:18px !important;
  }

  .content-library-card-feature,
  .content-library-card-secondary{
    grid-template-columns:1fr;
    grid-template-rows:auto auto;
    min-height:auto;
  }

  .content-library-card-feature .content-library-card-media,
  .content-library-card-secondary .content-library-card-media{
    min-height:180px;
    border-right:none;
    border-bottom:1px solid rgba(255,255,255,.56);
  }

  .content-library-lane-link{
    width:100%;
  }

  #quickActionsGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 14px;
  }

  #dashboardWelcomeCard {
    padding: 20px !important;
  }

  .student-actions.student-actions-left {
    top: auto;
  }

  #studentToolsBody > .grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 640px) {
  #quickActionsGrid {
    grid-template-columns: 1fr;
  }
}
