:root {
    --hub-bg: #030507;
    --hub-panel: rgba(7, 12, 18, 0.96);
    --hub-panel-soft: rgba(11, 18, 27, 0.91);
    --hub-red: #ec231c;
    --hub-red-dark: #83100d;
    --hub-blue: #0a92ff;
    --hub-blue-dark: #064a8a;
    --hub-white: #f3f5f7;
    --hub-muted: #aeb7c2;
    --hub-line: rgba(255, 255, 255, 0.11);
    --hub-shell: 1500px;
    --hub-heading: Impact, Haettenschweiler, "Arial Narrow Bold", "Franklin Gothic Condensed", sans-serif;
    --hub-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--hub-bg);
}

body.eh-podcast-hub {
    margin: 0;
    min-width: 320px;
    color: var(--hub-white);
    font-family: var(--hub-body);
    background-color: #02060c;
    background-image:
        linear-gradient(180deg, rgba(1, 4, 8, 0.14) 0%, rgba(1, 5, 10, 0.42) 46%, rgba(1, 4, 8, 0.68) 100%),
        url("../img/site-background.png");
    background-position: center top, center top;
    background-size: cover, cover;
    background-repeat: no-repeat, no-repeat;
    background-attachment: fixed, fixed;
    overflow-x: hidden;
}

body.eh-podcast-hub::before,
body.eh-podcast-hub::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

body.eh-podcast-hub::before {
    opacity: 0.34;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: linear-gradient(to bottom, black 0%, transparent 72%);
}

body.eh-podcast-hub::after {
    opacity: 0.11;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.72'/%3E%3C/svg%3E");
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}

button,
input {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
    position: fixed;
    left: 16px;
    top: -100px;
    z-index: 99999;
    padding: 12px 18px;
    color: #fff;
    background: #111;
    border: 1px solid var(--hub-blue);
    text-decoration: none;
}

.skip-link:focus {
    top: 16px;
}

.hub-shell {
    width: min(calc(100% - 34px), var(--hub-shell));
    margin-inline: auto;
}

.hub-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(15, 137, 255, 0.28);
    background: rgba(2, 4, 7, 0.94);
    box-shadow: 0 14px 44px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(14px);
}

.hub-header-inner {
    width: min(calc(100% - 28px), 1580px);
    min-height: 72px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    gap: 14px;
}

.hub-brand {
    min-width: 230px;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
}

.hub-brand img {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.hub-brand-badge {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border: 3px solid #dce5ef;
    border-radius: 50%;
    color: #fff;
    font-family: var(--hub-heading);
    font-size: 21px;
    transform: rotate(-7deg);
    background: radial-gradient(circle at 35% 30%, #ef332d, #7e0b0b 66%);
    box-shadow: 0 0 0 4px #082d54, 0 0 22px rgba(12, 142, 255, 0.35);
}

.hub-brand-copy {
    min-width: 0;
    line-height: 1;
}

.hub-brand-copy strong {
    display: block;
    font-family: var(--hub-heading);
    font-size: clamp(18px, 1.45vw, 26px);
    font-weight: 900;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.hub-brand-copy small {
    display: block;
    margin-top: 6px;
    color: var(--hub-red);
    font-size: 10px;
    font-style: italic;
    font-weight: 800;
    letter-spacing: 0.035em;
}

.hub-nav {
    margin-left: auto;
    display: flex;
    align-items: stretch;
    align-self: stretch;
}

.hub-nav-item {
    position: relative;
    min-width: 0;
    display: flex;
    align-items: stretch;
}

.hub-nav > .hub-nav-item > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    color: rgba(255, 255, 255, 0.83);
    font-family: var(--hub-heading);
    font-size: 15px;
    letter-spacing: 0.035em;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 160ms ease, background 160ms ease;
}

.hub-nav > .hub-nav-item > a::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 0;
    height: 2px;
    transform: scaleX(0);
    background: linear-gradient(90deg, var(--hub-red), var(--hub-blue));
    transition: transform 160ms ease;
}

.hub-nav > .hub-nav-item > a:hover,
.hub-nav > .hub-nav-item > a:focus-visible,
.hub-nav > .hub-nav-item > a.is-active,
.hub-nav-item:focus-within > a {
    color: #fff;
    background: rgba(255, 255, 255, 0.025);
}

.hub-nav > .hub-nav-item > a:hover::after,
.hub-nav > .hub-nav-item > a:focus-visible::after,
.hub-nav > .hub-nav-item > a.is-active::after,
.hub-nav-item:focus-within > a::after {
    transform: scaleX(1);
}

.hub-nav > .hub-nav-item > a.is-active {
    color: var(--hub-red);
}

.hub-has-submenu > a::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 8px;
    width: 5px;
    height: 5px;
    border-right: 1px solid rgba(190, 211, 227, 0.72);
    border-bottom: 1px solid rgba(190, 211, 227, 0.72);
    transform: translateX(-50%) rotate(45deg);
    opacity: 0.68;
}

