/* ==========================================================================
   女神动漫最新版app · 全站样式
   分组：base / layout / components / pages / responsive
   ========================================================================== */

/* ==========================================================================
   base
   ========================================================================== */

:root {
  --bg: #f4f6f7;
  --surface: #ffffff;
  --surface-alt: #eef2f3;
  --ink: #1c252b;
  --ink-soft: #60717a;
  --line: #d8e0e3;
  --line-strong: #c2ced3;
  --accent: #0f7a6c;
  --accent-soft: #e2f0ed;
  --status-orange: #c26a2e;
  --status-orange-soft: #f7ebe1;
  --focus: #0f7a6c;
  --radius: 6px;
  --radius-sm: 4px;
  --shell: 1120px;
  --gap: 20px;
  --font-sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Source Han Sans SC", "Noto Sans CJK SC", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "SFMono-Regular", "JetBrains Mono", "Roboto Mono", Consolas, "Courier New", monospace;
  --header-h: 60px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 400;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 650;
  line-height: 1.35;
  color: var(--ink);
}

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

figure {
  margin: 0;
}

time {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

button {
  font: inherit;
  color: inherit;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   layout · 全站骨架
   ========================================================================== */

.site-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(28, 37, 43, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: saturate(140%) blur(6px);
}

.site-header.is-scrolled {
  background: #1c252b;
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

.site-home .site-header {
  position: fixed;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
}

.site-home .site-header.is-scrolled {
  background: #1c252b;
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

.header-inner {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 20px;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-main {
  flex: 1 1 auto;
  width: 100%;
}

.inner-main {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 22px 20px 56px;
}

.site-footer {
  background: #1c252b;
  color: #cfd9dd;
  margin-top: auto;
}

.footer-inner {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 40px 20px 24px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copy {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 16px 20px 22px;
  font-size: 13px;
  color: #94a4ac;
}

/* ==========================================================================
   components · 页头与导航
   ========================================================================== */

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-weight: 650;
  flex: 0 0 auto;
}

.brand:hover {
  text-decoration: none;
}

.brand-mark {
  width: 26px;
  height: 26px;
  border-radius: var(--radius-sm);
  background: var(--accent);
  border: 1px solid rgba(255, 255, 255, 0.35);
  position: relative;
  flex: 0 0 auto;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 7px 6px;
  border-left: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}

.brand-text {
  font-size: 16px;
  line-height: 1.2;
  white-space: nowrap;
}

.site-nav {
  margin-left: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: var(--radius-sm);
  color: #dbe4e7;
  font-size: 14px;
  white-space: nowrap;
}

.nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
}

.nav-link.is-current {
  color: #ffffff;
  background: rgba(15, 122, 108, 0.4);
  box-shadow: inset 0 -2px 0 var(--accent);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  background: #ffffff;
}

/* ==========================================================================
   components · 通用按钮与链接
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 650;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

.btn-primary:hover {
  background: #0c655a;
  border-color: #0c655a;
}

.btn-ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.link-inline,
.text-link,
.section-cta,
.jump-link,
.entry-note-link,
.album-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 24px;
  font-size: 14px;
  font-weight: 650;
  color: var(--accent);
}

.link-inline::after,
.text-link::after,
.section-cta::after,
.jump-link::after,
.entry-note-link::after,
.album-link::after {
  content: "→";
  font-size: 13px;
  line-height: 1;
}

.quicklink,
.quick-link,
.shortcut-link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  font-size: 13px;
  font-weight: 650;
}

.quicklink:hover,
.quick-link:hover,
.shortcut-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  text-decoration: none;
}

/* ==========================================================================
   components · 面包屑 / 页面标题区
   ========================================================================== */

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-soft);
  padding: 4px 0 0;
}

.breadcrumb a {
  color: var(--ink-soft);
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb-sep {
  color: var(--line-strong);
}

.breadcrumb-current {
  color: var(--ink);
  font-weight: 650;
}

.page-header {
  padding: 12px 0 0;
}

.page-title {
  font-size: 32px;
  font-weight: 650;
  line-height: 1.3;
  color: var(--ink);
}

.title-area {
  padding: 14px 0 22px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 26px;
}

.page-lead,
.title-lead,
.title-desc,
.title-kicker {
  max-width: 780px;
  font-size: 15px;
  color: var(--ink-soft);
}

.title-kicker {
  font-size: 13px;
  font-weight: 650;
  color: var(--accent);
  margin-bottom: 6px;
}

.title-tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 650;
  margin-bottom: 8px;
}

.title-quicklinks,
.title-shortcuts,
.title-links,
.title-actions,
.title-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.title-quick-links {
  list-style: none;
}

/* ==========================================================================
   components · 区块标题
   ========================================================================== */

.section-head {
  margin-bottom: 18px;
}

.section-title,
.panel-title,
.section-head h2 {
  font-size: 22px;
  font-weight: 650;
}

.section-note,
.section-desc,
.section-lead,
.section-intro,
.section-sub {
  margin-top: 6px;
  max-width: 760px;
  font-size: 14px;
  color: var(--ink-soft);
}

/* ==========================================================================
   components · 状态标签
   ========================================================================== */

.status-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-strong);
  background: var(--surface-alt);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 650;
  white-space: nowrap;
}

