/* =========================================================
   DEARDEN2007 LEARNING JOB SKILLS — SKILL COMMAND CENTER
   Concept 1 implementation
   ========================================================= */

:root {
    --jsc-red: #f1262c;
    --jsc-red-2: #a70d14;
    --jsc-blue: #1686ff;
    --jsc-blue-2: #0a4a9d;
    --jsc-bg: #020304;
    --jsc-panel: #070b0f;
    --jsc-panel-2: #0a1016;
    --jsc-line: #293847;
    --jsc-line-light: #3b4d60;
    --jsc-text: #f7f8fb;
    --jsc-muted: #96a6b7;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.jsc-page {
    margin: 0;
    color: var(--jsc-text);
    background:
        radial-gradient(circle at 0 10%, rgba(241,38,44,.08), transparent 22%),
        radial-gradient(circle at 100% 10%, rgba(22,134,255,.09), transparent 24%),
        #010203;
}

body.jsc-modal-open {
    overflow: hidden;
}

.jsc-shell {
    width: min(98%, 1700px);
    margin: 12px auto 36px;
    display: grid;
    grid-template-columns: 325px minmax(0,1fr);
    min-height: 840px;
    border: 1px solid #273542;
    background:
        linear-gradient(180deg,#06090d,#020304);
    box-shadow:
        0 30px 80px rgba(0,0,0,.58),
        0 0 45px rgba(22,134,255,.05),
        0 0 45px rgba(241,38,44,.05);
}


/* =========================================================
   SIDEBAR
   ========================================================= */

.jsc-sidebar {
    padding: 20px 14px;
    border-right: 1px solid #273746;
    background:
        radial-gradient(circle at 0 0,rgba(241,38,44,.10),transparent 28%),
        linear-gradient(180deg,#080c11,#030507 75%);
}

.jsc-brand {
    text-align: center;
    padding: 4px 8px 18px;
}

.jsc-brand img {
    display: block;
    width: min(190px,78%);
    aspect-ratio: 1;
    object-fit: cover;
    margin: 0 auto 10px;
    border-radius: 50%;
    filter:
        drop-shadow(0 0 18px rgba(241,38,44,.18))
        drop-shadow(0 0 14px rgba(22,134,255,.14));
}

.jsc-brand strong {
    display: block;
    font-size: 16px;
    letter-spacing: .06em;
}

.jsc-brand span {
    display: block;
    margin-top: 3px;
    color: #6ba7ff;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .16em;
}

.jsc-sidebar-heading,
.jsc-panel-heading {
    display: flex;
    align-items: center;
    gap: 9px;
}

.jsc-sidebar-heading {
    margin: 3px 7px 10px;
}

.jsc-sidebar-heading span,
.jsc-panel-heading span {
    color: #e4e9ef;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .075em;
    text-transform: uppercase;
}

.jsc-sidebar-heading::before {
    content: "";
    width: 4px;
    height: 16px;
    background: var(--jsc-red);
    transform: skew(-14deg);
}

.jsc-sidebar-heading i,
.jsc-panel-heading i {
    flex: 1;
    height: 1px;
    background:
        linear-gradient(90deg,#38506a,transparent);
}

.jsc-skill-nav {
    display: grid;
    gap: 5px;
}

.jsc-skill-link {
    display: grid;
    grid-template-columns: 30px 31px minmax(0,1fr);
    align-items: center;
    gap: 7px;
    min-height: 43px;
    padding: 7px 9px;
    border: 1px solid #273542;
    border-radius: 5px;
    color: #d7dee7 !important;
    text-decoration: none !important;
    background:
        linear-gradient(135deg,#0b1016,#06090d);
    transition:
        transform .18s ease,
        border-color .18s ease,
        box-shadow .18s ease,
        background .18s ease;
}

.jsc-skill-link:hover {
    transform: translateX(4px);
    border-color: #347dce;
}

.jsc-skill-link.is-active {
    border-color: #ff3e49;
    color: #fff !important;
    background:
        radial-gradient(circle at 100% 50%,rgba(241,38,44,.18),transparent 50%),
        linear-gradient(135deg,#17080b,#090d12);
    box-shadow:
        inset 3px 0 0 var(--jsc-red),
        0 0 20px rgba(241,38,44,.12);
}

.jsc-skill-link__icon {
    color: var(--jsc-blue);
    font-size: 16px;
    text-align: center;
}

.jsc-skill-link.is-active .jsc-skill-link__icon {
    color: var(--jsc-red);
}

.jsc-skill-link__number {
    color: #727f8e;
    font-size: 9px;
    font-weight: 900;
}

.jsc-skill-link strong {
    min-width: 0;
    overflow: hidden;
    font-size: 10px;
    letter-spacing: .025em;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-transform: uppercase;
}

.jsc-command-badge {
    display: grid;
    grid-template-columns: 48px 1fr;
    align-items: center;
    gap: 10px;
    margin-top: 13px;
    padding: 13px;
    border: 1px solid #1d78d8;
    border-radius: 6px;
    color: #fff !important;
    text-decoration: none !important;
    background:
        radial-gradient(circle at 0 100%,rgba(22,134,255,.14),transparent 50%),
        #07101a;
    box-shadow:
        0 0 20px rgba(22,134,255,.08);
}

.jsc-command-badge > span {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid #2b91ff;
    border-radius: 50%;
    color: #2d95ff;
    font-size: 21px;
}

.jsc-command-badge strong,
.jsc-command-badge small {
    display: block;
}

.jsc-command-badge strong {
    font-size: 10px;
}

.jsc-command-badge small {
    margin-top: 4px;
    color: #4ca0ff;
    font-size: 7px;
    font-weight: 900;
}


/* =========================================================
   MAIN
   ========================================================= */

.jsc-main {
    min-width: 0;
    padding: 13px;
}

.jsc-top-grid {
    display: grid;
    grid-template-columns: minmax(0,1.55fr) minmax(320px,.95fr);
    gap: 12px;
}

.jsc-hero,
.jsc-featured,
.jsc-panel,
.jsc-stat-rail,
.jsc-lessons-panel {
    border: 1px solid #293847;
    background:
        linear-gradient(145deg,#090e14,#04070a);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.025),
        0 14px 32px rgba(0,0,0,.28);
}

.jsc-hero {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
}

.jsc-hero__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    background: #000;
}

.jsc-hero__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,rgba(0,0,0,.86) 0%,rgba(0,0,0,.55) 38%,rgba(0,0,0,.08) 73%),
        linear-gradient(0deg,rgba(0,0,0,.78),transparent 55%);
}

.jsc-hero__selected {
    position: absolute;
    z-index: 2;
    left: 24px;
    bottom: 20px;
    width: min(590px,72%);
}

.jsc-hero__selected > span {
    display: block;
    color: var(--jsc-red);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.jsc-hero__selected h1 {
    margin: 6px 0 8px;
    font-size: clamp(32px,4vw,61px);
    line-height: .92;
    letter-spacing: -.04em;
    text-transform: uppercase;
}

.jsc-hero__selected p {
    max-width: 520px;
    margin: 0;
    color: #c0c9d2;
    font-size: 12px;
    line-height: 1.5;
}

.jsc-hero__mini-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    margin-top: 17px;
    border-top: 1px solid rgba(255,255,255,.08);
}

.jsc-hero__mini-grid > div {
    padding: 11px 12px 2px 0;
}

.jsc-hero__mini-grid > div + div {
    padding-left: 12px;
    border-left: 1px solid rgba(255,255,255,.08);
}

.jsc-hero__mini-grid strong,
.jsc-hero__mini-grid small {
    display: block;
}

.jsc-hero__mini-grid strong {
    color: #fff;
    font-size: 8px;
}

.jsc-hero__mini-grid small {
    margin-top: 4px;
    color: #7f8e9e;
    font-size: 7px;
}


/* =========================================================
   FEATURED
   ========================================================= */

.jsc-featured {
    padding: 14px;
    border-top: 2px solid #284f76;
}

.jsc-panel-heading {
    margin-bottom: 10px;
}

.jsc-panel-heading::before {
    content: "";
    width: 4px;
    height: 15px;
    background: var(--jsc-red);
}

.jsc-featured__visual {
    position: relative;
    overflow: hidden;
    min-height: 110px;
    margin-bottom: 11px;
    border: 1px solid #2f455b;
    background: #040608;
}

.jsc-featured__visual img {
    display: block;
    width: 100%;
    height: 135px;
    object-fit: cover;
}

.jsc-featured__fallback {
    display: grid;
    place-items: center;
    min-height: 135px;
    color: #1b8aff;
    font-size: 50px;
    background:
        radial-gradient(circle,rgba(22,134,255,.16),transparent 55%),
        #05090d;
}

.jsc-featured__kicker {
    color: #2a93ff;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .08em;
}

.jsc-featured h2 {
    margin: 5px 0 7px;
    font-size: 25px;
    line-height: .98;
    text-transform: uppercase;
}

.jsc-featured > p {
    margin: 0;
    color: var(--jsc-muted);
    font-size: 10px;
    line-height: 1.45;
}

.jsc-resume-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    margin-top: 11px;
    padding: 7px 12px;
    border: 1px solid #df2a32;
    color: #fff;
    background: #12080a;
    font-size: 9px;
    font-weight: 900;
    cursor: pointer;
}

.jsc-resume-btn:disabled {
    opacity: .45;
    cursor: default;
}

.jsc-featured__meter {
    display: grid;
    grid-template-columns: auto minmax(80px,1fr) auto;
    align-items: center;
    gap: 9px;
    margin-top: 13px;
    padding-top: 10px;
    border-top: 1px solid #263746;
    font-size: 8px;
    font-weight: 900;
}

.jsc-meter {
    height: 5px;
    overflow: hidden;
    background: #19222c;
}

.jsc-meter i {
    display: block;
    width: 0%;
    height: 100%;
    background:
        linear-gradient(90deg,#ff3440,#d81720);
    box-shadow: 0 0 10px rgba(241,38,44,.55);
}

.jsc-featured__stats {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 7px;
    margin-top: 10px;
}

.jsc-featured__stats span {
    color: #268fff;
    font-size: 9px;
}

.jsc-featured__stats strong {
    display: block;
    margin-top: 3px;
    color: #d8e0e8;
    font-size: 7px;
}

.jsc-featured__empty {
    min-height: 235px;
    display: grid;
    place-items: center;
    align-content: center;
    text-align: center;
    color: #65778a;
}

.jsc-featured__empty > span {
    color: var(--jsc-red);
    font-size: 28px;
}

.jsc-featured__empty h2 {
    margin: 8px 0;
    color: #fff;
}


/* =========================================================
   DASHBOARD MID ROW
   ========================================================= */

.jsc-dashboard-grid {
    display: grid;
    grid-template-columns: 1.05fr 1.18fr .95fr 145px;
    gap: 10px;
    margin-top: 10px;
}

.jsc-panel {
    padding: 12px;
}

.jsc-progress-body {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 13px;
    align-items: center;
}

.jsc-progress-ring {
    --progress: 0;
    display: grid;
    place-items: center;
    align-content: center;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background:
        radial-gradient(circle at center,#06090d 0 55%,transparent 56%),
        conic-gradient(
            var(--jsc-blue) calc(var(--progress) * 1%),
            #17222c 0
        );
    box-shadow:
        inset 0 0 20px rgba(22,134,255,.10),
        0 0 18px rgba(22,134,255,.09);
}

.jsc-progress-ring strong {
    font-size: 28px;
}

.jsc-progress-ring span {
    margin-top: 2px;
    color: #8090a1;
    font-size: 7px;
    font-weight: 900;
}

.jsc-progress-list {
    display: grid;
    gap: 7px;
}

.jsc-progress-list p {
    display: grid;
    grid-template-columns: 23px 1fr;
    margin: 0;
}

.jsc-progress-list p > span {
    grid-row: 1 / 3;
    color: var(--jsc-blue);
}

.jsc-progress-list strong {
    font-size: 9px;
}

.jsc-progress-list small {
    color: #75879a;
    font-size: 7px;
}

.jsc-full-progress {
    width: 100%;
    min-height: 34px;
    margin-top: 10px;
    border: 1px solid #1f80e8;
    color: #dbeaff;
    background: #06101a;
    font-size: 8px;
    font-weight: 900;
    cursor: pointer;
}

.jsc-full-progress span {
    float: right;
}

.jsc-demo-video {
    position: relative;
    width: 100%;
    min-height: 128px;
    padding: 0;
    overflow: hidden;
    border: 1px solid #32485c;
    background: #030507;
    cursor: pointer;
}

.jsc-demo-video img {
    display: block;
    width: 100%;
    height: 135px;
    object-fit: cover;
}

.jsc-demo-video__fallback {
    display: grid;
    place-items: center;
    min-height: 135px;
    color: #1d8fff;
    font-size: 44px;
    background:
        radial-gradient(circle,rgba(22,134,255,.15),transparent 55%),
        #05090d;
}

.jsc-demo-play,
.jsc-mini-play {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%,-50%);
    display: grid;
    place-items: center;
    border: 2px solid rgba(255,255,255,.74);
    border-radius: 50%;
    color: #fff;
    background: rgba(0,0,0,.65);
}

.jsc-demo-play {
    width: 52px;
    height: 52px;
    font-size: 17px;
}

.jsc-demo-panel h3 {
    margin: 8px 0 4px;
    font-size: 12px;
}

.jsc-demo-panel > p {
    margin: 0;
    color: #8797a8;
    font-size: 8px;
    line-height: 1.4;
}

.jsc-watch-now {
    float: right;
    margin-top: 8px;
    min-height: 29px;
    padding: 6px 11px;
    border: 1px solid #267fd4;
    color: #fff;
    background: #07101a;
    font-size: 8px;
    font-weight: 900;
    cursor: pointer;
}

.jsc-demo-empty {
    min-height: 205px;
    display: grid;
    place-items: center;
    align-content: center;
    text-align: center;
    color: #708093;
}

.jsc-demo-empty > span {
    color: var(--jsc-blue);
    font-size: 30px;
}

.jsc-demo-empty p {
    max-width: 220px;
    font-size: 9px;
}

.jsc-quick-panel {
    display: flex;
    flex-direction: column;
}

.jsc-quick-link {
    display: grid;
    grid-template-columns: 35px minmax(0,1fr) 15px;
    align-items: center;
    gap: 8px;
    width: 100%;
    min-height: 48px;
    margin-bottom: 6px;
    padding: 7px 8px;
    border: 1px solid #273947;
    color: #fff;
    text-align: left;
    background: #080d12;
    cursor: pointer;
}

.jsc-quick-link > span {
    display: grid;
    place-items: center;
    width: 31px;
    height: 31px;
    border: 1px solid #1768b4;
    color: #2e96ff;
}

.jsc-quick-link strong,
.jsc-quick-link small {
    display: block;
}

.jsc-quick-link strong {
    font-size: 8px;
}

.jsc-quick-link small {
    margin-top: 3px;
    overflow: hidden;
    color: #7c8d9e;
    font-size: 7px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.jsc-quick-link b {
    color: #7a8c9d;
    font-size: 17px;
}

.jsc-quick-empty {
    display: grid;
    place-items: center;
    align-content: center;
    flex: 1;
    min-height: 190px;
    text-align: center;
    color: #718295;
}

.jsc-quick-empty p {
    max-width: 230px;
    font-size: 9px;
}

.jsc-stat-rail {
    display: grid;
    grid-template-rows: repeat(4,1fr);
}

.jsc-stat-rail > div {
    display: grid;
    place-items: center;
    align-content: center;
    text-align: center;
    border-bottom: 1px solid #263746;
}

.jsc-stat-rail > div:last-child {
    border-bottom: 0;
}

.jsc-stat-rail span {
    color: var(--jsc-blue);
    font-size: 22px;
}

.jsc-stat-rail strong {
    margin-top: 3px;
    font-size: 25px;
}

.jsc-stat-rail small {
    max-width: 100px;
    margin-top: 2px;
    color: #8d9aa8;
    font-size: 7px;
    font-weight: 900;
}


/* =========================================================
   LESSONS
   ========================================================= */

.jsc-lessons-panel {
    margin-top: 10px;
    padding: 12px;
}

.jsc-lessons-grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr)) 1.15fr;
    gap: 9px;
}

.jsc-lesson-card {
    position: relative;
    overflow: hidden;
    border: 1px solid #2b3b49;
    background: #070b10;
}

.jsc-lesson-number {
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    display: grid;
    place-items: center;
    width: 38px;
    height: 34px;
    color: #fff;
    background: var(--jsc-red);
    font-size: 10px;
    font-weight: 900;
}

.jsc-lesson-card__visual {
    position: relative;
    min-height: 105px;
    overflow: hidden;
    background: #040608;
}

.jsc-lesson-card__visual img {
    display: block;
    width: 100%;
    height: 112px;
    object-fit: cover;
}

.jsc-lesson-card__fallback {
    display: grid;
    place-items: center;
    height: 112px;
    color: var(--jsc-blue);
    font-size: 34px;
    background:
        radial-gradient(circle,rgba(22,134,255,.12),transparent 58%),
        #05090d;
}

.jsc-mini-play {
    width: 38px;
    height: 38px;
    font-size: 12px;
}

.jsc-lesson-card__copy {
    padding: 11px;
}

.jsc-lesson-card__copy h3 {
    margin: 0;
    font-size: 11px;
    line-height: 1.05;
    text-transform: uppercase;
}

.jsc-lesson-card__copy p {
    min-height: 41px;
    margin: 6px 0;
    color: #7f8f9f;
    font-size: 8px;
    line-height: 1.35;
}

.jsc-lesson-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
}