.hub-submenu {
    position: absolute;
    top: calc(100% - 1px);
    left: 50%;
    z-index: 40;
    min-width: 205px;
    padding: 8px;
    display: grid;
    gap: 3px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 8px);
    border: 1px solid rgba(42, 126, 187, 0.5);
    border-top: 2px solid var(--hub-red);
    border-radius: 0 0 9px 9px;
    background: rgba(2, 10, 17, 0.995);
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.62), 0 0 20px rgba(20, 124, 193, 0.1);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.hub-nav-item:hover > .hub-submenu,
.hub-nav-item:focus-within > .hub-submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.hub-submenu a {
    min-height: 39px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    color: #d9dee3;
    font-family: var(--hub-heading);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.035em;
    text-transform: uppercase;
    text-decoration: none;
    border-left: 2px solid transparent;
    background: rgba(255, 255, 255, 0.012);
}

.hub-submenu a:hover,
.hub-submenu a:focus-visible {
    color: #fff;
    border-left-color: var(--hub-blue);
    background: rgba(19, 158, 242, 0.1);
    outline: none;
}

.hub-site-search {
    position: relative;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.hub-site-search input {
    position: absolute;
    z-index: 4;
    top: 50%;
    right: 50px;
    width: 0;
    height: 42px;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(13, 139, 255, 0.55);
    border-radius: 5px;
    outline: 0;
    opacity: 0;
    pointer-events: none;
    color: #fff;
    font: 700 13px/1 var(--hub-body);
    background: rgba(3, 8, 14, 0.98);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.52);
    transform: translateY(-50%);
    transition: width 180ms ease, opacity 150ms ease, padding 180ms ease;
}

.hub-site-search.is-open input {
    width: min(250px, 44vw);
    padding: 0 14px;
    opacity: 1;
    pointer-events: auto;
}

.hub-site-search-toggle {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid rgba(255, 48, 48, 0.86);
    border-radius: 3px;
    color: #fff;
    background: linear-gradient(180deg, #cf171b, #76080b);
    box-shadow: inset 0 1px rgba(255,255,255,.12), 0 0 18px rgba(225, 21, 27, 0.16);
    cursor: pointer;
}

.hub-site-search-toggle:hover,
.hub-site-search-toggle:focus-visible {
    background: linear-gradient(180deg, #ec2428, #8f0b0e);
}

.hub-site-search-toggle svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
}

.hub-admin-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(236, 35, 28, 0.65);
    border-radius: 5px;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    background: linear-gradient(180deg, rgba(196, 27, 22, 0.92), rgba(101, 7, 7, 0.95));
}

.hub-menu-toggle {
    display: none;
    width: 44px;
    height: 40px;
    margin-left: auto;
    padding: 9px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 4px;
    background: #0a1119;
}

.hub-menu-toggle span:not(.screen-reader-text) {
    display: block;
    height: 2px;
    margin: 4px 0;
    background: #fff;
}

.hub-hero {
    position: relative;
    min-height: 610px;
    overflow: hidden;
    border-bottom: 1px solid rgba(236, 35, 28, 0.22);
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.93) 0%, rgba(1, 5, 10, 0.74) 34%, rgba(0, 10, 20, 0.14) 68%, rgba(2, 4, 6, 0.65) 100%),
        radial-gradient(circle at 68% 38%, rgba(4, 126, 255, 0.23), transparent 29%),
        radial-gradient(circle at 82% 38%, rgba(238, 26, 23, 0.23), transparent 26%),
        linear-gradient(180deg, #030609, #07111c 52%, #030609);
}

.hub-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.28;
    background-image:
        linear-gradient(90deg, transparent 49%, rgba(14, 132, 255, 0.14) 50%, transparent 51%),
        linear-gradient(transparent 49%, rgba(236, 35, 28, 0.1) 50%, transparent 51%);
    background-size: 90px 90px;
    mask-image: linear-gradient(90deg, transparent 0%, black 36%, black 100%);
}

.hub-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 95px;
    pointer-events: none;
    background: linear-gradient(to bottom, transparent, #04070b);
}

.hub-hero-grid {
    position: relative;
    z-index: 2;
    min-height: 610px;
    display: grid;
    grid-template-columns: minmax(330px, 0.72fr) minmax(620px, 1.28fr);
    align-items: stretch;
}

.hub-hero-copy {
    position: relative;
    z-index: 4;
    align-self: center;
    padding: 58px 0 64px 18px;
}

.hub-eyebrow,
.hub-mini-label {
    margin: 0 0 8px;
    color: var(--hub-blue);
    font-family: var(--hub-heading);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hub-hero h1 {
    margin: 0;
    font-family: var(--hub-heading);
    font-size: clamp(88px, 9vw, 166px);
    font-weight: 900;
    line-height: 0.72;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    text-shadow: 0 5px 0 #111, 0 14px 30px rgba(0, 0, 0, 0.72);
}

.hub-hero h1 span,
.hub-hero h1 strong {
    display: block;
}

.hub-hero h1 span {
    color: #eeeff1;
}

.hub-hero h1 strong {
    margin-left: 32px;
    color: var(--hub-red);
}

.hub-tagline {
    max-width: 430px;
    margin: 28px 0 0;
    color: var(--hub-red);
    font-size: clamp(21px, 2vw, 32px);
    font-weight: 850;
    font-style: italic;
    line-height: 1.05;
    text-shadow: 0 0 20px rgba(236, 35, 28, 0.28);
}

.hub-tagline::first-line {
    color: var(--hub-blue);
}

.hub-intro {
    max-width: 500px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.65;
}

.hub-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.hub-button {
    min-height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 21px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 3px;
    color: #fff;
    font-family: var(--hub-heading);
    font-size: 16px;
    letter-spacing: 0.045em;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.13), 0 10px 25px rgba(0, 0, 0, 0.32);
    transition: transform 160ms ease, filter 160ms ease, box-shadow 160ms ease;
}

