/* ReelHub — 影视站独立样式 */

:root {
    --hub-bg: #12151c;
    --hub-bg2: #1c212b;
    --hub-bg3: #252b38;
    --hub-text: #eef0f4;
    --hub-muted: #9ca3af;
    --hub-dim: #6b7280;
    --hub-line: rgba(255,255,255,.08);
    --hub-accent: #f59e0b;
    --hub-accent2: #d97706;
    --hub-inner: min(1280px, calc(100% - 32px));
    --hub-r: 10px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { background: var(--hub-bg); overflow-x: clip; }

body.hub {
    min-height: 100vh;
    overflow-x: clip;
    max-width: 100%;
    font-family: "PingFang SC", "Microsoft YaHei", "Segoe UI", sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--hub-text);
    background: var(--hub-bg);
}

body.hub-lock { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; color: inherit; border: none; background: none; }

.hub-inner { width: var(--hub-inner); max-width: 100%; margin: 0 auto; }
.hub-main { flex: 1; padding-bottom: 48px; }

/* 顶栏 */
.hub-head {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(18, 21, 28, .92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--hub-line);
}

.hub-head__row {
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 64px;
}

.hub-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 18px;
    flex-shrink: 0;
}

.hub-logo span {
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hub-nav {
    flex: 1;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    min-width: 0;
}

.hub-nav > a,
.hub-nav__drop > button {
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--hub-muted);
    cursor: pointer;
    transition: .15s;
}

.hub-nav > a:hover,
.hub-nav > a.on,
.hub-nav__drop > button:hover,
.hub-nav__drop > button.on {
    color: var(--hub-text);
    background: var(--hub-bg3);
}

.hub-nav__drop { position: relative; }

.hub-nav__drop:hover,
.hub-nav__drop:focus-within { z-index: 60; }

.hub-nav__drop:hover .hub-nav__pop,
.hub-nav__drop:focus-within .hub-nav__pop { display: block; }

.hub-nav__pop {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    padding-top: 8px;
    z-index: 50;
}

.hub-nav__pop-track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 6px;
    width: max-content;
    max-width: min(92vw, 860px);
    padding: 8px 12px;
    overflow-x: auto;
    scrollbar-width: thin;
    background: var(--hub-bg2);
    border: 1px solid var(--hub-line);
    border-radius: var(--hub-r);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .45);
}

.hub-nav__pop-track::-webkit-scrollbar { height: 4px; }
.hub-nav__pop-track::-webkit-scrollbar-thumb { background: var(--hub-bg3); border-radius: 4px; }

.hub-nav__pop-track a {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    color: var(--hub-muted);
    white-space: nowrap;
    border: 1px solid transparent;
}

.hub-nav__pop-track a:hover {
    background: var(--hub-bg3);
    color: var(--hub-text);
    border-color: var(--hub-line);
}

.hub-search {
    display: flex;
    align-items: center;
    background: var(--hub-bg3);
    border: 1px solid var(--hub-line);
    border-radius: 999px;
    overflow: hidden;
    flex-shrink: 0;
}

.hub-search input {
    width: 160px;
    padding: 10px 14px;
    outline: none;
    background: transparent;
}

.hub-search button {
    padding: 10px 14px;
    color: var(--hub-accent);
    cursor: pointer;
}

.hub-toggle {
    display: none;
    width: 40px;
    height: 40px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 8px;
    background: var(--hub-bg3);
    cursor: pointer;
}

.hub-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--hub-text);
    border-radius: 2px;
}

.hub-drawer {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0,0,0,.55);
    opacity: 0;
    visibility: hidden;
    transition: .2s;
    overflow: hidden;
}

.hub-drawer.open { opacity: 1; visibility: visible; }

.hub-drawer__panel {
    width: min(300px, 86vw);
    height: 100%;
    background: var(--hub-bg2);
    transform: translateX(-102%);
    transition: .25s;
    overflow: auto;
}

.hub-drawer.open .hub-drawer__panel { transform: translateX(0); }

.hub-drawer__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid var(--hub-line);
}

.hub-drawer__top button { font-size: 28px; cursor: pointer; color: var(--hub-muted); }

.hub-drawer nav { padding: 12px; display: grid; gap: 4px; }

.hub-drawer nav a {
    padding: 12px 14px;
    border-radius: 8px;
    color: var(--hub-muted);
}

.hub-drawer nav a:hover { background: var(--hub-bg3); color: var(--hub-text); }

/* 按钮 */
.hub-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 28px;
    border-radius: 999px;
    background: var(--hub-accent);
    color: #12151c;
    font-weight: 700;
    font-size: 15px;
    transition: .15s;
}