.jsc-lesson-card__footer small {
    color: #6f8091;
    font-size: 7px;
}

.jsc-complete-btn {
    min-height: 25px;
    padding: 4px 6px;
    border: 1px solid #275f91;
    color: #57a7ff;
    background: #06101a;
    font-size: 6px;
    font-weight: 900;
    cursor: pointer;
}

.jsc-lesson-card.is-complete {
    border-color: #1583ea;
    box-shadow: 0 0 18px rgba(22,134,255,.10);
}

.jsc-lesson-card.is-complete .jsc-complete-btn {
    border-color: #29a6ff;
    color: #fff;
    background: #0c4d8b;
}

.jsc-certificate-card {
    display: grid;
    place-items: center;
    align-content: center;
    min-height: 250px;
    padding: 18px;
    border: 1px solid #da2a33;
    text-align: center;
    background:
        radial-gradient(circle at center,rgba(241,38,44,.10),transparent 58%),
        #0c0709;
}

.jsc-certificate-card > span {
    font-size: 41px;
    filter: drop-shadow(0 0 10px rgba(241,38,44,.25));
}

.jsc-certificate-card h3 {
    margin: 7px 0;
    font-size: 16px;
}

.jsc-certificate-card p {
    max-width: 260px;
    margin: 0;
    color: #9aabb9;
    font-size: 9px;
    line-height: 1.45;
}