.status-tag.status-serial,
.status-ongoing,
.state-ongoing,
.status-hiatus,
.status-done,
.status-pause,
.status-pending {
  font-style: normal;
}

.status-tag.status-serial,
.status-serial {
  border-color: rgba(15, 122, 108, 0.4);
  background: var(--accent-soft);
  color: var(--accent);
}

.status-tag.status-done,
.status-done {
  border-color: rgba(15, 122, 108, 0.28);
  background: #e8f1ef;
  color: #0b5c52;
}

.status-tag.status-pause,
.status-pause,
.status-hiatus {
  border-color: rgba(194, 106, 46, 0.35);
  background: var(--status-orange-soft);
  color: var(--status-orange);
}

.status-tag.status-pending,
.status-pending {
  border-color: var(--line-strong);
  background: var(--surface-alt);
  color: var(--ink-soft);
}

.status-none {
  color: var(--ink-soft);
  font-size: 13px;
}

/* ==========================================================================
   components · 页脚
   ========================================================================== */

.footer-col {
  min-width: 0;
}

.footer-brand {
  padding-right: 12px;
}

.footer-name {
  font-size: 16px;
  font-weight: 650;
  color: #ffffff;
}

.footer-desc {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.7;
  color: #9fb0b7;
  max-width: 320px;
}

.footer-title {
  font-size: 14px;
  font-weight: 650;
  color: #ffffff;
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  color: #b8c6cc;
  font-size: 13px;
}

.footer-links a:hover {
  color: #ffffff;
}

/* ==========================================================================
   components · 相关链接条
   ========================================================================== */

.related-links {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 16px 20px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.related-links-label {
  font-size: 13px;
  font-weight: 650;
  color: var(--ink-soft);
}

.related-links-item {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  font-size: 13px;
}

.related-links-item:hover {
  border-color: var(--accent);
  color: var(--accent);
  text-decoration: none;
}

/* ==========================================================================
   pages · 首页
   ========================================================================== */

.home-main {
  padding-bottom: 0;
}

.hero-map {
  padding: calc(var(--header-h) + 34px) 20px 40px;
  max-width: var(--shell);
  margin: 0 auto;
}

.hero-media {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #202c33;
  min-height: 300px;
}

.hero-media img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

.hero-copy {
  position: absolute;
  inset: auto 0 0 0;
  padding: 26px 28px;
  background: linear-gradient(180deg, rgba(20, 28, 33, 0) 0%, rgba(20, 28, 33, 0.86) 62%);
  color: #ffffff;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 650;
  color: #8fd3c8;
  margin-bottom: 8px;
}

.hero-copy h1 {
  font-size: 32px;
  color: #ffffff;
  max-width: 640px;
}

.hero-lead {
  margin-top: 10px;
  max-width: 620px;
  font-size: 15px;
  color: #d5dee1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.hero-actions .btn-ghost {
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

.hero-actions .btn-ghost:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.hero-panels {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--gap);
  margin-top: 24px;
}

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px 20px;
  min-width: 0;
}

.panel-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.panel-more {
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
}

.genre-index {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 14px 0 4px;
}

.genre-index a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-alt);
  color: var(--ink-soft);
  font-size: 12px;
}

.genre-index a:hover {
  border-color: var(--accent);
  color: var(--accent);
  text-decoration: none;
}

.update-list {
  margin-top: 8px;
  border-top: 1px solid var(--line);
}

.update-row {
  display: grid;
  grid-template-columns: 84px minmax(0, 1.5fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
}

.update-row:last-child {
  border-bottom: 0;
}

.update-date {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-soft);
}