.hub-button:hover,
.hub-button:focus-visible {
    transform: translateY(-2px);
    filter: brightness(1.12);
}

.hub-button-red {
    background:
        linear-gradient(135deg, transparent 0 6%, rgba(255, 255, 255, 0.08) 6% 8%, transparent 8% 100%),
        linear-gradient(180deg, #ed2d25, #a50f0b);
    box-shadow: 0 10px 30px rgba(236, 35, 28, 0.2);
}

.hub-button-blue {
    border-color: rgba(12, 141, 255, 0.58);
    background:
        linear-gradient(135deg, transparent 0 6%, rgba(255, 255, 255, 0.08) 6% 8%, transparent 8% 100%),
        linear-gradient(180deg, #0e72c9, #063e76);
    box-shadow: 0 10px 30px rgba(10, 146, 255, 0.17);
}

.hub-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 22px;
}

.hub-stats span {
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    background: rgba(0, 0, 0, 0.42);
}

.hub-stats strong {
    color: #fff;
}

.hub-hero-art {
    position: relative;
    min-width: 0;
    align-self: stretch;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: visible;
}

.hub-hero-art::before {
    content: "";
    position: absolute;
    width: 74%;
    height: 72%;
    left: 14%;
    top: 15%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(20, 121, 236, 0.21), rgba(235, 34, 29, 0.1) 45%, transparent 70%);
    filter: blur(18px);
}

.hub-hero-art img {
    position: relative;
    z-index: 2;
    width: min(970px, 72vw);
    max-width: none;
    margin: 0 -10% -4% -4%;
    filter: drop-shadow(0 30px 38px rgba(0, 0, 0, 0.76));
}

.hub-on-air {
    position: absolute;
    z-index: 3;
    top: 53px;
    left: 50%;
    transform: translateX(-50%) rotate(-1deg);
    padding: 10px 21px 8px;
    border: 3px solid rgba(255, 70, 66, 0.88);
    border-radius: 7px;
    color: #ff4d46;
    font-family: var(--hub-heading);
    font-size: clamp(27px, 3.2vw, 48px);
    letter-spacing: 0.06em;
    line-height: 1;
    text-transform: uppercase;
    background: rgba(65, 0, 0, 0.44);
    box-shadow: inset 0 0 13px rgba(255, 56, 48, 0.62), 0 0 10px #ff2f28, 0 0 32px rgba(255, 41, 33, 0.78);
    text-shadow: 0 0 8px #ff4b44, 0 0 16px #ff2a24;
}

.hub-panel {
    position: relative;
    margin-top: -18px;
    border: 1px solid rgba(9, 142, 255, 0.62);
    border-radius: 10px;
    background:
        linear-gradient(135deg, rgba(235, 35, 29, 0.05), transparent 24%),
        linear-gradient(315deg, rgba(9, 142, 255, 0.07), transparent 28%),
        var(--hub-panel);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.44), inset 0 0 60px rgba(0, 0, 0, 0.34);
}

.hub-panel::after {
    content: "";
    position: absolute;
    inset: 6px;
    pointer-events: none;
    border: 1px solid rgba(236, 35, 28, 0.17);
    border-radius: 7px;
}

.hub-panel-label {
    position: absolute;
    left: 16px;
    top: -13px;
    z-index: 5;
    padding: 5px 12px;
    color: #fff;
    font-family: var(--hub-heading);
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: linear-gradient(180deg, #d91c17, #86100d);
    border: 1px solid rgba(255, 255, 255, 0.16);
    transform: rotate(-0.5deg);
}

.hub-latest {
    padding: 25px;
}

.hub-latest-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(260px, 0.82fr) minmax(330px, 1.1fr) minmax(340px, 1.08fr);
    gap: 24px;
    align-items: center;
}

.hub-latest-cover {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 1px solid rgba(236, 35, 28, 0.75);
    border-radius: 7px;
    background: #020304;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.45);
}

.hub-latest-cover img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.hub-cover-play {
    position: absolute;
    inset: 50% auto auto 50%;
    width: 66px;
    height: 66px;
    display: grid;
    place-items: center;
    border: 2px solid rgba(255, 255, 255, 0.82);
    border-radius: 50%;
    color: #fff;
    font-size: 25px;
    text-decoration: none;
    background: rgba(0, 0, 0, 0.7);
    transform: translate(-50%, -50%);
    backdrop-filter: blur(7px);
}

.hub-latest-copy h2 {
    margin: 0;
    font-family: var(--hub-heading);
    font-size: clamp(29px, 3vw, 48px);
    line-height: 0.98;
    letter-spacing: 0.025em;
    text-transform: uppercase;
}