.jsc-certificate-card strong {
    margin-top: 13px;
    padding: 7px 10px;
    border: 1px solid #c32129;
    color: #ff6870;
    font-size: 8px;
}

.jsc-certificate-card small {
    max-width: 270px;
    margin-top: 9px;
    color: #5f7081;
    font-size: 7px;
}

.jsc-lessons-empty {
    grid-column: 1 / 5;
    display: grid;
    place-items: center;
    min-height: 250px;
    border: 1px dashed #2b4256;
    text-align: center;
    color: #76889a;
}

.jsc-lessons-empty > span {
    color: var(--jsc-blue);
    font-size: 33px;
}


/* =========================================================
   MODALS
   ========================================================= */

.jsc-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.jsc-overlay.is-open {
    display: flex;
}

.jsc-overlay__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.87);
    backdrop-filter: blur(7px);
}

.jsc-modal {
    position: relative;
    z-index: 1;
    width: min(980px,96vw);
    max-height: calc(100vh - 36px);
    overflow-y: auto;
    padding: 22px;
    border: 1px solid #3b4d60;
    border-top: 2px solid var(--jsc-red);
    border-bottom: 2px solid var(--jsc-blue);
    background:
        radial-gradient(circle at 0 0,rgba(241,38,44,.09),transparent 30%),
        radial-gradient(circle at 100% 0,rgba(22,134,255,.10),transparent 30%),
        #070b10;
    box-shadow:
        0 30px 80px rgba(0,0,0,.72),
        0 0 40px rgba(241,38,44,.07),
        0 0 40px rgba(22,134,255,.07);
}

