page-home-review {
    display: grid;
    grid-template-rows: min-content minmax(0, 1fr);
    grid-template-columns: 100%;
    gap: var(--u);
    padding: var(--u);
    overflow-x: scroll;
}

page-home-review > nav-panel > template-enhance {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-rows: max-content;
    grid-auto-flow: row;
    row-gap: var(--u);
    column-gap: var(--u-sm);
    overflow: visible;
    overflow-y: scroll;
}

page-home-review > nav-panel > template-enhance > output-i18n {
    display: none;
}

page-home-review > nav-panel > template-enhance > section {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: var(--u-2xs);
    cursor: pointer;
    color: var(--color-black);
}

page-home-review > nav-panel > template-enhance > section output-i18n {
    white-space: pre-wrap;
}

page-home-review > nav-panel > template-enhance.class > section > i {
    aspect-ratio: 1;
    width: 100%;
    font-size: 3rem;
    background: linear-gradient(to bottom right, var(--color-green), var(--color-green-lg));
    color: white;
    border-radius: var(--border-radius);
}

page-home-review > nav-panel > template-enhance > section > header {
    width: 100%;
    aspect-ratio: 1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius);
    position: relative;
    overflow: visible;
}

page-home-review > nav-panel > template-enhance.lesson > section > header > i.playable {
    position: absolute;
    top: 50%;
    margin-top: -1.75rem;
    left: 50%;
    margin-left: -1.75rem;
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--color-blue);
    border: solid 4px white;
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    box-shadow: 0 2px 8px rgb(0 0 0 / 15%);
}

page-home-review > nav-panel > template-enhance.lesson > section > header > i.played {
    position: absolute;
    right: -1.25rem;
    bottom: -1.25rem;
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--color-orange);
    border: solid 4px white;
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    box-shadow: 0 2px 8px rgb(0 0 0 / 15%);
}

page-home-review > nav-panel > template-enhance.lesson > section > header > i.locked {
    position: absolute;
    top: 50%;
    margin-top: -1.75rem;
    left: 50%;
    margin-left: -1.75rem;
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--color-gray);
    border: solid 4px white;
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    box-shadow: 0 2px 8px rgb(0 0 0 / 15%);
}

page-home-review > nav-panel > template-enhance.class.none > output-i18n,
page-home-review > nav-panel > template-enhance.course.none > output-i18n,
page-home-review > nav-panel > template-enhance.lesson.none > output-i18n {
    display: block;
    font-size: 1.25rem;
}

/* */
page-home-review > page-play {
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100vh;
    left: 0;
    transform: translateX(100vw);
    z-index: 9999;
    transition-property: transform;
    transition-duration: var(--transition-time);
}

page-home-review > page-play.on {
    transform: none;
}