.hub-latest-copy > p:not(.hub-mini-label):not(.hub-series-name) {
    margin: 13px 0 18px;
    color: var(--hub-muted);
    font-size: 14px;
    line-height: 1.55;
}

.hub-series-name {
    margin: 7px 0 0;
    color: var(--hub-red);
    font-size: 13px;
    font-weight: 900;
}

.hub-latest-player {
    min-width: 0;
    padding-left: 25px;
    border-left: 1px solid rgba(255, 255, 255, 0.11);
}

.hub-latest-player audio {
    width: 100%;
    min-height: 42px;
    accent-color: var(--hub-red);
}

.hub-embed iframe {
    width: 100% !important;
    max-width: 100%;
}

.hub-player-empty {
    margin: 0 0 16px;
    color: var(--hub-muted);
    font-size: 13px;
}

.hub-platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 15px;
}

.hub-platforms a {
    min-width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0 12px 0 9px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    background: rgba(5, 10, 16, 0.96);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
    transition: border-color 150ms ease, transform 150ms ease, background 150ms ease;
}

.hub-platforms a:hover,
.hub-platforms a:focus-visible {
    transform: translateY(-2px);
    border-color: var(--hub-blue);
    background: #0a1722;
}

.hub-platforms img {
    width: 25px;
    height: 25px;
    flex: 0 0 auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.08));
}

.hub-platforms .platform-amazon-music img {
    width: 38px;
    height: 29px;
}

.hub-platforms .platform-iheartradio img {
    width: 29px;
    height: 29px;
}

.hub-platforms b {
    font-size: 10px;
    letter-spacing: 0.025em;
    white-space: nowrap;
}

.hub-section,
.hub-archive {
    padding-top: 48px;
}

.hub-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 18px;
}

.hub-section-heading.compact {
    align-items: center;
}

.hub-section-heading h2,
.hub-archive-series-head h3 {
    margin: 0;
    font-family: var(--hub-heading);
    font-size: clamp(34px, 4vw, 58px);
    line-height: 0.95;
    letter-spacing: 0.025em;
    text-transform: uppercase;
}

.hub-section-heading > p,
.hub-section-heading > div + p {
    max-width: 490px;
    margin: 0;
    color: var(--hub-muted);
    font-size: 13px;
    line-height: 1.5;
    text-align: right;
}

.hub-section-heading > a {
    color: var(--hub-blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
}

.hub-series-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.hub-series-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(180deg, #08101a, #05080c);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.36);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.hub-series-card.accent-red {
    border-color: rgba(236, 35, 28, 0.55);
}

.hub-series-card.accent-blue {
    border-color: rgba(10, 146, 255, 0.55);
}

.hub-series-card:hover,
.hub-series-card:focus-visible {
    transform: translateY(-5px);
    border-color: #fff;
    box-shadow: 0 21px 35px rgba(0, 0, 0, 0.45), 0 0 24px rgba(10, 146, 255, 0.12);
}

.hub-series-image {
    position: relative;
    aspect-ratio: 1.2 / 1;
    overflow: hidden;
    background-color: #071321;
    background-image:
        linear-gradient(135deg, rgba(236, 35, 28, 0.18), rgba(4, 10, 18, 0.30) 48%, rgba(10, 146, 255, 0.20)),
        url("../img/site-background.png");
    background-position: center;
    background-size: cover;
}

.hub-series-image::before {
    content: "";
    position: absolute;
    z-index: 0;
    inset: 13% 10% 20%;
    pointer-events: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
    box-shadow:
        0 0 18px rgba(255, 255, 255, 0.16),
        0 0 38px rgba(255, 255, 255, 0.08);
    filter: blur(13px);
}

.hub-series-image::after {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to bottom, transparent 48%, rgba(3, 6, 9, 0.91));
}

.hub-series-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    padding: 10px;
    transition: transform 220ms ease;
}

.hub-series-logo {
    -webkit-filter:
        drop-shadow(0 0 1px rgba(255, 255, 255, 0.96))
        drop-shadow(0 0 5px rgba(255, 255, 255, 0.70))
        drop-shadow(0 0 13px rgba(255, 255, 255, 0.30));
    filter:
        drop-shadow(0 0 1px rgba(255, 255, 255, 0.96))
        drop-shadow(0 0 5px rgba(255, 255, 255, 0.70))
        drop-shadow(0 0 13px rgba(255, 255, 255, 0.30));
}

.hub-series-card:hover .hub-series-image img {
    transform: scale(1.035);
}

.hub-series-copy {
    min-height: 210px;
    display: flex;
    flex-direction: column;
    padding: 16px;
}

.hub-series-copy h3 {
    margin: 0;
    font-family: var(--hub-heading);
    font-size: 23px;
    line-height: 1;
    letter-spacing: 0.025em;
    text-transform: uppercase;
}

.hub-series-copy p {
    margin: 11px 0 16px;
    color: var(--hub-muted);
    font-size: 12px;
    line-height: 1.48;
}