.jsc-modal__close {
    position: sticky;
    top: 0;
    float: right;
    z-index: 4;
    width: 39px;
    height: 39px;
    border: 1px solid #46596a;
    border-radius: 50%;
    color: #fff;
    background: #0a1017;
    font-size: 23px;
    cursor: pointer;
}

.jsc-modal__video {
    clear: both;
    width: 100%;
    margin-bottom: 15px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 1px solid #324b63;
    background: #000;
}

.jsc-modal__video iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.jsc-modal__eyebrow {
    display: block;
    clear: both;
    padding-top: 6px;
    color: var(--jsc-red);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .15em;
}

.jsc-modal h2 {
    margin: 8px 0;
    font-size: clamp(28px,4vw,48px);
    line-height: 1;
    text-transform: uppercase;
}

.jsc-modal > p,
.jsc-resource-modal__summary {
    color: #b0bbc7;
    font-size: 13px;
    line-height: 1.6;
}

.jsc-resource-modal__body {
    margin-top: 17px;
    padding: 17px;
    border-left: 3px solid var(--jsc-blue);
    color: #a9b6c3;
    background: rgba(22,134,255,.05);
    font-size: 13px;
    line-height: 1.75;
    white-space: pre-line;
}

.jsc-resource-modal__link {
    display: inline-flex;
    margin-top: 15px;
    padding: 9px 13px;
    border: 1px solid #2489e9;
    color: #fff !important;
    text-decoration: none !important;
    background: #07101a;
    font-size: 9px;
    font-weight: 900;
}