.update-name {
  font-size: 14px;
  font-weight: 650;
  color: var(--ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.update-genre {
  font-size: 13px;
  color: var(--ink-soft);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.genre-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.genre-cell {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-alt);
  transition: border-color 0.18s ease, background-color 0.18s ease;
}

.genre-cell:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.genre-cell > a {
  display: block;
  padding: 12px 12px 14px;
  color: var(--ink);
}

.genre-cell > a:hover {
  text-decoration: none;
}

.genre-name {
  display: block;
  font-size: 14px;
  font-weight: 650;
  color: var(--ink);
}

.genre-desc {
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.update-track,
.chapter-status,
.topic-album,
.reading-guide {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 40px 20px 0;
}

.track-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  position: relative;
  padding-top: 18px;
}

.track-list::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line-strong);
}

.track-card {
  position: relative;
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 14px 14px;
  transition: border-color 0.18s ease, background-color 0.18s ease;
}

.track-card::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 18px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--accent);
}

.track-card:hover {
  border-color: var(--accent);
  background: #fbfdfc;
}

.track-date {
  display: block;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
}

.track-name {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 650;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.track-genre {
  margin-top: 4px;
  font-size: 12px;
  color: var(--ink-soft);
}

.track-card .status-tag {
  margin-top: 10px;
}

.track-foot {
  margin-top: 16px;
  font-size: 14px;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--gap);
}

.status-card {
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  border-radius: 8px;
  padding: 18px 18px 20px;
}

.status-card:nth-child(2) {
  border-top-color: var(--status-orange);
}

.status-card:nth-child(3) {
  border-top-color: #4a6b7c;
}

.status-card:nth-child(4) {
  border-top-color: var(--line-strong);
}

.status-name {
  font-size: 17px;
}

.status-def {
  margin-top: 10px;
  font-size: 14px;
  color: var(--ink);
}

.status-tip {
  margin-top: 8px;
  font-size: 13px;
  color: var(--ink-soft);
}

.status-card .link-inline {
  margin-top: 14px;
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap);
}

.album-card {
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 18px 20px;
  transition: border-color 0.18s ease, background-color 0.18s ease;
}

.album-card:hover {
  border-color: var(--accent);
  background: #fbfdfc;
}

.album-cover {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface-alt);
}

.album-cover img {
  width: 100%;
  height: 156px;
  object-fit: cover;
}

.album-name {
  margin-top: 14px;
  font-size: 17px;
}

.album-desc {
  margin-top: 8px;
  font-size: 14px;
  color: var(--ink-soft);
}

.album-meta {
  margin-top: 10px;
  font-size: 12px;
  color: var(--ink-soft);
}

.album-card .link-inline {
  margin-top: 14px;
}

.guide-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: start;
}

.guide-rules,
.guide-faq {
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px 20px;
}

.guide-subtitle {
  font-size: 17px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.rule-list {
  margin-top: 6px;
}

.rule-item {
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
}

.rule-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.rule-name {
  display: block;
  font-size: 14px;
  font-weight: 650;
  color: var(--accent);
}

.rule-desc {
  margin-top: 6px;
  font-size: 14px;
  color: var(--ink-soft);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 10px 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 650;
  color: var(--ink);
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  font-size: 18px;
  line-height: 1;
  color: var(--accent);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 0 14px;
  font-size: 14px;
  color: var(--ink-soft);
}

.entry-note {
  max-width: var(--shell);
  margin: 40px auto 0;
  padding: 0 20px 48px;
}

.note-inner {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  padding: 22px 24px;
}

.note-text {
  margin-top: 10px;
  max-width: 800px;
  font-size: 14px;
  color: var(--ink-soft);
}

.note-inner .btn-ghost {
  margin-top: 16px;
}

/* ==========================================================================
   pages · 题材坐标
   ========================================================================== */

.genre-grid-section,
.genre-definition-section,
.status-summary-section,
.topic-entry-section {
  padding: 32px 0 0;
}

.genre-grid-section .genre-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 0;
}

.genre-grid-section .genre-cell {
  background: var(--surface);
  transition: border-color 0.18s ease, background-color 0.18s ease;
}

.genre-cell-media {
  border-bottom: 1px solid var(--line);
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  background: var(--surface-alt);
}

.genre-cell-media img {
  width: 100%;
  height: 118px;
  object-fit: cover;
}