.hub-btn:hover { background: #fbbf24; transform: translateY(-1px); }

.hub-btn--line {
    background: transparent;
    color: var(--hub-text);
    border: 1px solid var(--hub-line);
}

.hub-btn--line:hover { border-color: var(--hub-accent); color: var(--hub-accent); background: transparent; transform: none; }

/* 首页横幅 */
.hub-banner {
    position: relative;
    min-height: clamp(360px, 52vh, 520px);
    overflow: hidden;
    margin-bottom: 8px;
}

.hub-banner__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .5s ease;
}

.hub-banner__slide.on { opacity: 1; pointer-events: auto; }

.hub-banner__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hub-banner__mask {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(18,21,28,.95) 0%, rgba(18,21,28,.55) 50%, rgba(18,21,28,.2) 100%),
        linear-gradient(180deg, transparent 50%, rgba(18,21,28,.9) 100%);
}

.hub-banner__body {
    position: relative;
    z-index: 2;
    padding: clamp(48px, 8vw, 88px) 0 64px;
    max-width: 560px;
}

.hub-banner__tag {
    display: inline-block;
    padding: 4px 12px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: rgba(245,158,11,.15);
    color: var(--hub-accent);
    font-size: 13px;
    font-weight: 600;
}

.hub-banner__body h1 {
    font-size: clamp(28px, 4.5vw, 44px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 14px;
}

.hub-banner__desc {
    color: var(--hub-muted);
    margin-bottom: 16px;
    font-size: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hub-banner__meta {
    display: flex;
    gap: 12px;
    margin-bottom: 22px;
    font-size: 14px;
    color: var(--hub-dim);
}

.hub-banner__dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.hub-banner__dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.3);
    cursor: pointer;
    padding: 0;
}

.hub-banner__dots button.on { background: var(--hub-accent); width: 24px; border-radius: 4px; }

/* 分类条 */
.hub-cats {
    padding: 16px 0;
    border-bottom: 1px solid var(--hub-line);
    margin-bottom: 28px;
    overflow: hidden;
}

.hub-cats__track {
    display: flex;
    gap: 10px;
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.hub-cats__track::-webkit-scrollbar { display: none; }

.hub-cats__track a {
    flex-shrink: 0;
    padding: 8px 18px;
    border-radius: 999px;
    background: var(--hub-bg2);
    border: 1px solid var(--hub-line);
    font-size: 14px;
    color: var(--hub-muted);
    white-space: nowrap;
}

.hub-cats__track a:hover { border-color: var(--hub-accent); color: var(--hub-accent); }

/* 区块 */
.hub-sec { margin-bottom: 36px; }

.hub-sec__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.hub-sec__top h2 { font-size: 22px; font-weight: 800; }

.hub-sec__top a { font-size: 14px; color: var(--hub-accent); font-weight: 600; }

/* 卡片网格 */
.hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 18px 14px;
}

.hub-card__link { display: block; }

.hub-card__link:hover h3 { color: var(--hub-accent); }

.hub-card__pic {
    position: relative;
    aspect-ratio: 2/3;
    border-radius: var(--hub-r);
    overflow: hidden;
    background: var(--hub-bg2);
    margin-bottom: 10px;
}

.hub-card__pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.hub-card__link:hover .hub-card__pic img { transform: scale(1.05); }

.hub-card__play {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(0,0,0,.35);
    opacity: 0;
    transition: .2s;
}

.hub-card__play::after {
    content: "";
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--hub-accent);
    clip-path: polygon(38% 28%, 38% 72%, 72% 50%);
}

.hub-card__link:hover .hub-card__play { opacity: 1; }

.hub-card__pic i {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 3px 8px;
    border-radius: 6px;
    background: rgba(0,0,0,.7);
    font-style: normal;
    font-size: 11px;
}

.hub-card h3 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 4px;
    transition: color .15s;
}

.hub-card p {
    font-size: 12px;
    color: var(--hub-dim);
    display: flex;
    gap: 8px;
}

/* 空状态 */
.hub-empty {
    padding: 64px 0;
    text-align: center;
    color: var(--hub-muted);
}

.hub-empty h1 { font-size: 28px; color: var(--hub-text); margin-bottom: 10px; }

.hub-empty__cats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.hub-empty__cats a {
    padding: 10px 20px;
    border-radius: 999px;
    background: var(--hub-bg2);
    border: 1px solid var(--hub-line);
}

/* 列表页 */
.hub-pagehead { padding: 32px 0 24px; }

