/* game_tgn_0044 — ATLAS DESK
   Dark Index left rail + paper right column
   BLACKLIST: Departure Board topbar · g43 arcade · g42 store · g39 film · g36 lime · g35 white-blue */

:root {
  --g44-desk: #f4efe6;
  --g44-panel: #fffdf8;
  --g44-ink: #1c1917;
  --g44-muted: #57534e;
  --g44-rail: #1a2332;
  --g44-rail-ink: #e7e5e4;
  --g44-teal: #0f766e;
  --g44-signal: #c2410c;
  --g44-line: rgba(28, 25, 23, 0.12);
  --g44-rail-w: 240px;
  --g44-content-max: none;
  --g44-content-pad-x: 20px;
  --g44-mob-h: 54px;
  --g44-top-h: 56px;
  --g44-font: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --g44-star-full: #b45309;
  --g44-star-empty: #a8a29e;
  --bg-main: var(--g44-desk);
  --text-main: var(--g44-ink);
  --text-muted: var(--g44-muted);
  --accent: var(--g44-teal);
  --ink-muted: var(--g44-muted);
  --ink-on-light: #44403c;
  --g44-radius: 4px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body.g44-body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--g44-font);
  font-size: 15px;
  line-height: 1.5;
  color: var(--g44-ink);
  background: var(--g44-desk);
  -webkit-font-smoothing: antialiased;
  padding-top: calc(var(--g44-top-h) + env(safe-area-inset-top, 0px));
  padding-bottom: calc(var(--g44-mob-h) + 12px);
}
@media (min-width: 900px) {
  body.g44-body {
    padding-top: 0;
    padding-bottom: 0;
  }
}

a { color: var(--g44-ink); text-decoration: none; }
a:hover { color: var(--g44-teal); }
img { max-width: 100%; height: auto; display: block; }
.g44-sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.g44-page-pad {
  width: 100%;
  max-width: var(--g44-content-max);
  margin: 0;
  padding-inline: var(--g44-content-pad-x);
}
@media (min-width: 900px) {
  .g44-page-pad { padding-inline: 28px; }
}
.g44-ad-slot,
.g44-ad-top { margin: 8px 0; }
.g44-pick-section { background: transparent; }

/* ========== Shell: left rail + right column ========== */
.g44-shell {
  min-height: 100vh;
}
@media (min-width: 900px) {
  .g44-shell {
    margin-left: var(--g44-rail-w);
    min-height: 100vh;
    background:
      linear-gradient(180deg, rgba(255, 253, 248, 0.55), transparent 180px),
      var(--g44-desk);
  }
}

/* Buttons */
.g44-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  font: inherit;
  font-weight: 700;
  border: 1px solid transparent;
  border-radius: var(--g44-radius);
  cursor: pointer;
  color: var(--g44-ink);
  background: transparent;
  transition: transform 0.15s ease, filter 0.15s ease;
}
.g44-btn-primary {
  background: var(--g44-teal);
  color: #fff;
}
.g44-btn-primary:hover { filter: brightness(1.08); color: #fff; transform: translateY(-1px); }
.g44-btn-outline {
  border-color: var(--g44-line);
  background: var(--g44-panel);
  color: var(--g44-ink);
}
.g44-btn-outline:hover { border-color: var(--g44-teal); color: var(--g44-teal); }
.g44-btn-play { min-width: 140px; }

/* ========== Menu rail ========== */
.g44-rail-open {
  flex-shrink: 0;
  padding: 7px 11px;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background: var(--g44-rail);
  border: 0;
  border-radius: var(--g44-radius);
  cursor: pointer;
  line-height: 1;
}
.g44-rail-open:hover { filter: brightness(1.08); }
@media (min-width: 900px) {
  .g44-rail-open { display: none; }
}
body.g44-rail-is-open .g44-auth-host {
  visibility: hidden;
  pointer-events: none;
}
@media (min-width: 900px) {
  body.g44-rail-is-open .g44-auth-host {
    visibility: visible;
    pointer-events: auto;
  }
}

.g44-rail-backdrop {
  position: fixed;
  inset: 0;
  z-index: 140;
  border: 0;
  background: rgba(0, 0, 0, 0.5);
}
@media (min-width: 900px) {
  .g44-rail-backdrop { display: none !important; }
}

.g44-rail {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 150;
  width: min(280px, 88vw);
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 18px 16px 24px;
  background: var(--g44-rail);
  color: var(--g44-rail-ink);
  border-right: 1px solid rgba(231, 229, 228, 0.12);
  overflow-y: auto;
  overscroll-behavior: contain;
  transform: translateX(-105%);
  transition: transform 0.2s ease;
  box-sizing: border-box;
}
body.g44-rail-is-open .g44-rail { transform: translateX(0); }
@media (min-width: 900px) {
  .g44-rail {
    transform: none;
    width: var(--g44-rail-w);
    padding: 16px 14px 20px;
    gap: 14px;
  }
  .g44-rail-close { display: none; }
}

.g44-rail-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(231, 229, 228, 0.12);
}
.g44-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex: 1;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.2;
}
.g44-brand:hover { color: #fff; }
.g44-brand img {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  flex-shrink: 0;
  object-fit: cover;
}
.g44-brand-text {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.g44-rail-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border: 1px solid rgba(231, 229, 228, 0.18);
  border-radius: var(--g44-radius);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.g44-rail-close:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(231, 229, 228, 0.3);
}

.g44-rail-search {
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(231, 229, 228, 0.18);
  border-radius: var(--g44-radius);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.28);
}
.g44-rail-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 10px 12px;
  font: inherit;
  font-size: 13px;
  outline: none;
}
.g44-rail-search input::placeholder {
  color: rgba(231, 229, 228, 0.45);
}
.g44-rail-search button {
  border: 0;
  background: var(--g44-teal);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0 14px;
  cursor: pointer;
}
.g44-rail-search button:hover { filter: brightness(1.08); }

