:root {
    --shw-display: "Plus Jakarta Sans", sans-serif;
    --shw-shell: min(1400px, calc(100vw - 52px));
    --shw-mono: "JetBrains Mono", monospace;
}

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    background: var(--shw-ink);
}

body {
    min-width: 320px;
    margin: 0;
    overflow-x: clip;
    color: var(--shw-paper);
    background: var(--shw-ink);
    font-family: var(--shw-display);
    font-size: 16px;
    line-height: 1.5;
}

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
    outline: 2px solid var(--shw-orange);
    outline-offset: 4px;
}

[hidden] {
    display: none !important;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.shw-page-canvas {
    min-height: 100vh;
}

.shw-section-kicker {
    margin: 0 0 .65rem;
    color: var(--shw-violet);
    font-family: var(--shw-mono);
    font-size: .71rem;
    font-weight: 500;
    letter-spacing: .08em;
    line-height: 1.3;
}

.shw-site-masthead {
    position: fixed;
    width: 100%;
    padding: 0 max(20px, calc((100% - var(--shw-shell)) / 2));
    top: 0;
    right: 0;
    left: 0;
    z-index: 40;
    display: flex;
    align-items: center;
    min-height: 5.1rem;
    border-bottom: 1px solid var(--shw-line);
    background: var(--shw-ink);
    transition: background-color .28s ease, border-color .28s ease, box-shadow .28s ease, transform .28s ease;
}

.shw-site-masthead.shw-is-scrolled {
    border-color: var(--shw-line);
    background: var(--shw-runtime-background-rgba-6-9-22-93);
    box-shadow: 0 10px 28px var(--shw-runtime-shadow-rgba-0-0-0-18);
    backdrop-filter: blur(18px);
}

.shw-site-brand {
    display: inline-flex;
    align-items: center;
    margin-right: clamp(1rem, 4vw, 5rem);
    color: var(--shw-paper);
    font-size: clamp(1.5rem, 2vw, 4rem);
    font-weight: 700;
    letter-spacing: -.045em;
}

.shw-site-brand img {
    object-fit: contain;
    width: auto;
    max-width: 100%;
    max-height: 2.2rem;
}

.shw-site-masthead__routes,
.shw-site-masthead__actions,
.shw-masthead-btn {
    display: flex;
    align-items: center;
}

.shw-site-masthead__routes {
    gap: .15rem;
}

.shw-site-masthead__route {
    padding: .5rem .65rem;
    color: var(--shw-muted);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .035em;
    text-transform: uppercase;
    transition: color .2s ease;
}

.shw-site-masthead__route:hover,
.shw-site-masthead__route.shw-is-active {
    color: var(--shw-paper);
}

.shw-site-masthead__route.shw-is-active::after {
    display: block;
    width: 100%;
    height: 1px;
    margin-top: .25rem;
    background: var(--shw-orange);
    content: "";
}

.shw-site-masthead__actions {
    gap: .45rem;
    margin-left: auto;
}

.shw-masthead-btn {
    position: relative;
}

.shw-btn-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.5rem;
    padding: .5rem .76rem;
    border: 1px solid var(--shw-line);
    border-radius: 9999px;
    color: var(--shw-paper);
    background: transparent;
    font-family: var(--shw-mono);
    font-size: .7rem;
    letter-spacing: .06em;
    line-height: 1;
    text-transform: uppercase;
    transition: border-color .2s ease, background-color .2s ease, color .2s ease;
}

.shw-btn-btn:hover,
.shw-btn-btn[aria-expanded="true"],
.shw-btn-btn.shw-is-active {
    border-color: var(--shw-violet);
    color: var(--shw-paper);
    background: var(--shw-panel-soft);
}

.shw-btn-btn--icon {
    width: 2.5rem;
    padding: 0;
    font-size: 1.38rem;
}

.shw-btn-btn--saved {
    border-color: var(--shw-line-strong);
    color: var(--shw-paper);
}

.shw-btn-btn--compact {
    min-height: 2.3rem;
    padding-inline: .65rem;
}

.shw-masthead-tile,
.shw-section-lookup__tile {
    position: absolute;
    top: calc(100% + .7rem);
    right: 0;
    z-index: 50;
    border: 1px solid var(--shw-line-strong);
    background: var(--shw-runtime-background-hex-0c1124);
    box-shadow: var(--shw-shadow);
}

