:root {
    --bg: #07070b;
    --panel: #171721;
    --panel-soft: #1f1f2b;
    --line: #2d2d3a;
    --muted: #9a9aa8;
    --text: #f5f6fb;
    --primary: #ff4b4b;
    --primary-2: #ff8a18;
    --green: #20d7a0;
    --shadow: 0 20px 60px rgba(0, 0, 0, .35);
}

* { box-sizing: border-box; }
html { background: var(--bg); }
body {
    margin: 0;
    min-width: 320px;
    color: var(--text);
    background: radial-gradient(circle at 70% -10%, rgba(255, 125, 40, .12), transparent 34%), var(--bg);
    font-family: "Microsoft YaHei", Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.hidden { display: none !important; }

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    height: 72px;
    padding: 0 28px;
    display: flex;
    align-items: center;
    gap: 24px;
    background: rgba(11, 11, 17, .92);
    border-bottom: 1px solid #20202a;
    backdrop-filter: blur(16px);
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 160px;
    font-weight: 800;
    font-size: 19px;
}
.brand-mark {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    box-shadow: 0 12px 28px rgba(255, 102, 35, .35);
}
.brand-mark .brand-logo {
    width: 28px;
    height: 28px;
    max-width: 28px;
    max-height: 28px;
    object-fit: contain;
    display: block;
}
.nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    overflow-x: auto;
}
.nav a {
    min-width: max-content;
    padding: 13px 20px;
    color: var(--muted);
    border-radius: 12px;
    font-weight: 700;
}
.nav a.active, .nav a:hover {
    color: var(--text);
    background: var(--panel-soft);
}
.top-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.avatar-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 12px 7px 7px;
    color: var(--text);
    background: var(--panel-soft);
    border: 1px solid var(--line);
    border-radius: 999px;
}
.avatar, .avatar-fallback {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    display: grid;
    place-items: center;
    background: #13b98f;
    color: #fff;
    font-weight: 900;
}
.user-menu {
    position: absolute;
    right: 24px;
    top: 74px;
    width: 280px;
    padding: 16px;
    background: #1b1b27;
    border: 1px solid #323241;
    border-radius: 18px;
    box-shadow: var(--shadow);
}
.user-menu .menu-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}
.menu-list { display: grid; gap: 6px; padding-top: 10px; }
.menu-list a, .menu-list button {
    width: 100%;
    text-align: left;
    padding: 12px;
    color: #d6d6df;
    background: transparent;
    border: 0;
    border-radius: 10px;
}
.menu-list a:hover, .menu-list button:hover { background: #252536; color: #fff; }

.page {
    width: min(1440px, calc(100% - 48px));
    margin: 0 auto;
    padding: 34px 0 56px;
}
.hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: stretch;
    margin-bottom: 26px;
}
.hero-main {
    min-height: 280px;
    padding: 46px;
    border: 1px solid #252532;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 72, 72, .18), rgba(255, 138, 24, .10)), #111119;
    overflow: hidden;
}
.hero-main h1 {
    margin: 0 0 16px;
    max-width: 1180px;
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.05;
    letter-spacing: 0;
}
.hero-main p {
    max-width: 980px;
    margin: 0 0 28px;
    color: #c6c6d0;
    font-size: 17px;
    line-height: 1.8;
}
.hero-side {
    display: none;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--panel);
}
.metric-grid { display: grid; gap: 12px; }
.metric {
    padding: 16px;
    border-radius: 14px;
    background: #12121a;
    border: 1px solid #292938;
}
.metric strong { display: block; font-size: 28px; margin-bottom: 4px; }
.metric span { color: var(--muted); }

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin: 32px 0 16px;
}
.section-head h2 { margin: 0; font-size: 26px; }
.section-head p { margin: 5px 0 0; color: var(--muted); }
.category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 20px;
    margin: 18px 0 30px;
}
.tab-btn {
    border: 0;
    color: var(--muted);
    background: transparent;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 800;
}
.tab-btn.active {
    color: #fff;
    background: var(--primary);
}
.toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    padding: 16px;
    margin-bottom: 26px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--panel);
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 18px;
}
.work-card {
    overflow: hidden;
    border: 1px solid #282837;
    border-radius: 18px;
    background: var(--panel);
    box-shadow: 0 12px 30px rgba(0,0,0,.18);
}
.thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, #383142, #12121a);
}
.thumb.tall { aspect-ratio: 4 / 5; }
.thumb img, .thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.thumb-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: #d7d7df;
    font-weight: 900;
    background:
        linear-gradient(135deg, rgba(255,75,75,.22), rgba(255,138,24,.08)),
        repeating-linear-gradient(135deg, #242431 0 18px, #1b1b25 18px 36px);
}
.badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 7px 12px;
    border-radius: 999px;
    color: #fff;
    background: rgba(0,0,0,.48);
    font-size: 13px;
    font-weight: 800;
}
.status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(32, 215, 160, .16);
    color: var(--green);
    font-size: 13px;
    font-weight: 800;
}
.status:before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
}
.status.status-draft {
    color: #ff9d2e;
    background: rgba(255, 157, 46, .16);
}
.status.status-running {
    color: #63b3ff;
    background: rgba(99, 179, 255, .16);
}
.status.status-success {
    color: var(--green);
    background: rgba(32, 215, 160, .16);
}
.status.status-failed {
    color: #ff5b66;
    background: rgba(255, 91, 102, .16);
}
.card-body { padding: 16px; }
.card-body h3 { margin: 0 0 9px; font-size: 17px; }
.muted { color: var(--muted); }
.mini-flow {
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 10px 10px 8px;
    margin-top: 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #20202b;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #555568 rgba(12, 12, 18, .42);
}
.mini-flow::-webkit-scrollbar {
    height: 7px;
}
.mini-flow::-webkit-scrollbar-track {
    margin: 0 8px;
    background: rgba(12, 12, 18, .42);
    border-radius: 999px;
}
.mini-flow::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #56566a, #747489);
    border: 1px solid rgba(32, 32, 43, .92);
    border-radius: 999px;
}
.mini-flow::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #66667a, #8a8a9f);
}
.mini-flow .mini-media-btn {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 8px;
    background: #303040;
}
.mini-flow .mini-media, .mini-flow .mini-empty {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    border-radius: 8px;
    object-fit: cover;
    background: #303040;
}
.mini-flow .mini-media-btn .mini-media {
    width: 100%;
    height: 100%;
    display: block;
}
.card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}
.btn {
    border: 0;
    border-radius: 13px;
    padding: 12px 18px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    font-weight: 900;
}
.btn.secondary {
    color: #d9d9e5;
    background: #242433;
    border: 1px solid #363649;
}
.btn.ghost {
    color: #cfd0dc;
    background: transparent;
    border: 1px solid #363649;
}
.btn:disabled {
    opacity: .52;
    cursor: not-allowed;
    filter: grayscale(.35);
}
.btn.small { padding: 8px 12px; border-radius: 10px; font-size: 13px; }