.hub-crumb {
    font-size: 13px;
    color: var(--hub-dim);
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hub-crumb a:hover { color: var(--hub-accent); }

.hub-pagehead h1 { font-size: clamp(24px, 3vw, 32px); font-weight: 800; }

.hub-pagehead p { margin-top: 8px; color: var(--hub-muted); font-size: 14px; }

.hub-pagehead__extra a { color: var(--hub-accent); font-weight: 600; }

.hub-filter {
    margin-bottom: 28px;
    padding: 18px;
    background: var(--hub-bg2);
    border: 1px solid var(--hub-line);
    border-radius: var(--hub-r);
}

.hub-filter strong { display: block; margin-bottom: 12px; font-size: 16px; }

.hub-filter small { display: block; margin-bottom: 12px; color: var(--hub-dim); font-size: 13px; }

.hub-filter__row {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 12px;
    padding: 10px 0;
    border-top: 1px solid var(--hub-line);
}

.hub-filter__row > span { font-size: 13px; color: var(--hub-dim); padding-top: 6px; }

.hub-filter__row > div { display: flex; flex-wrap: wrap; gap: 8px; }

.hub-filter__row a {
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 13px;
    background: var(--hub-bg3);
    color: var(--hub-muted);
}

.hub-filter__row a.on,
.hub-filter__row a:hover { background: var(--hub-accent); color: #12151c; }

.hub-filter__back { margin-top: 12px; font-size: 14px; }
.hub-filter__back a { color: var(--hub-accent); }

.hub-pager {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 36px 0;
}

.hub-pager a {
    min-width: 40px;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border-radius: 8px;
    background: var(--hub-bg2);
    border: 1px solid var(--hub-line);
    font-size: 14px;
    color: var(--hub-muted);
}

.hub-pager a.on,
.hub-pager a:hover { background: var(--hub-accent); color: #12151c; border-color: transparent; }

/* 详情 */
.hub-detail {
    position: relative;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--hub-line);
}

.hub-detail__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    filter: blur(40px) brightness(.35);
    transform: scale(1.1);
}

.hub-detail__box {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 32px;
    padding-top: 36px;
    align-items: start;
}

.hub-detail__poster {
    margin: 0;
    border-radius: var(--hub-r);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,.5);
}

.hub-detail__poster img { width: 100%; aspect-ratio: 2/3; object-fit: cover; }

.hub-detail__info h1 {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 14px;
}

.hub-detail__tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.hub-detail__tags li {
    padding: 5px 12px;
    border-radius: 999px;
    background: var(--hub-bg3);
    font-size: 13px;
    color: var(--hub-muted);
}

.hub-detail__desc { color: var(--hub-muted); margin-bottom: 20px; max-width: 600px; }

.hub-detail__acts { display: flex; flex-wrap: wrap; gap: 12px; }

.hub-eps { margin-bottom: 32px; }

.hub-eps__src + .hub-eps__src { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--hub-line); }

.hub-eps__src h3 { font-size: 13px; color: var(--hub-dim); margin-bottom: 10px; }

.hub-eps__list { display: flex; flex-wrap: wrap; gap: 8px; }

.hub-eps__list a {
    min-width: 72px;
    padding: 8px 14px;
    text-align: center;
    border-radius: 8px;
    background: var(--hub-bg2);
    border: 1px solid var(--hub-line);
    font-size: 13px;
    color: var(--hub-muted);
}

.hub-eps__list a.on,
.hub-eps__list a:hover { background: var(--hub-accent); color: #12151c; border-color: transparent; }

.hub-sort {
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--hub-bg3);
    font-size: 13px;
    color: var(--hub-muted);
    cursor: pointer;
}

.hub-sort:hover { color: var(--hub-text); }

.hub-about {
    margin-bottom: 36px;
    padding: 24px;
    background: var(--hub-bg2);
    border-radius: var(--hub-r);
    border: 1px solid var(--hub-line);
}

.hub-about h2 { font-size: 20px; font-weight: 800; margin-bottom: 16px; }

.hub-about__body { color: var(--hub-muted); line-height: 1.85; }

.hub-about__title {
    margin-top: 22px;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 700;
    color: var(--hub-text);
    line-height: 1.5;
}

.hub-about__body .hub-about__title:first-child { margin-top: 0; }

.hub-about__text {
    margin-bottom: 6px;
    font-size: 15px;
    color: var(--hub-muted);
    line-height: 1.9;
}

/* 播放页 */
.hub-watch { padding-bottom: 48px; }

.hub-watch__head { padding: 20px 0 12px; }

.hub-watch__head h1 {
    font-size: clamp(20px, 2.8vw, 28px);
    font-weight: 800;
    margin-top: 8px;
    line-height: 1.25;
}

.hub-watch__screen {
    background: #000;
    padding: 0 16px 16px;
}

.hub-watch__toolbar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 12px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid var(--hub-line);
}

.hub-watch__ep-btn {
    display: grid;
    gap: 2px;
    padding: 10px 14px;
    border-radius: var(--hub-r);
    background: var(--hub-bg2);
    border: 1px solid var(--hub-line);
    font-size: 13px;
    transition: .15s;
}

.hub-watch__ep-btn--next { text-align: right; justify-self: end; }

.hub-watch__ep-btn small { color: var(--hub-dim); font-size: 11px; }