.shw-masthead-tile {
    width: min(36rem, calc(100vw - 2rem));
    padding: 1.15rem;
}

.shw-masthead-tile--search {
    width: min(31rem, calc(100vw - 2rem));
}

.shw-masthead-tile__subject {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.shw-masthead-tile__subject .shw-section-kicker {
    margin: .2rem 0 0;
}

.shw-tile-close {
    width: 2rem;
    height: 2rem;
    border: 0;
    color: var(--shw-muted);
    background: transparent;
    font-size: 1.6rem;
    line-height: 1;
}

.shw-tile-close:hover {
    color: var(--shw-paper);
}

.shw-browse-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .1rem 1.4rem;
    max-height: min(54vh, 28rem);
    overflow-y: auto;
    padding-right: .35rem;
}

.shw-browse-grid__link,
.shw-masthead-tile__library a {
    padding: .62rem 0;
    border-bottom: 1px solid var(--shw-runtime-border-rgba-229-235-255-09);
    color: var(--shw-muted);
    font-size: .88rem;
    transition: color .18s ease, padding-left .18s ease;
}

.shw-browse-grid__link:hover,
.shw-browse-grid__link.shw-is-active,
.shw-masthead-tile__library a:hover {
    padding-left: .35rem;
    color: var(--shw-paper);
}

.shw-masthead-tile__library {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: space-between;
}

.shw-masthead-tile__library a {
    border-bottom: 0;
    color: var(--shw-orange);
}

.shw-lookup-form {
    display: flex;
    gap: .5rem;
}

.shw-lookup-form input {
    width: 100%;
    min-width: 0;
    padding: .74rem .8rem;
    border: 1px solid var(--shw-line);
    border-radius: 9999px;
    color: var(--shw-paper);
    background: var(--shw-ink);
}

.shw-lookup-form input::placeholder {
    color: var(--shw-runtime-text-hex-79829a);
}

.shw-lookup-form button {
    flex: 0 0 auto;
    padding: .7rem .9rem;
    border: 1px solid var(--shw-orange);
    border-radius: 9999px;
    color: #000000;
    background: var(--shw-orange);
    font-family: var(--shw-mono);
    font-size: .7rem;
    text-transform: uppercase;
}

.shw-site-workspace {
    width: var(--shw-shell);
    min-height: 55vh;
    padding: 8.9rem 0 5rem;
    margin: 0 auto;
}

.shw-video-specs,
.shw-viewing-canvas__specs {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem .8rem;
    padding: 0;
    margin: 1.15rem 0 0;
    list-style: none;
}

.shw-video-specs li,
.shw-viewing-canvas__specs li {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    color: var(--shw-muted);
    font-family: var(--shw-mono);
    font-size: .68rem;
    letter-spacing: .035em;
    text-transform: uppercase;
}

.shw-video-specs li svg,
.shw-viewing-canvas__specs li svg {
    color: var(--shw-orange);
}

.shw-video-specs li+li::before,
.shw-viewing-canvas__specs li+li::before {
    margin-right: .8rem;
    color: var(--shw-orange);
    content: "•";
}

.shw-watch-btn {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    height: 2.7rem;
    padding: 0 1rem;
    border: 1px solid var(--shw-orange);
    border-radius: 9999px;
    color: #000000;
    background: var(--shw-orange);
    font-family: var(--shw-mono);
    font-size: .73rem;
    letter-spacing: .065em;
    text-transform: uppercase;
    transition: background-color .2s ease, color .2s ease, transform .2s ease;
    box-sizing: border-box;
}

.shw-watch-btn:hover {
    color: var(--shw-text-on-surface-light);
    background: var(--shw-surface-light);
    transform: translateX(.2rem);
}

.shw-watch-btn span {
    font-size: 1rem;
}

.shw-video-tile__like-tile.shw-is-active,
.shw-video-tile__like-tile.shw-is-liked,
.fv-video-likes.shw-is-active,
.fv-video-likes.shw-is-liked,
.fv-video-likes.shw-liked {
    color: var(--shw-violet) !important;
    border-color: var(--shw-violet) !important;
    background: var(--shw-runtime-background-rgba-144-75-255-08) !important;
}