.genre-cell-name {
  padding: 12px 14px 0;
  font-size: 16px;
}

.genre-cell-name a {
  color: var(--ink);
}

.genre-cell-name a:hover {
  color: var(--accent);
  text-decoration: none;
}

.genre-cell-def {
  padding: 6px 14px 0;
  font-size: 13px;
  color: var(--ink-soft);
}

.genre-cell .status-tag {
  margin: 12px 14px 14px;
}

.definition-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap);
}

.definition-item {
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 18px 18px;
}

.definition-name {
  font-size: 16px;
}

.definition-text {
  margin-top: 8px;
  font-size: 14px;
  color: var(--ink-soft);
}

.definition-link {
  margin-top: 12px;
  font-size: 13px;
}

.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.status-table,
.data-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: 14px;
}

.status-table thead th,
.data-table thead th {
  text-align: left;
  font-size: 13px;
  font-weight: 650;
  color: var(--ink-soft);
  background: var(--surface-alt);
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}

.status-table tbody th,
.data-table tbody th {
  text-align: left;
  font-weight: 650;
  color: var(--ink);
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}

.status-table tbody td,
.data-table tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  vertical-align: top;
}

.status-table tbody tr:last-child th,
.status-table tbody tr:last-child td,
.data-table tbody tr:last-child th,
.data-table tbody tr:last-child td {
  border-bottom: 0;
}

.status-summary-note {
  margin-top: 14px;
  font-size: 14px;
  color: var(--ink-soft);
}

.status-summary-note a {
  margin-left: 6px;
  font-weight: 650;
}

.topic-entry-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap);
}

.topic-entry-card {
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 18px 20px;
  transition: border-color 0.18s ease, background-color 0.18s ease;
}

.topic-entry-card:hover {
  border-color: var(--accent);
  background: #fbfdfc;
}

.topic-entry-name {
  font-size: 16px;
}

.topic-entry-name a {
  color: var(--ink);
}

.topic-entry-name a:hover {
  color: var(--accent);
  text-decoration: none;
}

.topic-entry-desc {
  margin-top: 8px;
  font-size: 14px;
  color: var(--ink-soft);
}

.topic-entry-meta {
  margin-top: 10px;
  font-size: 12px;
  color: var(--ink-soft);
}

/* ==========================================================================
   pages · 追更日历
   ========================================================================== */

.date-track,
.day-cards,
.related-topics {
  padding: 32px 0 0;
}

.track-nodes {
  display: flex;
  align-items: stretch;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 2px 12px;
  border-bottom: 1px solid var(--line);
}

.track-node {
  flex: 1 1 0;
  min-width: 96px;
}

.track-node a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-height: 64px;
  padding: 12px 8px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
}

.track-node a:hover {
  border-color: var(--accent);
  text-decoration: none;
}

.track-node.is-gap a {
  border-top-color: var(--line-strong);
  background: var(--surface-alt);
  color: var(--ink-soft);
}

.track-nodes .track-date {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 650;
}

.track-week {
  font-size: 12px;
  color: var(--ink-soft);
}

.day-card-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap);
}

.day-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.18s ease, background-color 0.18s ease;
}

.day-card:hover {
  border-color: var(--accent);
  background: #fbfdfc;
}

.day-card-cover {
  border-bottom: 1px solid var(--line);
  background: var(--surface-alt);
}

.day-card-cover img {
  width: 100%;
  height: 132px;
  object-fit: cover;
}

.day-card-body {
  padding: 14px 16px 18px;
  min-width: 0;
}

.day-card-date {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
}

.day-card-title {
  margin-top: 6px;
  font-size: 16px;
}

.day-card-title a {
  color: var(--ink);
}

.day-card-title a:hover {
  color: var(--accent);
  text-decoration: none;
}

.day-card-fields,
.field-table {
  margin: 12px 0 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 6px 12px;
  font-size: 13px;
}

.day-card-fields dt,
.field-table dt {
  color: var(--ink-soft);
  white-space: nowrap;
}

.day-card-fields dd,
.field-table dd {
  margin: 0;
  color: var(--ink);
  min-width: 0;
}

.related-topic-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap);
}

.related-topic-card {
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 18px 18px;
  transition: border-color 0.18s ease, background-color 0.18s ease;
}

.related-topic-card:hover {
  border-color: var(--accent);
  background: #fbfdfc;
}