.hub-watch__ep-btn strong {
    font-size: 14px;
    color: var(--hub-text);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hub-watch__ep-btn:not(.is-muted):hover {
    border-color: var(--hub-accent);
    background: var(--hub-bg3);
}

.hub-watch__ep-btn:not(.is-muted):hover strong { color: var(--hub-accent); }

.hub-watch__ep-btn.is-muted { opacity: .45; }

.hub-watch__toolbar-mid { display: flex; justify-content: center; }

.hub-watch__info {
    padding: 16px 0 24px;
    border-bottom: 1px solid var(--hub-line);
}

.hub-watch__tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.hub-watch__tags li {
    padding: 5px 12px;
    border-radius: 999px;
    background: var(--hub-bg2);
    border: 1px solid var(--hub-line);
    font-size: 13px;
    color: var(--hub-muted);
}

.hub-watch__brief {
    color: var(--hub-muted);
    font-size: 14px;
    line-height: 1.75;
    max-width: 900px;
}

.hub-watch__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 28px;
    align-items: start;
    padding-top: 24px;
}

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

.hub-eps--play { margin-bottom: 28px; }

.hub-watch__block {
    margin-bottom: 32px;
    padding-top: 8px;
    border-top: 1px solid var(--hub-line);
}

.hub-watch__block .hub-sec__top { margin-bottom: 16px; }

.hub-grid--play {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
}

.hub-watch__side {
    position: sticky;
    top: 80px;
    background: var(--hub-bg2);
    border: 1px solid var(--hub-line);
    border-radius: var(--hub-r);
    padding: 16px;
}

.hub-watch__side h2 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--hub-line);
}

.hub-watch__side-list {
    list-style: none;
    display: grid;
    gap: 12px;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    scrollbar-width: thin;
}

.hub-watch__side-list a {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 10px;
    align-items: center;
}

.hub-watch__side-list a:hover strong { color: var(--hub-accent); }

.hub-watch__side-list img {
    width: 64px;
    height: 86px;
    object-fit: cover;
    border-radius: 8px;
    background: var(--hub-bg3);
}

.hub-watch__side-list strong {
    display: block;
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 4px;
    transition: color .15s;
}

.hub-watch__side-list em {
    font-style: normal;
    font-size: 11px;
    color: var(--hub-dim);
    line-height: 1.35;
}

/* 页脚 */
.hub-foot {
    margin-top: auto;
    border-top: 1px solid var(--hub-line);
    padding-top: 28px;
    background: var(--hub-bg2);
}

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

.hub-foot__name { font-size: 18px; font-weight: 800; margin-bottom: 6px; }

.hub-foot__links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    justify-content: flex-end;
}

.hub-foot__links a { font-size: 14px; color: var(--hub-muted); }
.hub-foot__links a:hover { color: var(--hub-accent); }

.hub-foot__copy {
    padding: 14px 0 24px;
    border-top: 1px solid var(--hub-line);
    font-size: 13px;
    color: var(--hub-dim);
}

.hub-foot__stats {
    max-width: 100%;
    overflow: hidden;
    padding-bottom: 24px;
    font-size: 13px;
    color: var(--hub-dim);
    word-break: break-word;
}

.hub-foot__stats img,
.hub-foot__stats iframe {
    max-width: 100%;
}

.hub-foot-search {
    border-top: 1px solid var(--hub-line);
    padding: 28px 0 8px;
    background: var(--hub-bg2);
    overflow: hidden;
}

.hub-foot-search h2 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 14px;
}

.hub-foot-search__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
}

.hub-foot-search__list a {
    font-size: 13px;
    color: var(--hub-muted);
    padding: 4px 10px;
    border: 1px solid var(--hub-line);
    border-radius: 999px;
    transition: color .15s, border-color .15s;
}

.hub-foot-search__list a:hover {
    color: var(--hub-accent);
    border-color: var(--hub-accent);
}

/* 响应式 */
@media (max-width: 900px) {
    .hub-nav, .hub-search { display: none; }
    .hub-toggle { display: flex; }
    .hub-detail__box { grid-template-columns: 160px 1fr; gap: 20px; }
    .hub-watch__layout { grid-template-columns: 1fr; }
    .hub-watch__side { position: static; }
    .hub-watch__side-list { max-height: none; }
    .hub-watch__toolbar { grid-template-columns: 1fr; }
    .hub-watch__ep-btn--next { text-align: left; justify-self: stretch; }
}

@media (max-width: 600px) {
    :root { --hub-inner: calc(100% - 24px); }
    .hub-detail__box { grid-template-columns: 1fr; }
    .hub-detail__poster { max-width: 200px; }
    .hub-filter__row { grid-template-columns: 1fr; }
    .hub-foot__row { flex-direction: column; }
    .hub-foot__links { justify-content: flex-start; }
}