.shw-video-tile__like-tile.shw-is-active svg,
.shw-video-tile__like-tile.shw-is-liked svg,
.fv-video-likes.shw-is-active svg,
.fv-video-likes.shw-is-liked svg,
.fv-video-likes.shw-liked svg {
    color: var(--shw-violet) !important;
}

.shw-catalogue-section {
    width: var(--shw-shell);
    margin: 0 auto;
    padding: 64px 0 0;
}

.shw-catalogue-section+.shw-catalogue-section {
    margin-top: clamp(1.5rem, 4vw, 4rem);
}

.shw-catalogue-section__masthead {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 1.8rem;
    border-bottom: none;
    border-left: 4px solid var(--shw-violet);
    background: var(--shw-panel);
    padding: 0.5rem 1rem;
}

.shw-catalogue-section__subject,
.shw-library-canvas h1,
.shw-not-found-canvas h1,
.shw-viewing-canvas__subject {
    margin: 0;
    color: var(--shw-paper);
    font-size: clamp(2rem, 3.7vw, 3.7rem);
    letter-spacing: -.065em;
    line-height: .98;
}

.shw-catalogue-section__subtitle {
    max-width: 36rem;
    margin: .8rem 0 0;
    color: var(--shw-muted);
}

.shw-video-queue {
    display: grid;
}

.shw-video-queue--grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
    counter-reset: shw-frame;
}

.shw-video-queue--rail {
    grid-auto-columns: minmax(13.5rem, 20rem);
    grid-auto-flow: column;
    gap: 1.15rem;
    overflow-x: auto;
    padding: .25rem max(0px, calc((100vw - var(--shw-shell)) / 2)) 1.3rem 0;
    scrollbar-color: var(--shw-violet) transparent;
    scroll-snap-type: x proximity;
}

.shw-video-queue--rail .shw-video-tile,
.shw-video-queue--rail .shw-tile {
    scroll-snap-align: start;
}

.shw-video-tile,
.shw-tile {
    position: relative;
    min-width: 0;
    background: transparent;
    border: none;
    border-radius: 0px;
    box-shadow: 4px 4px 0 var(--shw-violet);
    transition: transform .28s ease, box-shadow .28s ease;
}

.shw-video-tile:hover,
.shw-tile:hover {
    transform: translateY(-3px);
    box-shadow: 6px 6px 0 var(--shw-orange);
}

.shw-video-tile--grid {
    padding: 0;
    border-top: none;
}

.shw-video-tile--rail {
    padding-bottom: .85rem;
    border-bottom: 1px solid var(--shw-line);
}

.shw-video-tile__shot,
.shw-tile__shot {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: var(--fv-thumb-aspect-ratio, 16 / 9);
    background: var(--shw-panel);
    border-radius: 0px;
}

.shw-video-tile--rail .shw-video-tile__shot {
    border-left: 2px solid var(--shw-violet);
}

.shw-video-tile--grid .shw-video-tile__shot {
    border: 1px solid rgba(253, 239, 236, 0.1);
}

.shw-video-tile__shot-422,
.shw-tile__shot-414 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0px;
    transition: transform .34s ease, filter .34s ease;
}

.shw-video-tile__shot::after,
.shw-tile__shot::after {
    position: absolute;
    inset: 45% 0 0;
    background: linear-gradient(transparent, var(--shw-runtime-background-rgba-3-5-14-75));
    content: "";
    pointer-events: none;
}

.shw-video-tile:hover .shw-video-tile__shot-422,
.shw-video-tile:hover .shw-tile__shot-414,
.shw-tile:hover .shw-video-tile__shot-422,
.shw-tile:hover .shw-tile__shot-414 {
    filter: saturate(1.2);
    transform: scale(1.04);
}