.g44-rail-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-height: 0;
}
.g44-rail-link {
  display: block;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(231, 229, 228, 0.78);
  border-radius: var(--g44-radius);
  border-left: 2px solid transparent;
}
.g44-rail-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.g44-rail-link.is-active,
.g44-rail-link.active {
  color: #fff;
  background: rgba(15, 118, 110, 0.35);
  border-left-color: #5eead4;
}

.g44-rail-foot {
  margin-top: auto;
  min-height: 0;
  flex-shrink: 0;
}
@media (min-width: 900px) {
  .g44-rail-foot { min-height: 72px; }
}

/* Auth host: mobile top bar; desktop overlays rail foot (z > rail) */
.g44-auth-host {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 160;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  height: calc(var(--g44-top-h) + env(safe-area-inset-top, 0px));
  padding: env(safe-area-inset-top, 0px) 10px 0;
  background: rgba(255, 253, 248, 0.96);
  border-bottom: 1px solid var(--g44-line);
  box-sizing: border-box;
}
.g44-mob-brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  flex: 1;
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--g44-ink);
}
.g44-mob-brand img { border-radius: 3px; flex-shrink: 0; }
.g44-mob-brand-text {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.g44-auth-host .g44-tool-auth {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-shrink: 0;
  max-width: 58%;
}
.g44-auth-host .g44-signin {
  width: auto;
  min-height: 40px;
  padding: 8px 14px;
  font-size: 12px;
  letter-spacing: 0.04em;
  box-shadow: none;
}
/* Mobile: avatar + large Sign Out only — no cramped name/pill stack */
.g44-auth-host .g44-header-user {
  width: auto;
  max-width: 100%;
  padding: 0;
  gap: 8px;
  background: transparent;
  border: none;
}
.g44-auth-host .g44-header-avatar {
  width: 40px;
  height: 40px;
  font-size: 14px;
  border-width: 1.5px;
  background-color: var(--g44-teal);
  border-color: rgba(15, 118, 110, 0.35);
  color: #fff;
}
.g44-auth-host .g44-header-meta {
  flex-direction: row;
  align-items: center;
  gap: 0;
}
.g44-auth-host .g44-header-name {
  display: none;
}
.g44-auth-host .g44-header-out {
  min-height: 40px;
  min-width: 72px;
  padding: 8px 14px;
  font-size: 12px;
  border-color: var(--g44-line);
  background: #fff;
  color: var(--g44-muted);
  line-height: 1.25;
  border-radius: var(--g44-radius);
}
.g44-auth-host .g44-header-out:hover {
  color: #fff;
  border-color: rgba(194, 65, 12, 0.55);
  background: var(--g44-signal);
}

@media (min-width: 900px) {
  .g44-auth-host {
    top: auto;
    left: 0;
    right: auto;
    bottom: 16px;
    width: var(--g44-rail-w);
    height: auto;
    padding: 0 14px;
    background: transparent;
    border-bottom: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .g44-mob-brand { display: none; }
  .g44-auth-host .g44-tool-auth {
    width: 100%;
    max-width: none;
    flex-direction: column;
    align-items: stretch;
  }
  .g44-auth-host .g44-signin {
    width: 100%;
    padding: 10px 12px;
    font-size: 12px;
    letter-spacing: 0.06em;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  }
  .g44-auth-host .g44-header-user {
    width: 100%;
    padding: 10px;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(231, 229, 228, 0.14);
  }
  .g44-auth-host .g44-header-avatar {
    width: 40px;
    height: 40px;
    font-size: 15px;
    border-width: 2px;
    background-color: rgba(15, 118, 110, 0.45);
    border-color: rgba(94, 234, 212, 0.45);
    color: #ecfdf5;
  }
  .g44-auth-host .g44-header-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .g44-auth-host .g44-header-name {
    display: block;
    max-width: 100%;
    color: #fff;
    font-size: 13px;
  }
  .g44-auth-host .g44-header-name:hover { color: #99f6e4; }
  .g44-auth-host .g44-header-out {
    min-height: 0;
    min-width: 0;
    padding: 3px 8px;
    border-radius: 999px;
    border-color: rgba(231, 229, 228, 0.22);
    background: rgba(0, 0, 0, 0.22);
    color: rgba(231, 229, 228, 0.78);
    font-size: 10px;
  }
  .g44-auth-host .g44-header-out:hover {
    color: #fff;
    border-color: rgba(194, 65, 12, 0.55);
    background: rgba(194, 65, 12, 0.35);
  }
}

.g44-signin {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--g44-signal);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--g44-radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.g44-signin:hover { color: #fff; filter: brightness(1.08); }

.g44-header-user {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-width: 0;
  padding: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(231, 229, 228, 0.14);
  border-radius: var(--g44-radius);
  box-sizing: border-box;
}
.g44-header-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 50%;
  background: rgba(15, 118, 110, 0.45) center/cover no-repeat;
  border: 2px solid rgba(94, 234, 212, 0.45);
  color: #ecfdf5;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
}
.g44-header-avatar:hover {
  border-color: #5eead4;
  filter: brightness(1.06);
}
.g44-header-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.g44-header-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  min-width: 0;
  flex: 1;
}
.g44-header-name {
  display: block;
  max-width: 100%;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.g44-header-name:hover { color: #99f6e4; }
.g44-header-out {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(231, 229, 228, 0.22);
  background: rgba(0, 0, 0, 0.22);
  color: rgba(231, 229, 228, 0.78);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
  white-space: nowrap;
}
.g44-header-out:hover {
  color: #fff;
  border-color: rgba(194, 65, 12, 0.55);
  background: rgba(194, 65, 12, 0.35);
}

/* Mobile bottom nav */
.g44-mobnav {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: flex;
  height: var(--g44-mob-h);
  background: #fffdf8;
  border-top: 1px solid var(--g44-line);
}
.g44-mobnav .mobile-nav-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--g44-muted);
}
.g44-mobnav .mobile-nav-item.active { color: var(--g44-teal); }
@media (min-width: 900px) {
  .g44-mobnav { display: none; }
}

/* ========== Main (right column) ========== */
.g44-main {
  width: 100%;
  max-width: var(--g44-content-max);
  margin: 0;
  padding: 16px var(--g44-content-pad-x) 40px;
  min-width: 0;
  overflow-x: clip;
}
@media (min-width: 900px) {
  .g44-main {
    padding: 24px 28px 48px;
  }
}

.g44-status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  margin-bottom: 20px;
  padding: 14px 16px;
  background: var(--g44-panel);
  border: 1px solid var(--g44-line);
  border-left: 3px solid var(--g44-teal);
}
.g44-status-slogan {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--g44-ink);
}
.g44-status-desc {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--g44-muted);
}
.g44-status-search {
  display: flex;
  gap: 8px;
  margin-left: auto;
  flex: 1;
  min-width: 200px;
  max-width: 340px;
}
.g44-status-search input {
  flex: 1;
  min-width: 0;
  padding: 9px 12px;
  border: 1px solid var(--g44-line);
  border-radius: var(--g44-radius);
  background: #fff;
  color: var(--g44-ink);
  font: inherit;
}