.related-topic-name {
  font-size: 15px;
}

.related-topic-desc {
  margin-top: 8px;
  font-size: 13px;
  color: var(--ink-soft);
}

.related-topic-meta {
  margin-top: 10px;
  font-size: 12px;
  color: var(--ink-soft);
}

/* ==========================================================================
   pages · 章节状态
   ========================================================================== */

.status-key,
.status-index,
.status-relation,
.correction-note {
  padding: 32px 0 0;
}

.status-key-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--gap);
}

.status-key-card {
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  border-radius: 8px;
  padding: 16px 18px 18px;
}

.status-key-card h3 {
  font-size: 17px;
}

.status-key-card.status-paused {
  border-top-color: var(--status-orange);
}

.status-key-card.status-finished {
  border-top-color: #4a6b7c;
}

.status-key-card.status-pending {
  border-top-color: var(--line-strong);
}

.status-figure {
  margin: 0 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
}

.status-figure img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.status-figure figcaption {
  padding: 10px 16px 12px;
  font-size: 13px;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
}

.status-figure-secondary {
  margin: 20px 0 0;
}

.status-figure-secondary img {
  height: 180px;
}

.status-index-table {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
}

.status-index-head,
.status-index-row {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr) 96px;
  gap: 12px;
  align-items: center;
  padding: 12px 16px;
}

.status-index-head {
  background: var(--surface-alt);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 650;
  color: var(--ink-soft);
}

.status-index-row {
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.status-index-body li:last-child {
  border-bottom: 0;
}

.idx-entry {
  font-weight: 650;
  color: var(--ink);
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.idx-genre {
  color: var(--ink-soft);
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.idx-state {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-strong);
  background: var(--surface-alt);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 650;
  justify-self: start;
}

.idx-state.state-ongoing {
  border-color: rgba(15, 122, 108, 0.4);
  background: var(--accent-soft);
  color: var(--accent);
}

.idx-state.state-paused {
  border-color: rgba(194, 106, 46, 0.35);
  background: var(--status-orange-soft);
  color: var(--status-orange);
}

.idx-state.state-finished {
  border-color: rgba(74, 107, 124, 0.35);
  background: #e8eef1;
  color: #3c5a68;
}

.idx-state.state-pending {
  border-color: var(--line-strong);
  background: var(--surface-alt);
  color: var(--ink-soft);
}

.idx-link {
  font-size: 13px;
  font-weight: 650;
  justify-self: start;
}

.status-relation-body,
.correction-body {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px 20px;
}

.status-relation-body p,
.correction-body p {
  font-size: 14px;
  color: var(--ink-soft);
}

.status-relation-body p + p,
.correction-body p + p {
  margin-top: 10px;
}

.status-relation-body .section-cta,
.correction-body .section-cta {
  margin-top: 14px;
}

/* ==========================================================================
   pages · 专题册
   ========================================================================== */

.album-wall,
.album-notes,
.album-genre-links {
  padding: 32px 0 0;
}

.album-wall-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap);
}

.album-wall .album-card {
  padding: 14px 16px 18px;
}

.album-wall .album-cover img {
  height: 150px;
}

.album-genre {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 650;
  color: var(--accent);
}

.album-note {
  margin-top: 8px;
  font-size: 14px;
  color: var(--ink-soft);
}

.album-wall .album-link {
  margin-top: 12px;
}

.album-notes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap);
}

.album-note-block {
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 18px 20px;
}

.album-note-block h3 {
  font-size: 16px;
}

.album-note-block p {
  margin-top: 8px;
  font-size: 14px;
  color: var(--ink-soft);
}

.album-status-brief {
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink);
}

.album-genre-links {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: var(--gap);
  align-items: start;
}

.album-genre-links > h2,
.album-genre-links > .section-lead {
  grid-column: 1 / -1;
}

.genre-anchor-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.genre-anchor-list a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  font-size: 14px;
}

.genre-anchor-list a:hover {
  border-color: var(--accent);
  color: var(--accent);
  text-decoration: none;
}

.album-side-note {
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  padding: 18px 20px 20px;
}

.album-side-note h3 {
  font-size: 16px;
}

.album-side-note p {
  margin-top: 8px;
  font-size: 14px;
  color: var(--ink-soft);
}

.side-note-links {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.side-note-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  font-size: 14px;
  font-weight: 650;
}

/* ==========================================================================
   pages · 阅读规范
   ========================================================================== */