.shw-video-tile__ribbon,
.shw-tile__ribbon,
.shw-tile__chip {
    position: absolute;
    top: .65rem;
    bottom: auto;
    left: .65rem;
    right: auto;
    z-index: 1;
    padding: .28rem .65rem;
    color: var(--shw-paper);
    background: var(--shw-ink);
    border: none;
    border-radius: 9999px;
    transform: none;
    font-family: var(--shw-mono);
    font-size: .61rem;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.shw-video-tile__play {
    position: absolute;
    right: .65rem;
    bottom: .65rem;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    height: 1.8rem;
    padding-inline: .6rem;
    border: 1px solid var(--shw-runtime-border-rgba-244-242-238-6);
    border-radius: 9999px;
    color: var(--shw-paper);
    background: var(--shw-runtime-background-rgba-4-6-17-48);
    font-size: .68rem;
    font-weight: 500;
}

.shw-video-tile__workspace,
.shw-tile__workspace {
    position: relative;
    padding: .85rem 0 0;
}

.shw-video-tile--rail .shw-video-tile__workspace {
    padding-top: 1rem;
}

.shw-video-tile__subject,
.shw-tile__subject {
    margin: 0;
    font-size: clamp(.94rem, 1.3vw, 1.1rem);
    font-weight: 400;
    text-align: center;
    text-transform: none;
    letter-spacing: -.025em;
    line-height: 1.23;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 3.69em;
    padding-right: 2.8rem;
}

.shw-video-tile__like-tile {
    position: absolute;
    right: 0;
    top: .85rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 2.3rem;
    height: 2.3rem;
    border: 1px solid rgba(253, 239, 236, 0.16);
    border-radius: 9999px;
    background: rgba(253, 239, 236, 0.02);
    color: var(--shw-muted);
    cursor: pointer;
    transition: all .2s ease;
}

.shw-video-tile__like-tile:hover {
    color: var(--shw-paper);
    border-color: var(--shw-runtime-border-rgba-244-242-238-4);
    background: var(--shw-runtime-background-rgba-244-242-238-05);
}

.shw-video-tile__like-tile.shw-is-active,
.shw-video-tile__like-tile.shw-is-liked {
    color: var(--shw-violet);
    border-color: var(--shw-violet);
    background: var(--shw-runtime-background-rgba-144-75-255-08);
}

.shw-video-tile__like-tile svg {
    margin-bottom: .15rem;
    color: var(--shw-muted);
    transition: color .2s ease;
}

.shw-video-tile__like-tile.shw-is-active svg,
.shw-video-tile__like-tile.shw-is-liked svg {
    color: var(--shw-violet);
}

.shw-video-tile__like-tile span {
    line-height: 1;
    font-size: .52rem;
    font-weight: 500;
}

.shw-video-tile__subject a:hover,
.shw-tile__subject a:hover {
    color: var(--shw-violet);
}

.shw-video-tile__specs {
    gap: .25rem .5rem;
    margin-top: .52rem;
}

.shw-video-tile__specs li,
.shw-tile .shw-video-specs li {
    font-size: .59rem;
}

.shw-video-tile__specs li+li::before {
    margin-right: .5rem;
}

.shw-tile-remove-btn {
    position: absolute;
    top: .65rem;
    right: 0;
    display: grid;
    width: 1.8rem;
    height: 1.8rem;
    place-items: center;
    border: 1px solid var(--shw-line);
    border-radius: 9999px;
    color: var(--shw-muted);
    background: var(--shw-panel);
}

.shw-tile-remove-btn:hover {
    border-color: var(--shw-orange);
    color: var(--shw-orange);
}

.shw-remove-icon {
    height: .9rem;
    width: .9rem;
}

.shw-section-lookup {
    position: relative;
}

.shw-section-lookup__tile {
    width: 9rem;
    padding: .35rem;
}

.shw-section-lookup__link {
    display: block;
    padding: .55rem .6rem;
    color: var(--shw-muted);
    font-size: .8rem;
}

.shw-section-lookup__link:hover,
.shw-section-lookup__link.shw-is-active {
    color: var(--shw-paper);
    background: var(--shw-panel-soft);
}

.fv-banner,
.shw-shutter_wave-banner,
[data-banner-type="header"],
[data-banner-type="footer"] {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
}

.shw-shutter_wave-banner {
    width: 100%;
    max-width: var(--shw-shell);
    margin: 0 auto;
}

.shw-shutter_wave-banner:not(:empty) {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.shw-shutter_wave-banner img,
.fv-banner img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.shw-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    margin-top: 3rem;
}

.shw-pagination__pages {
    display: flex;
    align-items: center;
    gap: .3rem;
}

.shw-pagination__page,
.shw-pagination__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.25rem;
    min-height: 2.25rem;
    padding: .4rem .65rem;
    border: 1px solid rgba(253, 239, 236, 0.16);
    border-radius: 9999px;
    color: var(--shw-muted);
    background: transparent;
    font-family: var(--shw-mono);
    font-size: .7rem;
}