.hub-series-copy span {
    margin-top: auto;
    align-self: flex-start;
    padding: 7px 10px;
    border-radius: 2px;
    color: #fff;
    font-family: var(--hub-heading);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: linear-gradient(180deg, #0e71c7, #064b8a);
}

.hub-series-card.accent-red .hub-series-copy span {
    background: linear-gradient(180deg, #d9211b, #88100c);
}

.hub-recent-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.hub-recent-card,
.hub-episode-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(10, 146, 255, 0.32);
    border-radius: 7px;
    background: linear-gradient(180deg, rgba(11, 18, 27, 0.98), rgba(4, 8, 12, 0.98));
    box-shadow: 0 13px 25px rgba(0, 0, 0, 0.32);
}

.hub-recent-card:nth-child(odd),
.hub-episode-card:nth-child(4n + 1) {
    border-color: rgba(236, 35, 28, 0.35);
}

.hub-recent-image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #010203;
}

.hub-recent-image img,
.hub-episode-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.hub-recent-copy {
    padding: 13px;
}

.hub-recent-copy > span,
.hub-episode-body > p {
    display: block;
    margin: 0 0 6px;
    color: var(--hub-blue);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.hub-recent-copy h3 {
    min-height: 43px;
    margin: 0;
    font-family: var(--hub-heading);
    font-size: 18px;
    line-height: 1.08;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.hub-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 13px;
}

.hub-card-actions button,
.hub-card-actions a,
.hub-load-more,
.hub-filter-buttons button {
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 11px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 3px;
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.045em;
    text-decoration: none;
    text-transform: uppercase;
    background: #0a1119;
    cursor: pointer;
}

.hub-card-actions button:hover,
.hub-card-actions button:focus-visible,
.hub-card-actions a:hover,
.hub-card-actions a:focus-visible {
    border-color: var(--hub-blue);
    background: #0a2942;
}

.hub-bring-weird {
    position: relative;
    overflow: hidden;
    min-height: 170px;
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr) auto;
    gap: 22px;
    align-items: center;
    margin-top: 45px;
    padding: 27px 30px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-left-color: rgba(236, 35, 28, 0.72);
    border-right-color: rgba(10, 146, 255, 0.72);
    border-radius: 10px;
    background:
        linear-gradient(90deg, rgba(185, 18, 15, 0.31), rgba(4, 10, 17, 0.86) 43%, rgba(4, 54, 105, 0.31)),
        url("../img/site-background.png") center / cover;
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.42), inset 0 0 35px rgba(255, 255, 255, 0.025);
}

.hub-bring-weird::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(236, 35, 28, 0.08), transparent 35%, transparent 65%, rgba(10, 146, 255, 0.09));
}

.hub-bring-weird > * {
    position: relative;
    z-index: 1;
}

.hub-bring-weird-icon {
    width: 74px;
    height: 74px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    color: #fff;
    background: rgba(3, 7, 11, 0.7);
    box-shadow: 0 0 24px rgba(236, 35, 28, 0.14), inset 0 0 18px rgba(10, 146, 255, 0.09);
}

.hub-bring-weird-icon svg {
    width: 39px;
    height: 39px;
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hub-bring-weird-copy h2 {
    margin: 0;
    font-family: var(--hub-heading);
    font-size: clamp(38px, 4vw, 62px);
    line-height: 0.92;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.hub-bring-weird-copy > p:last-child {
    max-width: 760px;
    margin: 10px 0 0;
    color: var(--hub-muted);
    font-size: 13px;
    line-height: 1.55;
}

.hub-bring-weird .hub-button {
    min-width: 190px;
}

.hub-cta-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 45px;
    border: 1px solid rgba(10, 146, 255, 0.44);
    border-radius: 9px;
    background: linear-gradient(180deg, rgba(8, 13, 19, 0.97), rgba(3, 6, 9, 0.98));
}

.hub-cta-strip > a {
    min-width: 0;
    min-height: 132px;
    display: grid;
    grid-template-columns: 54px 1fr;
    align-content: center;
    column-gap: 13px;
    padding: 20px;
    color: #fff;
    text-decoration: none;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.hub-cta-strip > a:last-child {
    border-right: 0;
}

.hub-cta-icon {
    grid-row: 1 / span 2;
    width: 49px;
    height: 49px;
    display: grid;
    place-items: center;
    align-self: center;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    color: var(--hub-blue);
    background: rgba(4, 9, 14, 0.76);
}

.hub-cta-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hub-cta-icon.hub-cta-logo img {
    width: 41px;
    height: 41px;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.22));
}

.hub-cta-icon.hub-cta-logo svg {
    fill: currentColor;
    stroke: none;
}

.hub-cta-strip a:nth-child(odd) .hub-cta-icon {
    color: var(--hub-red);
}

.hub-cta-strip strong {
    font-family: var(--hub-heading);
    font-size: 20px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.hub-cta-strip small {
    margin-top: 5px;
    color: var(--hub-muted);
    font-size: 11px;
    line-height: 1.45;
}

.hub-archive {
    padding-bottom: 72px;
}

.hub-archive-tools {
    position: sticky;
    top: 72px;
    z-index: 50;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 27px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(3, 7, 11, 0.93);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.33);
    backdrop-filter: blur(12px);
}

.hub-search {
    flex: 1 1 360px;
}

.hub-search input {
    width: 100%;
    min-height: 43px;
    padding: 0 14px;
    border: 1px solid rgba(10, 146, 255, 0.42);
    border-radius: 4px;
    color: #fff;
    outline: none;
    background: #070e15;
}