.panel {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--panel);
}
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { color: #cdced8; font-weight: 800; }
.field-label-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
}
.field-label-row label {
    white-space: nowrap;
}
.help-icon-btn {
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    padding: 0;
    color: #ffd6c4;
    background: rgba(255, 105, 54, .16);
    border: 1px solid rgba(255, 105, 54, .42);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 900;
}
.help-icon-btn:hover {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
}
.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}
.form-actions .btn {
    min-width: 120px;
}
.input, .textarea, .select {
    width: 100%;
    min-height: 46px;
    padding: 12px 14px;
    color: #fff;
    background: #13131c;
    border: 1px solid #343445;
    border-radius: 12px;
    outline: none;
}
.textarea { min-height: 120px; resize: vertical; }
.input:focus, .textarea:focus, .select:focus { border-color: #ff6b38; }
.switch-row {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d8d8e2;
}
.publish-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 20px;
    align-items: start;
}
.asset-panel {
    position: sticky;
    top: 92px;
    max-height: calc(100vh - 110px);
    overflow: auto;
}
.asset-section { margin-bottom: 20px; }
.asset-section h3 { margin: 0 0 12px; }
.asset-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}
.asset-card {
    position: relative;
    overflow: hidden;
    min-height: 96px;
    border: 1px solid #303040;
    border-radius: 12px;
    background: #111119;
}
.asset-card img {
    width: 100%;
    height: 96px;
    object-fit: cover;
    display: block;
}
.asset-card span {
    position: absolute;
    inset: auto 0 0;
    padding: 8px;
    text-align: center;
    color: #fff;
    background: rgba(0, 0, 0, .55);
    font-size: 12px;
    font-weight: 800;
}
.asset-card.active { border-color: #ff6936; box-shadow: inset 0 0 0 1px #ff6936; }
.upload-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 140px;
    gap: 10px;
}
.file-picker {
    min-height: 120px;
    display: grid;
    place-items: center;
    gap: 8px;
    padding: 16px;
    color: #d7d7df;
    text-align: center;
    border: 1px dashed #424257;
    border-radius: 14px;
    background: #13131c;
    cursor: pointer;
    transition: border-color .18s ease, background .18s ease, color .18s ease;
}
.file-picker:hover {
    color: #fff;
    border-color: #ff6b38;
    background: #181820;
}
.file-picker-text {
    font-weight: 900;
}
.file-picker-name {
    max-width: 100%;
    color: var(--muted);
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.material-preview {
    min-height: 150px;
    display: grid;
    gap: 10px;
    place-items: center;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #13131c;
    color: var(--muted);
}
.material-preview.empty {
    border-style: dashed;
    background: #14141d;
}
.material-preview img,
.material-preview video {
    width: 100%;
    max-height: 220px;
    object-fit: contain;
    display: block;
    border-radius: 10px;
    background: #0d0d14;
}
.material-preview audio {
    width: 100%;
}
.preview-name {
    max-width: 100%;
    color: #d7d7df;
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.publish-form {
    display: grid;
    gap: 24px;
}
.form-section {
    display: grid;
    gap: 14px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}
.form-section h3 {
    margin: 0;
    font-size: 18px;
}
.form-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.selection-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}
.selection-card {
    min-height: 168px;
    display: grid;
    grid-template-rows: auto auto minmax(72px, 1fr);
    gap: 8px;
    align-items: start;
    padding: 16px;
    color: var(--text);
    text-align: left;
    background: #111119;
    border: 1px solid #303040;
    border-radius: 14px;
    overflow: hidden;
}
.selection-card:hover,
.selection-card.active {
    border-color: #ff6936;
    box-shadow: inset 0 0 0 1px rgba(255, 105, 54, .55);
}
.selection-label {
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
}
.selection-card strong {
    min-height: 22px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.selection-preview {
    min-height: 72px;
    display: grid;
    place-items: center;
    padding: 10px;
    color: var(--muted);
    border-radius: 10px;
    background: #1c1c28;
    overflow: hidden;
}
.selection-thumb {
    width: 100%;
    height: 82px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}
.selection-thumb-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
}
.selection-thumb-grid .selection-thumb {
    height: 38px;
}
.material-toolbar {
    align-items: stretch;
}
.category-tabs.compact {
    margin: 0;
    gap: 8px;
}
.category-tabs.compact .tab-btn {
    padding: 10px 14px;
}
.form-tabs {
    margin: 0;
}
.sms-code-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 122px;
    gap: 10px;
    align-items: stretch;
}
.sms-code-row .input {
    min-width: 0;
}
.sms-code-row .btn {
    width: 100%;
    min-height: 46px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 13px;
    white-space: nowrap;
}
.toolbar-spacer {
    flex: 1;
}
.search-input {
    max-width: 260px;
}
.material-list {
    display: grid;
    gap: 14px;
}
.material-item {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 16px;
    align-items: stretch;
    padding: 14px;
    border: 1px solid #282837;
    border-radius: 16px;
    background: var(--panel);
}
.material-media {
    position: relative;
    width: 100%;
    min-height: 128px;
    display: grid;
    place-items: center;
    padding: 0;
    overflow: hidden;
    color: var(--text);
    background: #111119;
    border: 1px solid #303040;
    border-radius: 12px;
}
button.material-media {
    text-align: inherit;
}
.material-media img,
.material-media video {
    width: 100%;
    height: 100%;
    min-height: 128px;
    object-fit: cover;
    display: block;
}
.material-media audio {
    width: calc(100% - 18px);
}
.audio-media {
    padding: 14px;
}
.video-media:hover {
    border-color: #ff6936;
}
.play-badge {
    position: absolute;
    left: 10px;
    bottom: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    color: #fff;
    background: rgba(0, 0, 0, .62);
    font-size: 12px;
    font-weight: 900;
}
.material-info {
    min-width: 0;
    display: grid;
    gap: 10px;
    align-content: center;
}
.material-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}
.material-title-row h3 {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.picker-modal {
    width: min(980px, 100%);
}
.modal,
.picker-modal,
.picker-list,
.edit-project-modal {
    scrollbar-width: thin;
    scrollbar-color: #4a4a5f #181820;
}
.modal::-webkit-scrollbar,
.picker-modal::-webkit-scrollbar,
.picker-list::-webkit-scrollbar,
.edit-project-modal::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
.modal::-webkit-scrollbar-track,
.picker-modal::-webkit-scrollbar-track,
.picker-list::-webkit-scrollbar-track,
.edit-project-modal::-webkit-scrollbar-track {
    background: #181820;
    border-radius: 999px;
}
.modal::-webkit-scrollbar-thumb,
.picker-modal::-webkit-scrollbar-thumb,
.picker-list::-webkit-scrollbar-thumb,
.edit-project-modal::-webkit-scrollbar-thumb {
    background: #4a4a5f;
    border: 2px solid #181820;
    border-radius: 999px;
}
.modal::-webkit-scrollbar-thumb:hover,
.picker-modal::-webkit-scrollbar-thumb:hover,
.picker-list::-webkit-scrollbar-thumb:hover,
.edit-project-modal::-webkit-scrollbar-thumb:hover {
    background: #66667d;
}
.picker-toolbar {
    margin-bottom: 16px;
}
.picker-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.picker-card {
    display: grid;
    gap: 12px;
    padding: 12px;
    border: 1px solid #282837;
    border-radius: 14px;
    background: #14141d;
}
.picker-card.active {
    border-color: #ff6936;
}
.picker-card .material-media {
    min-height: 150px;
}
.picker-card .material-media img,
.picker-card .material-media video {
    min-height: 150px;
}
.picker-info {
    display: grid;
    gap: 8px;
}
.picker-info h3 {
    margin: 0;
    font-size: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.pager {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    color: var(--muted);
}
.pager button:disabled {
    opacity: .45;
    cursor: not-allowed;
}
.media-modal {
    width: min(860px, 100%);
}
.media-modal video {
    width: 100%;
    max-height: 72vh;
    display: block;
    border-radius: 12px;
    background: #09090d;
}
.media-modal img {
    width: 100%;
    max-height: 72vh;
    object-fit: contain;
    display: block;
    border-radius: 12px;
    background: #09090d;
}
.prompt-help-modal {
    width: min(780px, 100%);
}
.prompt-help-content {
    display: grid;
    gap: 14px;
    color: #d8d8e2;
    line-height: 1.75;
}
.prompt-help-content p {
    margin: 0;
}
.prompt-help-content strong {
    color: #fff;
}
.avatar-edit {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #13131c;
}
.avatar-preview {
    flex: 0 0 auto;
    width: 88px;
    height: 88px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 50%;
    background: #242433;
    border: 1px solid #363649;
}
.avatar-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.avatar-preview-fallback {
    color: #fff;
    font-size: 34px;
    font-weight: 900;
}
.avatar-tools {
    display: grid;
    gap: 8px;
    justify-items: start;
}
.empty {
    padding: 36px;
    text-align: center;
    color: var(--muted);
    border: 1px dashed #3a3a4d;
    border-radius: 16px;
    background: #14141d;
}
.toast {
    position: fixed;
    left: 50%;
    bottom: 30px;
    z-index: 80;
    transform: translateX(-50%);
    padding: 12px 18px;
    border-radius: 999px;
    background: #262637;
    color: #fff;
    box-shadow: var(--shadow);
}
.modal-mask {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(0, 0, 0, .72);
}
.modal {
    width: min(760px, 100%);
    max-height: 88vh;
    overflow: auto;
    padding: 22px;
    border: 1px solid #343445;
    border-radius: 18px;
    background: var(--panel);
    box-shadow: var(--shadow);
}
.edit-project-modal {
    width: min(920px, 100%);
    padding-right: 16px;
}
.modal-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}
.modal-head h2 { margin: 0; }

@media (max-width: 980px) {
    .topbar { height: auto; padding: 14px 16px; flex-wrap: wrap; }
    .brand { min-width: 0; }
    .nav { order: 3; width: 100%; }
    .page { width: min(100% - 28px, 760px); padding-top: 22px; }
    .hero, .publish-layout { grid-template-columns: 1fr; }
    .hero-main { padding: 28px; }
    .asset-panel { position: static; max-height: none; }
    .selection-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .picker-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .material-toolbar { align-items: center; }
    .toolbar-spacer { display: none; }
    .search-input { max-width: none; flex: 1 1 220px; }
}
@media (max-width: 640px) {
    .form-grid { grid-template-columns: 1fr; }
    .form-actions {
        flex-direction: column-reverse;
    }
    .form-actions .btn {
        width: 100%;
    }
    .grid { grid-template-columns: 1fr; }
    .asset-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .top-actions .btn.secondary { display: none; }
    .section-head { align-items: flex-start; flex-direction: column; }
    .upload-row { grid-template-columns: 1fr; }
    .avatar-edit { align-items: flex-start; flex-direction: column; }
    .selection-grid,
    .picker-list { grid-template-columns: 1fr; }
    .selection-card { min-height: 144px; }
    .material-item { grid-template-columns: 1fr; }
    .material-toolbar,
    .picker-toolbar { flex-direction: column; align-items: stretch; }
    .sms-code-row {
        grid-template-columns: minmax(0, 1fr) 112px;
        gap: 8px;
    }
    .sms-code-row .btn {
        padding-left: 8px;
        padding-right: 8px;
    }
    .material-title-row { align-items: flex-start; flex-direction: column; }
    .pager { flex-wrap: wrap; }
}