.g44-section-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--g44-line);
}
.g44-section-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--g44-ink);
}
.g44-mod-badge {
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--g44-teal);
  border-radius: 2px;
}
.g44-section-more {
  margin-left: auto;
  font-size: 12px;
  font-weight: 700;
  color: var(--g44-signal);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.g44-section-desc {
  margin: -4px 0 14px;
  font-size: 13px;
  color: var(--g44-muted);
}
.g44-mod { margin-bottom: 16px; }

/* ========== Split Dossier ========== */
.g44-dossier {
  display: grid;
  gap: 12px;
}
@media (min-width: 768px) {
  .g44-dossier {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 1.35fr);
    align-items: stretch;
  }
}
@media (min-width: 1200px) {
  .g44-dossier {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 1.45fr);
  }
}
.g44-dossier-lead {
  display: flex;
  flex-direction: column;
  background: var(--g44-panel);
  border: 1px solid var(--g44-line);
  overflow: hidden;
}
.g44-dossier-media {
  aspect-ratio: 16 / 10;
  flex: 0 0 auto;
  overflow: hidden;
  background: #e7e5e4;
}
.g44-dossier-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.g44-dossier-lead-meta { padding: 14px 16px 16px !important; }
@media (max-width: 767px) {
  .g44-main { padding: 10px 12px 24px; }
  .g44-status { margin-bottom: 8px; padding: 8px 10px; gap: 8px; }
  .g44-status-desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
  }
  .g44-section-bar { margin: 0 0 8px; padding-bottom: 4px; }
  .g44-section-desc {
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
  }
  .g44-dossier { gap: 8px; }
  .g44-dossier-media { aspect-ratio: 16 / 9; min-height: 0; flex: 0 0 auto; }
  .g44-dossier-lead-meta { padding: 8px 10px 10px !important; }
  .g44-dossier-lead-meta .brief-comment-game { -webkit-line-clamp: 1; line-clamp: 1; }
  .g44-dossier-lead-meta .g44-card-tags { display: none; }
}
.g44-dossier-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 0;
  overflow-y: auto;
}
@media (min-width: 768px) {
  /* Match lead card height; scroll when list is taller */
  .g44-dossier-stack {
    height: 0;
    min-height: 100%;
  }
}
.g44-dossier-row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 10px;
  align-items: center;
  padding: 8px;
  background: var(--g44-panel);
  border: 1px solid var(--g44-line);
}
.g44-dossier-row:hover { border-color: var(--g44-teal); }
.g44-dossier-thumb {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e7e5e4;
}
.g44-dossier-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.g44-dossier-row-body {
  min-width: 0;
  padding: 0 4px 0 0 !important;
}