.shw-pagination__page:hover,
.shw-pagination__btn:hover,
.shw-pagination__page.shw-is-active {
    border-color: var(--shw-violet);
    color: var(--shw-paper);
    background: var(--shw-panel-soft);
}

.shw-pagination__gap {
    color: var(--shw-muted);
}

.shw-pagination__btn.shw-is-disabled {
    opacity: .35;
    pointer-events: none;
}

.shw-suggest-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--shw-runtime-background-rgba-6-9-22-95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--shw-line);
    border-top: 0;
    max-height: 260px;
    overflow-y: auto;
    display: none;
    scrollbar-width: thin;
    scrollbar-color: var(--shw-muted) transparent;
}

.shw-suggest-dropdown.shw-is-visible {
    display: block;
}

.shw-suggest-row {
    display: block;
    padding: 10px 14px;
    font-size: .8rem;
    font-family: var(--shw-mono);
    color: var(--shw-paper);
    transition: background-color .15s ease;
}

.shw-suggest-row:hover {
    background: var(--shw-panel-soft);
}

.shw-empty-state {
    padding: 2.5rem 0;
    color: var(--shw-muted);
}

.shw-viewing-canvas {
    width: min(1100px, 100%);
    margin: 0 auto;
    border-top: 2px solid var(--shw-orange);
}

.shw-viewing-canvas__player {
    position: relative;
    aspect-ratio: 16 / 9;
    background: var(--shw-runtime-background-hex-02030a);
}

.shw-viewing-canvas__iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.shw-viewing-canvas__empty {
    display: grid;
    height: 100%;
    margin: 0;
    place-items: center;
    color: var(--shw-muted);
}

.shw-viewing-canvas__specs-661 {
    padding: clamp(1.5rem, 4vw, 3rem) 0;
    border-bottom: 1px solid var(--shw-line);
}