/* =========================================================
   EMPTY
   ========================================================= */

.jsc-no-skills,
.jsc-empty-command {
    text-align: center;
    color: #73869a;
}

.jsc-no-skills {
    padding: 30px 14px;
    border: 1px dashed #2c4053;
}

.jsc-no-skills p {
    font-size: 9px;
}

.jsc-empty-command {
    min-height: 730px;
    display: grid;
    place-items: center;
    align-content: center;
    padding: 40px;
}

.jsc-empty-command img {
    width: 180px;
    border-radius: 50%;
}

.jsc-empty-command > span {
    margin-top: 15px;
    color: var(--jsc-red);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .15em;
}

.jsc-empty-command h1 {
    margin: 8px 0;
    font-size: clamp(32px,5vw,64px);
}

.jsc-empty-command h1 strong {
    color: var(--jsc-blue);
}

.jsc-empty-command p {
    max-width: 640px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1250px) {
    .jsc-shell {
        grid-template-columns: 265px minmax(0,1fr);
    }

    .jsc-dashboard-grid {
        grid-template-columns: 1fr 1fr;
    }

    .jsc-stat-rail {
        grid-column: 1 / -1;
        grid-template-columns: repeat(4,1fr);
        grid-template-rows: auto;
    }

    .jsc-stat-rail > div {
        min-height: 120px;
        border-right: 1px solid #263746;
        border-bottom: 0;
    }

    .jsc-lessons-grid {
        grid-template-columns: repeat(3,minmax(0,1fr));
    }

    .jsc-certificate-card {
        grid-column: span 1;
    }
}