/* ========== Twin Columns ========== */
.g44-twin {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
@media (min-width: 900px) {
  .g44-twin { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1200px) {
  .g44-twin { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.g44-twin--related {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 768px) {
  .g44-twin--related { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1100px) {
  .g44-twin--related { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.g44-index-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--g44-panel);
  border: 1px solid var(--g44-line);
  overflow: hidden;
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.g44-index-card:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 118, 110, 0.45);
}
.g44-index-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e7e5e4;
}
.g44-index-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========== Spine Shelf ========== */
.g44-spine-layout {
  display: grid;
  gap: 12px;
}
@media (min-width: 768px) {
  .g44-spine-layout {
    grid-template-columns: 44px 1fr;
    align-items: stretch;
  }
}
.g44-spine {
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--g44-rail);
  border-radius: var(--g44-radius);
  min-height: 180px;
}
@media (min-width: 768px) {
  .g44-spine { display: flex; }
}
.g44-spine-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5eead4;
  white-space: nowrap;
  max-height: 280px;
  overflow: hidden;
}
.g44-spine-body { min-width: 0; }
.g44-rail-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
}
.g44-spine-rail {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 2px 0 8px;
  flex: 1;
  min-width: 0;
}
.g44-spine-rail::-webkit-scrollbar { display: none; }
.g44-spine-card {
  flex: 0 0 min(240px, 72vw);
  scroll-snap-align: start;
  background: var(--g44-panel);
  border: 1px solid var(--g44-line);
  overflow: hidden;
}
@media (min-width: 900px) {
  .g44-spine-card { flex-basis: 260px; }
}
@media (min-width: 1200px) {
  .g44-spine-card { flex-basis: 280px; }
}
.g44-spine-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e7e5e4;
}
.g44-spine-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.g44-rail-btn {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: 1px solid var(--g44-line);
  border-radius: 50%;
  background: var(--g44-panel);
  color: var(--g44-ink);
  font-size: 20px;
  cursor: pointer;
}
.g44-rail-btn:disabled { opacity: 0.35; cursor: default; }
@media (max-width: 767px) {
  .g44-rail-btn { display: none; }
}