.hub-search input:focus {
    border-color: var(--hub-blue);
    box-shadow: 0 0 0 3px rgba(10, 146, 255, 0.13);
}

.hub-filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.hub-filter-buttons button.is-active {
    border-color: rgba(236, 35, 28, 0.78);
    background: linear-gradient(180deg, #d8231c, #83100d);
}

.hub-no-results {
    margin-bottom: 25px;
    padding: 25px;
    border: 1px dashed rgba(255, 255, 255, 0.22);
    color: var(--hub-muted);
    text-align: center;
}

.hub-archive-results {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 9px;
    background: rgba(6, 11, 17, 0.72);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(7px);
}

.hub-archive-series {
    scroll-margin-top: 152px;
    margin-bottom: 48px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 9px;
    background: rgba(6, 11, 17, 0.62);
}

.hub-archive-series[hidden] {
    display: none;
}

.hub-archive-series:last-child {
    margin-bottom: 0;
}

.hub-archive-series-head {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 20px;
    align-items: center;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.hub-archive-series-head img {
    width: 112px;
    height: 112px;
    object-fit: contain;
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 7px;
    background:
        linear-gradient(135deg, rgba(236, 35, 28, 0.12), rgba(4, 10, 18, 0.2) 48%, rgba(10, 146, 255, 0.13)),
        url("../img/site-background.png") center / cover;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08) inset,
        0 0 12px rgba(255, 255, 255, 0.18);
}

.hub-archive-series-head h3 {
    font-size: clamp(31px, 3vw, 46px);
}

.hub-archive-series-head > div > p:last-child {
    max-width: 760px;
    margin: 8px 0 0;
    color: var(--hub-muted);
    font-size: 13px;
    line-height: 1.5;
}

.hub-episode-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 13px;
}

.hub-archive-more {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hub-archive-more button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: min(100%, 330px);
    min-height: 48px;
    padding: 10px 18px;
    border: 1px solid rgba(10, 146, 255, 0.62);
    border-radius: 5px;
    color: #fff;
    background: linear-gradient(180deg, rgba(9, 97, 171, 0.96), rgba(4, 44, 83, 0.98));
    box-shadow: 0 0 18px rgba(10, 146, 255, 0.13);
    cursor: pointer;
    font: inherit;
    font-weight: 900;
    letter-spacing: 0.035em;
    text-transform: uppercase;
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.hub-archive-more button:hover,
.hub-archive-more button:focus-visible {
    border-color: rgba(255, 255, 255, 0.72);
    box-shadow: 0 0 22px rgba(10, 146, 255, 0.26);
    transform: translateY(-1px);
}

.hub-archive-more button small {
    color: rgba(255, 255, 255, 0.68);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.hub-archive-more button[hidden] {
    display: none;
}

.hub-archive-more button[aria-expanded="true"] {
    border-color: rgba(236, 35, 28, 0.62);
    background: linear-gradient(180deg, rgba(176, 29, 24, 0.96), rgba(91, 13, 11, 0.98));
    box-shadow: 0 0 18px rgba(236, 35, 28, 0.13);
}

.hub-episode-card {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    min-height: 170px;
}

.hub-episode-card[hidden] {
    display: none;
}

.hub-episode-thumb {
    position: relative;
    overflow: hidden;
    background: #010203;
}

.hub-episode-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 50%);
}

.hub-episode-thumb span {
    position: absolute;
    z-index: 2;
    left: 8px;
    bottom: 8px;
    padding: 5px 7px;
    color: #fff;
    font-family: var(--hub-heading);
    font-size: 13px;
    letter-spacing: 0.05em;
    background: rgba(187, 22, 17, 0.88);
}

.hub-episode-body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding: 13px;
}

.hub-episode-body h4 {
    margin: 0;
    font-family: var(--hub-heading);
    font-size: 19px;
    line-height: 1.08;
    letter-spacing: 0.015em;
    text-transform: uppercase;
}

.hub-episode-description {
    margin-top: 8px;
    color: var(--hub-muted);
    font-size: 11px;
    line-height: 1.45;
}

.hub-episode-body .hub-card-actions {
    margin-top: auto;
    padding-top: 12px;
}