@media (max-width: 950px) {
    .jsc-shell {
        display: block;
        width: 100%;
        margin: 0;
        border-left: 0;
        border-right: 0;
    }

    .jsc-sidebar {
        border-right: 0;
        border-bottom: 1px solid #273746;
    }

    .jsc-brand {
        display: none;
    }

    .jsc-skill-nav {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .jsc-command-badge {
        display: none;
    }

    .jsc-top-grid {
        grid-template-columns: 1fr;
    }

    .jsc-hero {
        min-height: 410px;
    }
}

@media (max-width: 700px) {
    .jsc-main {
        padding: 8px;
    }

    .jsc-skill-nav {
        grid-template-columns: 1fr;
    }

    .jsc-dashboard-grid,
    .jsc-lessons-grid {
        grid-template-columns: 1fr;
    }

    .jsc-progress-body {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .jsc-stat-rail {
        grid-column: auto;
        grid-template-columns: repeat(2,1fr);
    }

    .jsc-stat-rail > div {
        min-height: 105px;
    }

    .jsc-hero__selected {
        left: 16px;
        bottom: 16px;
        width: calc(100% - 32px);
    }

    .jsc-hero__selected h1 {
        font-size: 35px;
    }

    .jsc-hero__mini-grid {
        grid-template-columns: 1fr;
    }

    .jsc-hero__mini-grid > div + div {
        padding-left: 0;
        border-left: 0;
    }

    .jsc-featured__stats {
        grid-template-columns: 1fr;
    }

    .jsc-overlay {
        padding: 7px;
    }

    .jsc-modal {
        width: 100%;
        max-height: calc(100vh - 14px);
        padding: 15px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }
}