/* ========== Ledger ========== */
.g44-ledger {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  min-width: 0;
}
@media (min-width: 960px) {
  .g44-ledger { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
/* Grid items default min-width:auto — fixed 72px thumb + chips force overflow on narrow phones */
.g44-ledger-row {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  min-width: 0;
  padding: 6px;
  background: var(--g44-panel);
  border: 1px solid var(--g44-line);
}
@media (min-width: 480px) {
  .g44-ledger-row {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 10px;
    padding: 8px;
  }
}
.g44-ledger-row:hover { border-color: var(--g44-teal); }
.g44-ledger-thumb {
  aspect-ratio: 1;
  min-width: 0;
  overflow: hidden;
  background: #e7e5e4;
}
.g44-ledger-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.g44-ledger-body {
  min-width: 0;
  overflow: hidden;
  padding: 2px 4px 4px 0 !important;
}

/* Legend footer */
.g44-legend-footer { margin-top: 8px; }
.g44-genre-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.g44-genre {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--g44-teal);
  border: 1px solid rgba(15, 118, 110, 0.3);
  background: rgba(15, 118, 110, 0.06);
}
.g44-genre-num {
  font-family: ui-monospace, Consolas, monospace;
  font-size: 11px;
  color: var(--g44-signal);
}

.g44-chip,
.g44-chip-link {
  display: inline-block;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--g44-teal);
  border: 1px solid rgba(15, 118, 110, 0.28);
  background: rgba(15, 118, 110, 0.06);
}
.g44-chip-link {
  padding: 5px 10px;
  font-size: 12px;
}

/* List title + padding */
.article-list .special-card-content,
.article-list .carousel-card-content {
  padding: 12px 14px 16px;
}
.article-list .game-title,
.article-list .card-title,
.special-card .game-title,
.game-card .card-title,
.carousel-card .game-title,
.g44-dossier-lead-meta .game-title,
.g44-dossier-row-body .game-title,
.g44-ledger-body .game-title {
  display: block;
  max-width: 100%;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--g44-ink);
  font-weight: 700;
}
.special-card-content,
.card-content { min-width: 0; color: var(--g44-ink); }

.g44-main .brief-comment-game,
.brief-comment-game {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
  min-width: 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--g44-muted);
}
.g44-main .brief-comment-game *,
.brief-comment-game * { color: inherit !important; }
@media (min-width: 768px) {
  .g44-main .brief-comment-game,
  .brief-comment-game { -webkit-line-clamp: 2; }
}
.g44-main .g44-card-tags,
.g44-card-tags {
  display: flex;
  gap: 6px;
  min-width: 0;
  flex-wrap: nowrap;
  overflow: hidden;
}
.g44-card-tags .g44-chip,
.g44-card-tags .g44-tag-chip {
  flex: 0 1 auto;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* Ledger 双列极窄：第二枚标签会被边框硬切，窄屏只留一枚 */
@media (max-width: 767px) {
  .g44-ledger .g44-card-tags .g44-chip:nth-child(n + 2),
  .g44-ledger .g44-card-tags .g44-tag-chip:nth-child(n + 2),
  .g44-twin .g44-card-tags .g44-chip:nth-child(n + 2),
  .g44-twin .g44-card-tags .g44-tag-chip:nth-child(n + 2) {
    display: none;
  }
}
@media (min-width: 768px) {
  .g44-main .g44-card-tags,
  .g44-card-tags { flex-wrap: wrap; overflow: visible; }
  .g44-card-tags .g44-chip,
  .g44-card-tags .g44-tag-chip {
    flex: 0 0 auto;
    max-width: none;
    overflow: visible;
    text-overflow: unset;
  }
}
.g44-tag-chip {
  flex-shrink: 0;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 2px;
  background: rgba(15, 118, 110, 0.08);
  border: 1px solid rgba(15, 118, 110, 0.25);
  color: var(--g44-teal);
}

/* Stars */
.game-star {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 13px;
  line-height: 1;
  min-height: 18px;
}
.game-star .star-full,
.game-star .star-empty {
  display: inline-block;
  width: 14px;
  height: 14px;
  position: relative;
}
.game-star .star-full::before,
.game-star .star-empty::before {
  content: "★";
  position: absolute;
  inset: 0;
  font-size: 14px;
  line-height: 14px;
}
.game-star .star-full::before { color: var(--g44-star-full); }
.game-star .star-empty::before { color: var(--g44-star-empty); }
.game-star--detail-hero { font-size: 15px; margin: 4px 0; }
.game-star--detail-hero .star-full,
.game-star--detail-hero .star-empty { width: 16px; height: 16px; }
.game-star--detail-hero .star-full::before,
.game-star--detail-hero .star-empty::before { font-size: 16px; line-height: 16px; }

/* ========== Detail ========== */
.g44-detail { padding-bottom: 24px; }
.g44-crumb { margin: 14px 0; font-size: 13px; color: var(--g44-muted); }
.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.g44-detail-kicker {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--g44-teal);
}
.g44-detail-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 10px 0; }
.g44-detail-meta { display: grid; gap: 6px; margin: 12px 0; font-size: 13px; }
.g44-meta-row span {
  display: inline-block;
  min-width: 72px;
  color: var(--g44-muted);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.06em;
}
.g44-detail-body { display: grid; gap: 16px; }
.g44-detail-block {
  padding: 16px;
  background: var(--g44-panel);
  border: 1px solid var(--g44-line);
}
.g44-detail-block h2 {
  margin: 0 0 10px;
  font-size: 1rem;
  letter-spacing: 0.03em;
}
.g44-quote { margin: 0; color: var(--g44-muted); font-size: 14px; }
.description-text-wrap.is-collapsed {
  max-height: 180px;
  overflow: hidden;
  position: relative;
}
.description-text-wrap.is-expanded { max-height: none; }
.g44-related { margin: 24px 0; padding: 0 0 8px; }