.card-reading,
.status-usage,
.genre-jump,
.faq {
  padding: 32px 0 0;
}

.card-reading-layout {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(0, 1.2fr);
  gap: var(--gap);
  align-items: start;
}

.guide-figure {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
}

.guide-figure img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.guide-figure figcaption {
  padding: 10px 16px 12px;
  font-size: 13px;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
}

.reading-steps {
  display: grid;
  gap: 12px;
}

.reading-step {
  position: relative;
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 18px 16px 56px;
}

.reading-step .step-index {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 650;
}

.reading-step .step-title {
  font-size: 15px;
}

.reading-step p {
  margin-top: 6px;
  font-size: 14px;
  color: var(--ink-soft);
}

.status-usage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap);
}

.usage-card {
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  border-radius: 8px;
  padding: 16px 18px 18px;
}

.usage-card:nth-child(2) {
  border-top-color: var(--status-orange);
}

.usage-card:nth-child(3) {
  border-top-color: #4a6b7c;
}

.usage-title {
  font-size: 16px;
}

.usage-text {
  margin-top: 8px;
  font-size: 14px;
  color: var(--ink-soft);
}

.jump-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gap);
}

.jump-block {
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px 20px;
}

.jump-title {
  font-size: 16px;
}

.jump-block p {
  margin-top: 8px;
  font-size: 14px;
  color: var(--ink-soft);
}

.jump-block .jump-link {
  margin-top: 12px;
}

.faq-list {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 4px 20px;
}

.entry-note-text {
  margin-top: 10px;
  max-width: 800px;
  font-size: 14px;
  color: var(--ink-soft);
}

/* ==========================================================================
   pages · 条目维护
   ========================================================================== */

.section {
  padding: 32px 0 0;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gap);
}

.principle-card {
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px 20px;
}

.principle-card h3 {
  font-size: 16px;
}

.principle-card > p {
  margin-top: 8px;
  font-size: 14px;
  color: var(--ink-soft);
}

.principle-list {
  margin-top: 14px;
  display: grid;
  gap: 8px;
}

.principle-list li {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
  color: var(--ink);
}

.principle-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 1px;
  background: var(--accent);
}

.figure-block {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
}

.figure-block img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.figure-block figcaption {
  padding: 10px 16px 12px;
  font-size: 13px;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.feedback-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap);
}

.feedback-card {
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 18px 20px;
}

.feedback-card h3 {
  font-size: 16px;
}

.feedback-card p {
  margin-top: 8px;
  font-size: 14px;
  color: var(--ink-soft);
}

.feedback-card .text-link {
  margin-top: 12px;
}

.boundary-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gap);
}

.boundary-item {
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--line-strong);
  border-radius: 8px;
  padding: 16px 18px 18px;
}

.boundary-item h3 {
  font-size: 15px;
}

.boundary-item p {
  margin-top: 8px;
  font-size: 14px;
  color: var(--ink-soft);
}

/* ==========================================================================
   pages · 404
   ========================================================================== */

.error-main {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 56px 20px 64px;
}

.error-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px 32px 34px;
}

.error-code {
  font-family: var(--font-mono);
  font-size: 40px;
  font-weight: 650;
  line-height: 1;
  color: var(--accent);
}

.error-title {
  margin-top: 14px;
  font-size: 26px;
}