.shw-viewing-canvas__servers,
.shw-server-controls {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.shw-viewing-canvas__servers {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.shw-viewing-canvas__specs-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.35rem;
}

.shw-viewing-canvas__specs-row .shw-viewing-canvas__specs {
    margin-top: 0;
}

.shw-viewing-canvas__specs-row .shw-btn-btn:not(.shw-is-active) {
    border-color: var(--shw-line);
}

.shw-viewing-canvas__specs {
    margin-top: 1.35rem;
}

.shw-viewing-canvas__links {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    margin-top: 1rem;
}

.shw-video-chip__link {
    padding: .38rem .5rem;
    border: 1px solid var(--shw-line);
    border-radius: 9999px;
    color: var(--shw-muted);
    font-family: var(--shw-mono);
    font-size: .66rem;
}

.shw-video-chip__link:hover {
    border-color: var(--shw-violet);
    color: var(--shw-paper);
}

.shw-viewing-canvas__overview {
    max-width: 54rem;
    margin-top: 1.55rem;
    color: var(--shw-runtime-text-hex-ced2dc);
    line-height: 1.8;
}

.shw-viewing-canvas__overview [data-shw-overview-copy] {
    overflow: hidden;
}

.shw-viewing-canvas__overview.shw-is-collapsed [data-shw-overview-copy] {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    line-clamp: 4;
}

.shw-viewing-canvas__overview button {
    padding: .6rem 0 0;
    border: 0;
    color: var(--shw-violet);
    background: transparent;
    font-family: var(--shw-mono);
    font-size: .7rem;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.shw-library-canvas,
.shw-not-found-canvas {
    width: min(900px, 100%);
    min-height: 37vh;
    margin: 0 auto;
    padding: clamp(2rem, 6vw, 5rem) 0;
    border-top: 1px solid var(--shw-line-strong);
}

.shw-library-canvas .shw-video-queue {
    margin-top: 2.2rem;
}

.shw-library-canvas__count {
    font-size: .72rem;
    font-family: var(--shw-mono);
    color: var(--shw-muted);
}

.shw-not-found-canvas p:not(.shw-section-kicker) {
    max-width: 36rem;
    color: var(--shw-muted);
    font-size: 1.05rem;
}

.shw-site-foot {
    width: var(--shw-shell);
    margin: 0 auto;
    padding: 2rem 0 2.3rem;
}

.shw-site-foot .shw-shutter_wave-banner {
    width: 100%;
    max-width: var(--shw-shell);
    margin: 0 auto 2.5rem auto;
}

.shw-site-foot .shw-shutter_wave-banner:not(:empty) {
    margin-bottom: 2.7rem;
}

.shw-site-foot__end-canvas {
    border-top: 2px solid var(--shw-violet);
    border-bottom: 1px solid var(--shw-line-strong);
}

.shw-site-foot__credits {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(14rem, .75fr);
    gap: clamp(1.5rem, 5vw, 5rem);
    padding: clamp(24px, 4vw, 46px);
}

.shw-site-foot__chip {
    margin: 0 0 1.15rem;
    color: var(--shw-orange);
    font-family: var(--shw-mono);
    font-size: .66rem;
    letter-spacing: .08em;
}

.shw-site-foot__lead>strong {
    display: block;
    margin-bottom: .8rem;
    font-size: clamp(1.55rem, 2.6vw, 2.4rem);
    letter-spacing: -.06em;
}

.shw-site-foot__summary {
    color: var(--shw-muted);
    max-width: 43rem;
    font-size: .9rem;
    line-height: 1.7;
}

.shw-site-foot__summary p {
    margin: 0;
}

.shw-site-foot__utilities {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-self: start;
    gap: 0;
    border-top: 1px solid var(--shw-line);
}

.shw-site-foot__utilities a {
    display: grid;
    min-height: 72px;
    align-content: center;
    gap: 4px;
    padding: 10px 0;
    color: var(--shw-muted);
    border-bottom: 1px solid var(--shw-line);
    font-family: var(--shw-mono);
    font-size: .66rem;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.shw-site-foot__utilities a+a {
    padding-left: 12px;
    border-left: 1px solid var(--shw-line);
}

.shw-site-foot__utilities a span:first-child {
    font-size: .58rem;
    color: var(--shw-violet);
}

.shw-site-foot__utilities a:hover {
    color: var(--shw-paper);
}

.shw-site-foot__filmstrip {
    display: flex;
    flex-direction: column;
    margin-top: 2.8rem;
    border-top: 1px solid var(--shw-line);
    border-bottom: 1px solid var(--shw-line);
}

.shw-site-foot__canvas {
    min-width: 0;
    padding: 1.5rem 0;
}

.shw-site-foot__canvas+.shw-site-foot__canvas {
    border-top: 1px solid var(--shw-line);
    border-left: 0;
}

.shw-site-foot__canvas .shw-section-kicker {
    margin-bottom: 11px;
}

.shw-site-foot__canvas>div {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem 1rem;
}

.shw-site-foot__canvas--links a {
    color: var(--shw-muted);
    font-size: .78rem;
}

.shw-site-foot__canvas--keywords a {
    display: inline-block;
    padding: .35rem .7rem;
    border: 1px solid var(--shw-line);
    border-radius: 9999px;
    color: var(--shw-runtime-text-hex-7f879d);
    font-family: var(--shw-mono);
    font-size: .64rem;
    background: var(--shw-runtime-background-rgba-244-242-238-01);
    transition: all .2s ease;
}

.shw-site-foot__canvas--keywords a:hover {
    color: var(--shw-violet);
    border-color: var(--shw-violet);
    background: var(--shw-runtime-background-rgba-144-75-255-05);
}

.shw-site-foot__canvas--links a:hover {
    color: var(--shw-paper);
}

.shw-site-foot__legal {
    margin: 18px 0 0;
    color: var(--shw-runtime-text-hex-697188);
    font-family: var(--shw-mono);
    font-size: .62rem;
    letter-spacing: .09em;
    text-transform: uppercase;
}

/* padding handled dynamically */

@media (max-width: 980px) {
    :root {
        --shw-shell: min(100% - 36px, 760px);
    }

    .shw-site-masthead {
        min-height: 4.6rem;
    }

    .shw-site-brand {
        margin-right: 1.2rem;
    }

    .shw-video-queue--grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 30px;
    }
}

@media (max-width: 660px) {
    :root {
        --shw-shell: calc(100% - 28px);
    }

    .shw-site-masthead {
        min-height: 4.25rem;
    }

    .shw-site-masthead__routes {
        display: none;
    }

    .shw-site-brand {
        max-width: 46vw;
        margin-right: auto;
    }

    .shw-site-masthead__actions {
        gap: .35rem;
    }

    .shw-btn-btn {
        min-height: 2.25rem;
        padding-inline: .55rem;
    }

    .shw-btn-btn--icon {
        width: 2.25rem;
    }

    .shw-btn-btn--saved {
        display: none;
    }

    .shw-masthead-tile {
        position: fixed;
        top: 4.7rem;
        right: 0;
        left: 0;
        width: min(100% - 20px, 37rem);
        max-height: calc(100vh - 5.6rem);
        margin: 0 auto;
        overflow-y: auto;
    }

    .shw-masthead-tile--search {
        overflow: visible;
        overflow-y: visible;
    }

    .shw-browse-grid {
        grid-template-columns: 1fr;
        max-height: none;
    }

    .shw-site-workspace {
        padding-bottom: 3.8rem;
    }

    .shw-catalogue-section__masthead {
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.35rem;
    }

    .shw-catalogue-section__subject {
        font-size: 2rem;
    }

    .shw-video-queue--grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 15px;
    }

    .shw-video-queue--rail {
        grid-auto-columns: minmax(12.5rem, 76vw);
    }

    .shw-video-tile__subject,
    .shw-tile__subject {
        font-size: .92rem;
    }

    .shw-video-tile__specs li,
    .shw-tile .shw-video-specs li {
        font-size: .54rem;
    }

    .shw-pagination {
        flex-wrap: wrap;
    }

    .shw-site-foot__credits {
        grid-template-columns: 1fr;
        gap: 1.7rem;
        padding: 22px 0;
    }

    .shw-site-foot__utilities a {
        padding: 10px 0;
    }

    .shw-site-foot__utilities a+a {
        padding-left: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

/* Age Gate Overlay */

.shw-age-gate {
    background: var(--shw-ink) !important;
    color: var(--shw-paper) !important;
}

.shw-age-gate__workspace {
    border: 1px solid var(--shw-line) !important;
    border-radius: 0 !important;
    background: var(--shw-panel) !important;
    box-shadow: var(--shw-shadow) !important;
}

.shw-age-gate__brand-cluster {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 0 auto 20px !important;
    text-align: center !important;
    justify-content: center !important;
}

.shw-age-gate__brand-logo {
    height: 34px !important;
    width: auto !important;
}

.shw-age-gate__brand {
    font-size: 1rem !important;
    font-family: var(--shw-display) !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    color: var(--text-on-theme) !important;
    background: var(--shw-violet) !important;
    padding: 7px 14px !important;
    border-radius: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.shw-age-gate__chip {
    text-align: center !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: var(--shw-orange) !important;
    color: #000000 !important;
    border: 1px solid var(--shw-orange) !important;
    border-radius: 9999px !important;
    text-shadow: none !important;
}

.shw-age-gate__subject {
    font-family: var(--shw-display) !important;
    color: var(--shw-paper) !important;
}

.shw-age-gate__desc {
    color: var(--shw-muted) !important;
}

.shw-age-gate__btn,
.shw-age-gate__btn--active {
    border-radius: 9999px !important;
    background: var(--shw-orange) !important;
    color: #000000 !important;
    border: 1px solid var(--shw-orange) !important;
    font-weight: 700 !important;
    box-shadow: none !important;
}

.shw-age-gate__btn:hover {
    filter: brightness(1.12) !important;
    box-shadow: none !important;
}

/* Infinite scroll related videos */

.shw-infinite-scroll-status {
    text-align: center;
    padding: 2.2rem 0 1rem;
    margin-top: 1rem;
    width: 100%;
    clear: both;
}

.shw-infinite-scroll-loading,
.shw-infinite-scroll-nomore {
    font-family: var(--shw-mono);
    letter-spacing: .05em;
    color: var(--shw-muted);
    display: none;
    font-size: .85rem;
    text-transform: uppercase;
}

.shw-infinite-scroll-loading .shw-spinner {
    display: inline-block;
    width: .9rem;
    height: .9rem;
    vertical-align: middle;
    margin-right: .5rem;
    animation: shw-spin .8s linear infinite;
}

@keyframes shw-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Policy and static records */

.shw-policy-canvas {
    width: 100%;
    padding: 0;
}

.shw-policy-tile {
    width: 100%;
    padding: 0;
    color: var(--shw-paper);
    background: transparent;
    border: none;
}

.shw-policy-tile h1 {
    margin: 0 0 2rem;
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    line-height: 1;
}

.shw-policy-tile h2 {
    margin: 2.2rem 0 .7rem;
    padding-bottom: .5rem;
    color: var(--shw-orange);
    border-bottom: 1px solid var(--shw-line);
}

.shw-policy-tile p,
.shw-policy-tile li {
    color: var(--shw-muted);
    line-height: 1.8;
}

.shw-policy-tile a {
    color: var(--shw-orange);
    font-weight: 700;
    text-decoration: underline;
}

.shw-policy-note {
    margin: 1.5rem 0;
    padding: 1rem;
    border-left: 4px solid var(--shw-orange);
}

.shw-policy-form {
    width: 100%;
    margin: 2rem 0 0;
    padding: 0;
    background: transparent;
    border: none;
}

.shw-policy-form fieldset {
    margin: 0;
    padding: 0;
    border: 0;
}

.shw-policy-form legend {
    margin-bottom: 1rem;
    font-weight: 700;
}

.shw-form-grid {
    display: grid;
    gap: 1rem;
}

.shw-policy-field {
    display: grid;
    gap: .4rem;
}

.shw-policy-field input,
.shw-policy-field textarea,
.shw-policy-field select {
    width: 100%;
    min-height: 46px;
    padding: .75rem;
    color: var(--shw-paper);
    background-color: var(--shw-panel);
    border: 1px solid var(--shw-line);
    font: inherit;
}

.shw-policy-field textarea {
    min-height: 150px;
    resize: vertical;
}

.shw-policy-field select {
    appearance: none;
    padding-right: 2.8rem;
    background-image: var(--shw-select-arrow);
    background-position: right .9rem center;
    background-repeat: no-repeat;
}

.shw-policy-check {
    display: flex;
    gap: .7rem;
    align-items: flex-start;
    color: var(--shw-muted);
}

.shw-policy-submit {
    min-height: 46px;
    margin-top: 1rem;
    padding: .75rem 1rem;
    color: var(--text-on-theme);
    background: var(--shw-orange);
    border: 1px solid var(--shw-orange);
    font-weight: 700;
}

.shw-policy-status {
    min-height: 1.5rem;
}

.shw-policy-table-wrap {
    margin: 1.5rem 0;
    overflow-x: auto;
    border: 1px solid var(--shw-line);
}

.shw-policy-table {
    width: 100%;
    min-width: 680px;
    border-collapse: collapse;
}

.shw-policy-table caption {
    padding: .8rem;
    color: var(--text-on-theme);
    background: var(--shw-orange);
    text-align: left;
    font-weight: 700;
}

.shw-policy-table th,
.shw-policy-table td {
    padding: .75rem;
    border: 1px solid var(--shw-line);
    text-align: left;
}

.shw-policy-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .6rem 1rem;
    width: 100%;
    margin: 1.5rem auto;
}

.shw-policy-links a {
    font-size: .72rem;
    color: var(--shw-orange);
}

@media(min-width:680px) {
    .shw-form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .shw-field-wide {
        grid-column: 1/-1;
    }
}

/* Lucide Icon Base Styling */
.shw-lucide, [data-lucide] {
    display: inline-block;
    vertical-align: middle;
    width: 1em;
    height: 1em;
    stroke-width: 2;
    stroke: currentColor;
    fill: none;
}

/* dom-compatibility-shw */
.shw-video-tile__subject > * {
    margin: 0;
    font-size: inherit;
    font-weight: 700;
    color: inherit;
}
.shw-video-tile__ribbon {
    font-style: normal;
}

/* Like active fill */
.fv-video-likes.shw-is-liked svg, .fv-video-likes.shw-liked svg {
    fill: currentColor;
}