/* ========== Tags ========== */
.g44-tags-page {
  width: 100%;
  max-width: var(--g44-content-max);
  margin: 0;
  padding: 56px var(--g44-content-pad-x) 40px;
}
@media (min-width: 900px) {
  .g44-tags-page { padding: 24px 28px 48px; }
}
.g44-tags-head h1 {
  margin: 0 0 6px;
  font-size: 1.5rem;
}
.tag-h2 {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--g44-muted);
}
.g44-tags-search {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.g44-tags-search .form-input {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid var(--g44-line);
  border-radius: var(--g44-radius);
  background: var(--g44-panel);
  color: var(--g44-ink);
  font: inherit;
}
.g44-tags-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 12px;
}
.g44-view-toggle { display: flex; gap: 4px; margin-left: auto; }
.g44-view-btn {
  padding: 7px 12px;
  border: 1px solid var(--g44-line);
  background: var(--g44-panel);
  color: var(--g44-muted);
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.g44-view-btn.is-active {
  color: #fff;
  background: var(--g44-teal);
  border-color: var(--g44-teal);
}
.g44-tags-cats {
  display: none;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
@media (min-width: 900px) {
  .g44-tags-cats { display: flex; }
  .g44-filter-open { display: none; }
}
.g44-twin.is-lines {
  grid-template-columns: 1fr !important;
}
.g44-twin.is-lines .g44-index-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: stretch;
}
.g44-twin.is-lines .g44-index-media { aspect-ratio: auto; height: 100%; min-height: 90px; }

/* Tags drawer */
.g44-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  border: 0;
  background: rgba(0, 0, 0, 0.45);
}
.g44-tags-drawer {
  position: fixed;
  inset: 0;
  z-index: 210;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}