.hub-load-more {
    min-height: 42px;
    margin: 18px auto 0;
    padding-inline: 22px;
    display: flex;
    border-color: rgba(10, 146, 255, 0.5);
    background: linear-gradient(180deg, #0d5fa7, #063e72);
}

.hub-footer {
    border-top: 1px solid rgba(10, 146, 255, 0.26);
    background: #020405;
}

.hub-footer-grid {
    min-height: 130px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 25px;
    align-items: center;
}

.hub-footer strong {
    font-family: var(--hub-heading);
    font-size: 20px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hub-footer p {
    margin: 5px 0 0;
    color: var(--hub-muted);
    font-size: 11px;
}

.hub-footer nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.hub-footer nav a {
    color: var(--hub-blue);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-decoration: none;
    text-transform: uppercase;
}

.hub-footer-grid > p:last-child {
    margin: 0;
    text-align: right;
}

.hub-gallery-modal,
.hub-lightbox {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: none;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(8px);
}

.hub-gallery-modal.is-open,
.hub-lightbox.is-open {
    display: flex;
}

body.hub-overlay-open {
    overflow: hidden;
}

.hub-gallery-modal {
    align-items: center;
    justify-content: center;
    padding: 22px;
}

.hub-gallery-window {
    width: min(1280px, 100%);
    max-height: calc(100vh - 44px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(10, 146, 255, 0.7);
    border-radius: 10px;
    background: #060b10;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.72), 0 0 35px rgba(10, 146, 255, 0.14);
}

.hub-gallery-window > header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(236, 35, 28, 0.35);
    background: linear-gradient(90deg, rgba(236, 35, 28, 0.1), rgba(10, 146, 255, 0.08));
}

.hub-gallery-window header p {
    margin: 0 0 4px;
    color: var(--hub-blue);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hub-gallery-window header h2 {
    margin: 0;
    font-family: var(--hub-heading);
    font-size: 28px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.hub-gallery-window header button,
.hub-lightbox-close,
.hub-lightbox-prev,
.hub-lightbox-next {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    color: #fff;
    font-size: 28px;
    background: #101820;
    cursor: pointer;
}

.hub-gallery-grid {
    overflow: auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    padding: 16px;
}

.hub-gallery-grid button {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 5px;
    background: #000;
    cursor: zoom-in;
}

.hub-gallery-grid button:hover,
.hub-gallery-grid button:focus-visible {
    border-color: var(--hub-red);
}

.hub-gallery-grid img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.hub-gallery-grid span {
    position: absolute;
    inset: auto 0 0;
    padding: 24px 8px 8px;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    text-align: left;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.hub-lightbox {
    align-items: center;
    justify-content: center;
    padding: 60px 86px;
}

.hub-lightbox figure {
    width: min(1200px, 100%);
    max-height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hub-lightbox img {
    max-width: 100%;
    max-height: calc(100vh - 190px);
    object-fit: contain;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.75);
}

.hub-lightbox figcaption {
    max-width: 900px;
    margin-top: 12px;
    color: var(--hub-muted);
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
}

.hub-lightbox figcaption strong {
    display: block;
    color: #fff;
    font-size: 14px;
}

.hub-lightbox figcaption a {
    display: inline-block;
    margin-top: 5px;
    color: var(--hub-blue);
}

.hub-lightbox-close {
    position: absolute;
    top: 18px;
    right: 18px;
}

.hub-lightbox-prev,
.hub-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.hub-lightbox-prev {
    left: 20px;
}

.hub-lightbox-next {
    right: 20px;
}

@media (max-width: 900px) {
    body.eh-podcast-hub {
        background-attachment: scroll, scroll;
    }
}

@media (max-width: 1350px) {
    .hub-brand {
        min-width: 215px;
    }

    .hub-nav a {
        padding-inline: 10px;
        font-size: 13px;
    }

    .hub-hero-grid {
        grid-template-columns: minmax(310px, 0.76fr) minmax(540px, 1.24fr);
    }

    .hub-series-grid,
    .hub-recent-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

@media (max-width: 1080px) {
    .hub-bring-weird {
        grid-template-columns: 70px minmax(0, 1fr) auto;
        gap: 18px;
        padding-inline: 23px;
    }

    .hub-header-inner {
        min-height: 64px;
    }

    .hub-menu-toggle {
        display: block;
    }

    .hub-site-search {
        margin-left: 0;
    }

    .hub-site-search-toggle {
        width: 44px;
        height: 44px;
    }

    .hub-site-search input {
        right: 46px;
    }

    .hub-nav {
        position: absolute;
        left: 14px;
        right: 14px;
        top: calc(100% + 1px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        max-height: calc(100vh - 80px);
        overflow: auto;
        border: 1px solid rgba(10, 146, 255, 0.4);
        border-radius: 0 0 8px 8px;
        background: rgba(3, 7, 11, 0.98);
        box-shadow: 0 22px 50px rgba(0, 0, 0, 0.58);
    }

    .hub-nav.is-open {
        display: flex;
    }

    .hub-nav-item {
        display: block;
    }

    .hub-nav > .hub-nav-item > a {
        width: 100%;
        min-height: 47px;
        justify-content: flex-start;
        padding: 0 18px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .hub-nav > .hub-nav-item > a::after {
        left: 0;
        right: auto;
        top: 0;
        bottom: 0;
        width: 3px;
        height: auto;
        transform: scaleY(0);
    }

    .hub-has-submenu > a::before {
        display: none;
    }

    .hub-submenu {
        position: static;
        min-width: 0;
        margin: 0 0 7px 18px;
        padding: 4px 6px 5px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        border: 0;
        border-left: 1px solid rgba(19, 158, 242, 0.4);
        border-radius: 0;
        background: rgba(10, 25, 37, 0.46);
        box-shadow: none;
    }

    .hub-nav-item:hover > .hub-submenu,
    .hub-nav-item:focus-within > .hub-submenu {
        transform: none;
    }

    .hub-submenu a {
        min-height: 36px;
        font-size: 13px;
    }

    .hub-nav a.is-active::after,
    .hub-nav a:hover::after,
    .hub-nav a:focus-visible::after {
        transform: scaleY(1);
    }

    .hub-hero,
    .hub-hero-grid {
        min-height: 570px;
    }

    .hub-hero-grid {
        grid-template-columns: minmax(290px, 0.82fr) minmax(440px, 1.18fr);
    }

    .hub-hero-art img {
        width: 780px;
        margin-right: -19%;
    }

    .hub-latest-grid {
        grid-template-columns: minmax(250px, 0.8fr) 1.2fr;
    }

    .hub-latest-player {
        grid-column: 1 / -1;
        padding: 20px 0 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-left: 0;
    }

    .hub-cta-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hub-cta-strip > a:nth-child(2) {
        border-right: 0;
    }

    .hub-cta-strip > a:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hub-episode-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 780px) {
    .hub-bring-weird {
        grid-template-columns: 62px minmax(0, 1fr);
        margin-top: 34px;
        padding: 22px;
    }

    .hub-bring-weird-icon {
        width: 58px;
        height: 58px;
    }

    .hub-bring-weird-icon svg {
        width: 31px;
        height: 31px;
    }

    .hub-bring-weird .hub-button {
        grid-column: 1 / -1;
        width: 100%;
    }

    .hub-shell {
        width: min(calc(100% - 20px), 720px);
    }

    .hub-header-inner {
        width: calc(100% - 20px);
    }

    .hub-brand {
        min-width: 0;
    }

    .hub-brand-copy small {
        display: none;
    }

    .hub-admin-link {
        display: none;
    }

    .hub-hero,
    .hub-hero-grid {
        min-height: 0;
    }

    .hub-hero-grid {
        display: flex;
        flex-direction: column;
    }

    .hub-hero-copy {
        padding: 43px 5px 10px;
    }

    .hub-hero h1 {
        font-size: clamp(76px, 24vw, 125px);
    }

    .hub-hero-art {
        min-height: 380px;
        margin-top: -20px;
    }

    .hub-hero-art img {
        width: 720px;
        max-width: 116vw;
        margin: 0 -10vw -5% -5vw;
    }

    .hub-on-air {
        top: 24px;
    }

    .hub-panel {
        margin-top: -3px;
    }

    .hub-latest {
        padding: 20px 14px 14px;
    }

    .hub-latest-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .hub-latest-cover {
        max-width: 520px;
    }

    .hub-latest-player {
        grid-column: auto;
    }

    .hub-section-heading {
        display: block;
    }

    .hub-section-heading > p,
    .hub-section-heading > div + p {
        max-width: none;
        margin-top: 10px;
        text-align: left;
    }

    .hub-section-heading > a {
        display: inline-block;
        margin-top: 10px;
    }

    .hub-series-grid,
    .hub-recent-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hub-cta-strip {
        grid-template-columns: 1fr;
    }

    .hub-cta-strip > a {
        min-height: 108px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hub-cta-strip > a:last-child {
        border-bottom: 0;
    }

    .hub-archive-tools {
        top: 64px;
        display: block;
    }

    .hub-filter-buttons {
        margin-top: 9px;
    }

    .hub-archive-series-head {
        grid-template-columns: 88px minmax(0, 1fr);
    }

    .hub-archive-series-head img {
        width: 82px;
        height: 82px;
    }

    .hub-episode-grid {
        grid-template-columns: 1fr;
    }

    .hub-footer-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        padding-block: 28px;
        text-align: center;
    }

    .hub-footer-grid > p:last-child {
        text-align: center;
    }

    .hub-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hub-lightbox {
        padding: 60px 16px 80px;
    }

    .hub-lightbox-prev,
    .hub-lightbox-next {
        top: auto;
        bottom: 18px;
        transform: none;
    }

    .hub-lightbox-prev {
        left: calc(50% - 58px);
    }

    .hub-lightbox-next {
        right: calc(50% - 58px);
    }
}

@media (max-width: 520px) {
    .hub-bring-weird {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hub-bring-weird-icon {
        margin-inline: auto;
    }

    .hub-platforms a {
        flex: 1 1 calc(50% - 9px);
        justify-content: center;
    }

    .hub-brand img {
        width: 43px;
        height: 43px;
    }

    .hub-brand-copy strong {
        font-size: 17px;
    }

    .hub-hero-copy {
        padding-top: 33px;
    }

    .hub-hero h1 strong {
        margin-left: 15px;
    }

    .hub-hero-actions,
    .hub-button {
        width: 100%;
    }

    .hub-hero-art {
        min-height: 310px;
    }

    .hub-series-grid,
    .hub-recent-grid {
        grid-template-columns: 1fr;
    }

    .hub-series-copy {
        min-height: 0;
    }

    .hub-archive-series {
        padding: 12px;
    }

    .hub-archive-series-head {
        grid-template-columns: 1fr;
    }

    .hub-episode-card {
        grid-template-columns: 96px minmax(0, 1fr);
    }

    .hub-episode-body h4 {
        font-size: 17px;
    }

    .hub-episode-description {
        display: none;
    }

    .hub-gallery-modal {
        padding: 8px;
    }

    .hub-gallery-window {
        max-height: calc(100vh - 16px);
    }

    .hub-gallery-grid {
        gap: 7px;
        padding: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.001ms !important;
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
    }
}