.error-desc {
  margin-top: 12px;
  max-width: 640px;
  font-size: 15px;
  color: var(--ink-soft);
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.error-links {
  margin-top: 32px;
}

.error-links-title {
  font-size: 20px;
}

.error-link-list {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.error-link-list a {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
}

.error-link-list a:hover {
  border-color: var(--accent);
  color: var(--accent);
  text-decoration: none;
}

/* ==========================================================================
   responsive · 1080px
   ========================================================================== */

@media (max-width: 1080px) {
  .hero-panels {
    grid-template-columns: 1fr;
  }

  .hero-panels .panel-update {
    order: 1;
  }

  .hero-panels .panel-map {
    order: 2;
  }

  .track-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .track-list::before {
    display: none;
  }

  .track-card::before {
    display: none;
  }

  .status-grid,
  .status-key-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .album-grid,
  .album-wall-grid,
  .album-notes-grid,
  .related-topic-list,
  .status-usage-grid,
  .feedback-grid,
  .topic-entry-list,
  .definition-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .day-card-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .genre-grid-section .genre-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .album-genre-links {
    grid-template-columns: 1fr;
  }

  .card-reading-layout {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   responsive · 760px
   ========================================================================== */

@media (max-width: 760px) {
  body {
    font-size: 14px;
  }

  .header-inner {
    padding: 0 16px;
    gap: 12px;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-left: 0;
    background: #1c252b;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 24px rgba(15, 22, 26, 0.28);
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0 16px;
  }

  .nav-list.is-open {
    max-height: 480px;
    overflow-y: auto;
    padding: 8px 16px 14px;
  }

  .nav-link {
    min-height: 48px;
    padding: 0 12px;
    border-radius: var(--radius-sm);
    font-size: 15px;
  }

  .nav-link.is-current {
    box-shadow: inset 3px 0 0 var(--accent);
  }

  .site-home .site-header {
    position: sticky;
    background: #1c252b;
  }

  .inner-main {
    padding: 16px 16px 44px;
  }

  .page-title {
    font-size: 24px;
  }

  .section-title,
  .panel-title,
  .section-head h2 {
    font-size: 19px;
  }

  .hero-map {
    padding: calc(var(--header-h) + 18px) 16px 30px;
  }

  .hero-media img {
    height: 220px;
  }

  .hero-copy {
    position: static;
    padding: 20px 18px;
    background: #202c33;
  }

  .hero-copy h1 {
    font-size: 24px;
  }

  .hero-lead {
    font-size: 14px;
  }

  .hero-actions .btn {
    flex: 1 1 auto;
  }

  .update-track,
  .chapter-status,
  .topic-album,
  .reading-guide,
  .entry-note {
    padding-left: 16px;
    padding-right: 16px;
  }

  .update-row {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 6px 12px;
    padding: 10px 0;
  }

  .update-row .update-genre {
    grid-column: 2;
  }

  .update-row .status-tag {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .genre-grid,
  .genre-grid-section .genre-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .track-list,
  .status-grid,
  .status-key-grid,
  .album-grid,
  .album-wall-grid,
  .album-notes-grid,
  .related-topic-list,
  .status-usage-grid,
  .feedback-grid,
  .topic-entry-list,
  .definition-list,
  .day-card-list,
  .principles-grid,
  .boundary-list,
  .jump-layout,
  .guide-columns,
  .error-link-list {
    grid-template-columns: 1fr;
  }

  .track-nodes {
    flex-direction: column;
    gap: 8px;
    border-bottom: 0;
  }

  .track-node {
    min-width: 0;
  }

  .track-node a {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    min-height: 52px;
  }

  .status-index-head {
    display: none;
  }

  .status-index-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 6px 12px;
    padding: 14px 16px;
  }

  .status-index-row .idx-entry {
    grid-column: 1;
    font-size: 15px;
  }

  .status-index-row .idx-genre {
    grid-column: 2;
    text-align: right;
  }

  .status-index-row .idx-state {
    grid-column: 1;
  }

  .status-index-row .idx-link {
    grid-column: 2;
    justify-self: end;
  }

  .status-figure img {
    height: 170px;
  }

  .status-figure-secondary img {
    height: 150px;
  }

  .guide-figure img {
    height: 190px;
  }

  .figure-block img {
    height: 200px;
  }

  .reading-step {
    padding: 14px 16px 14px 52px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 30px 16px 20px;
  }

  .footer-brand {
    padding-right: 0;
  }

  .footer-desc {
    max-width: none;
  }

  .footer-copy {
    padding: 14px 16px 20px;
  }

  .related-links {
    padding: 14px 16px 0;
  }

  .error-main {
    padding: 36px 16px 48px;
  }

  .error-panel {
    padding: 24px 20px 26px;
  }

  .error-code {
    font-size: 32px;
  }

  .error-title {
    font-size: 21px;
  }
}

/* ==========================================================================
   responsive · 420px 及以下
   ========================================================================== */

@media (max-width: 420px) {
  .brand-text {
    font-size: 15px;
  }

  .genre-grid,
  .genre-grid-section .genre-grid {
    grid-template-columns: 1fr;
  }

  .hero-media img {
    height: 180px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .title-quicklinks,
  .title-shortcuts,
  .title-links,
  .title-actions,
  .title-quick-links {
    flex-direction: column;
    align-items: stretch;
  }

  .quicklink,
  .quick-link,
  .shortcut-link {
    justify-content: center;
  }
}