body.g44-drawer-open .g44-tags-drawer { pointer-events: none; }
body.g44-drawer-open .g44-drawer-panel { pointer-events: auto; }
.g44-drawer-panel {
  width: min(320px, 88vw);
  height: 100%;
  background: var(--g44-panel);
  border-left: 3px solid var(--g44-teal);
  transform: translateX(100%);
  transition: transform 0.2s ease;
  overflow: auto;
  padding: 16px;
}
body.g44-drawer-open .g44-drawer-panel { transform: translateX(0); }
.g44-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.g44-drawer-head h2 {
  margin: 0;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--g44-teal);
}
.g44-drawer-close {
  border: 0;
  background: transparent;
  color: var(--g44-ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.g44-drawer-link {
  display: block;
  padding: 10px 8px;
  border-bottom: 1px solid var(--g44-line);
  font-weight: 600;
}

/* ========== Profile ========== */
.g44-profile-page {
  width: 100%;
  max-width: var(--g44-content-max);
  margin: 0;
  padding: 56px var(--g44-content-pad-x) 40px;
}
@media (min-width: 900px) {
  .g44-profile-page { padding: 24px 28px 48px; }
}
.g44-atlas-banner {
  padding: 16px;
  margin-bottom: 18px;
  background: var(--g44-panel);
  border: 1px solid var(--g44-line);
  border-top: 3px solid var(--g44-teal);
}
.g44-profile-user {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}
.g44-profile-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e7e5e4;
  border: 2px solid var(--g44-teal);
  font-weight: 800;
  overflow: hidden;
}
.g44-aside-label {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--g44-teal);
}
.g44-profile-name { margin: 4px 0; font-size: 1.3rem; }
.g44-profile-email { margin: 0; color: var(--g44-muted); font-size: 13px; }
.g44-profile-stats {
  display: flex;
  gap: 16px;
  margin-bottom: 14px;
}
.g44-stat-item { display: flex; flex-direction: column; }
.g44-stat-num { font-size: 1.3rem; font-weight: 800; color: var(--g44-signal); }
.g44-stat-label { font-size: 11px; color: var(--g44-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.g44-profile-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.g44-profile-nav-item {
  padding: 8px 12px;
  border: 1px solid var(--g44-line);
  background: transparent;
  color: var(--g44-muted);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}
.g44-profile-nav-item.active {
  color: #fff;
  background: var(--g44-teal);
  border-color: var(--g44-teal);
}
.g44-profile-panel { display: none; }
.g44-profile-panel.active { display: block; }
.g44-shelf-block {
  margin-bottom: 18px;
  padding: 14px;
  background: var(--g44-panel);
  border: 1px solid var(--g44-line);
}
.g44-profile-panel-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.g44-profile-card-title { margin: 4px 0 0; font-size: 1.1rem; }
.g44-shelf-actions { margin-left: auto; display: flex; gap: 10px; align-items: center; }
.g44-btn-clear {
  border: 0;
  background: transparent;
  color: var(--g44-muted);
  font: inherit;
  font-size: 12px;
  cursor: pointer;
}
.g44-stat-badge {
  font-size: 12px;
  color: var(--g44-teal);
  font-weight: 700;
}
.g44-empty-state { text-align: center; padding: 24px; color: var(--g44-muted); }
.g44-game-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
@media (min-width: 700px) {
  .g44-game-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
}
@media (min-width: 1100px) {
  .g44-game-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.g44-ranked-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #fff;
  border: 1px solid var(--g44-line);
  border-radius: var(--g44-radius);
  overflow: hidden;
  transition: transform 0.15s ease;
}
.g44-ranked-card:hover { transform: translateY(-2px); }
.g44-card-index {
  position: absolute;
  top: 6px;
  left: 6px;
  z-index: 1;
  min-width: 22px;
  padding: 2px 6px;
  border-radius: 3px;
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid var(--g44-line);
  font-family: ui-monospace, Consolas, monospace;
  font-size: 11px;
  font-weight: 800;
  color: var(--g44-signal);
  text-align: center;
  line-height: 1.2;
}
.g44-ranked-thumb {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e7e5e4;
}
.g44-ranked-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.g44-ranked-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  flex: 1;
  padding: 12px 14px 16px;
}
.g44-ranked-body .game-title,
.g44-ranked-body .game-title a {
  color: var(--g44-ink);
  text-decoration: none;
}
.g44-ranked-body .brief-comment-game {
  margin: 0;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.g44-btn-remove {
  align-self: flex-start;
  margin-top: 4px;
  border: 1px solid var(--g44-line);
  background: transparent;
  color: var(--g44-muted);
  font: inherit;
  font-size: 12px;
  padding: 4px 8px;
  cursor: pointer;
  border-radius: var(--g44-radius);
}
.g44-btn-remove:hover {
  color: #fff;
  background: var(--g44-signal);
  border-color: var(--g44-signal);
}
.g44-profile-form-block { max-width: 520px; }
.g44-avatar-upload {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
}
.g44-avatar-preview {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e7e5e4;
  border: 2px solid var(--g44-line);
  overflow: hidden;
  font-weight: 800;
}
.g44-form-group { margin-bottom: 12px; }
.g44-form-group label {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--g44-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.g44-form-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--g44-line);
  border-radius: var(--g44-radius);
  background: #fff;
  color: var(--g44-ink);
  font: inherit;
}
.g44-form-row {
  display: grid;
  gap: 12px;
}
@media (min-width: 640px) {
  .g44-form-row { grid-template-columns: 1fr 1fr; }
}
.g44-confirm-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
}
.g44-confirm-overlay[aria-hidden="false"] { display: flex; }
.g44-confirm-modal {
  width: min(360px, 90vw);
  padding: 20px;
  background: var(--g44-panel);
  border: 1px solid var(--g44-line);
}
.g44-confirm-actions { display: flex; gap: 8px; justify-content: flex-end; margin-top: 16px; }
.g44-confirm-cancel {
  border: 1px solid var(--g44-line);
  background: transparent;
  color: var(--g44-ink);
  padding: 8px 12px;
  cursor: pointer;
  font: inherit;
}

/* Auth */
.g44-auth-page {
  width: min(440px, calc(100% - 28px));
  margin: 56px auto 48px;
}
@media (min-width: 900px) {
  .g44-auth-page { margin-top: 32px; }
}
.g44-auth-card {
  padding: 22px;
  background: var(--g44-panel);
  border: 1px solid var(--g44-line);
  border-top: 3px solid var(--g44-teal);
}
.g44-auth-kicker {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--g44-teal);
}
.g44-auth-head { margin: 0 0 16px; font-size: 1.35rem; }
.g44-auth-tabs { display: flex; gap: 6px; margin-bottom: 14px; }
.g44-auth-tab {
  flex: 1;
  padding: 9px;
  border: 1px solid var(--g44-line);
  background: transparent;
  color: var(--g44-muted);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.g44-auth-tab.active {
  color: #fff;
  background: var(--g44-teal);
  border-color: var(--g44-teal);
}
.g44-auth-panel { display: none; }
.g44-auth-panel.active { display: block; }
.g44-form-input-wrap { position: relative; }
.g44-form-error { display: none; font-size: 12px; color: #b91c1c; }
.g44-form-group.has-error .g44-form-error { display: block; }
.g44-auth-alert { display: none; margin-bottom: 10px; padding: 8px 10px; font-size: 13px; }
.g44-auth-alert.show { display: block; }
.g44-auth-forgot { margin: 0 0 12px; font-size: 13px; }
.g44-auth-forgot a { color: var(--g44-teal); }
.g44-btn-auth { width: 100%; }
.g44-auth-divider {
  margin: 16px 0;
  text-align: center;
  color: var(--g44-muted);
  font-size: 12px;
}
.g44-social-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.g44-social-btn {
  padding: 9px;
  border: 1px solid var(--g44-line);
  background: #fff;
  color: var(--g44-ink);
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

/* Legal */
.g44-legal {
  margin: 20px auto 40px;
  padding: 20px;
  background: var(--g44-panel);
  border: 1px solid var(--g44-line);
}
.g44-legal h1, .g44-legal h2, .g44-legal h3 { color: var(--g44-teal); }
.game-empty { text-align: center; padding: 48px 16px; }
.game-empty-title { font-size: 1.4rem; font-weight: 800; margin-bottom: 8px; }

/* Footer (inside right column) */
.g44-footer {
  margin-top: 24px;
  padding: 28px 16px 20px;
  border-top: 1px solid var(--g44-line);
  background: #ebe4d8;
  color: var(--g44-muted);
  font-size: 13px;
}
.g44-footer-grid {
  width: 100%;
  max-width: var(--g44-content-max);
  margin: 0 0 16px;
  padding-inline: var(--g44-content-pad-x);
  display: grid;
  gap: 18px;
}
@media (min-width: 900px) {
  .g44-footer-grid { padding-inline: 28px; }
}
@media (min-width: 768px) {
  .g44-footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.g44-footer-brand { color: var(--g44-ink); font-size: 1.05rem; }
.g44-footer-desc { margin: 8px 0 0; }
.g44-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}
.g44-footer-links a { color: var(--g44-muted); }
.g44-footer-links a:hover { color: var(--g44-teal); }
.footer-social { display: flex; flex-wrap: wrap; gap: 10px; }
.footer-social-link { color: var(--g44-teal); }
.g44-footer-copy {
  width: 100%;
  max-width: var(--g44-content-max);
  margin: 0;
  padding: 12px var(--g44-content-pad-x) 0;
  border-top: 1px solid var(--g44-line);
}
@media (min-width: 900px) {
  .g44-footer-copy { padding-inline: 28px; }
}

/* Back to top — beat ads.css .back-to-top (loaded after styles.css) */
.back-to-top.g44-back-top,
.g44-back-top {
  position: fixed;
  right: 16px;
  bottom: calc(var(--g44-mob-h) + 16px);
  z-index: 900;
  width: 42px;
  height: 42px;
  padding: 0;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--g44-line);
  border-radius: 50%;
  background: var(--g44-panel);
  color: var(--g44-teal);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  cursor: pointer;
  font-size: 0;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.back-to-top.g44-back-top::before,
.g44-back-top::before {
  content: none;
  display: none;
  animation: none;
  opacity: 0;
  background: none;
  box-shadow: none;
}
.back-to-top.g44-back-top svg,
.g44-back-top svg {
  position: relative;
  z-index: 1;
  display: block;
}
.back-to-top.g44-back-top.show,
.g44-back-top.show {
  display: inline-flex;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.back-to-top.g44-back-top:not(.show),
.g44-back-top:not(.show) {
  display: none;
}
.back-to-top.g44-back-top:hover,
.g44-back-top:hover {
  border-color: var(--g44-teal);
  color: var(--g44-signal);
  background: var(--g44-panel);
  box-shadow: none;
  transform: none;
}
.back-to-top.g44-back-top:active,
.g44-back-top:active {
  transform: translateY(0);
  filter: brightness(0.96);
}
@media (min-width: 900px) {
  .back-to-top.g44-back-top,
.g44-back-top {
    bottom: 24px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .back-to-top.g44-back-top,
.g44-back-top {
    transition: opacity 0.15s ease, visibility 0.15s ease;
    transform: none;
  }
  .back-to-top.g44-back-top:hover,
  .g44-back-top:hover,
  .back-to-top.g44-back-top:active,
  .g44-back-top:active {
    transform: none;
  }
}


.pagination-container { margin: 32px 0 12px; }
