/* ─────────────────────────────────────────
   小言讲粤语 · v4
   暮蓝 · 青瓷 · 铜赭 · 阅读优先
   ───────────────────────────────────────── */

:root {
  /* 底色：冷雾蓝白 */
  --paper: #edf1f4;
  --paper-deep: #dfe6eb;
  --surface: #f7f9fb;
  --surface-raised: #ffffff;

  /* 文字：墨蓝灰 */
  --ink: #1a2328;
  --ink-body: #364149;
  --ink-soft: #5a6a73;
  --ink-faint: #92a0aa;

  /* 品牌：青瓷 */
  --brand: #2a6369;
  --brand-deep: #1e4a4f;
  --brand-light: #d8eaec;
  --brand-glow: rgba(42, 99, 105, 0.1);

  /* 强调：铜赭（歇后语后半句） */
  --accent: #b86838;
  --accent-deep: #964f28;
  --accent-glow: rgba(184, 104, 56, 0.1);

  /* 点缀：旧金 */
  --gold: #9a8456;

  --rule: rgba(26, 35, 42, 0.08);
  --rule-strong: rgba(26, 35, 42, 0.14);

  --serif: "Songti SC", "STSong", "Noto Serif SC", "SimSun", serif;
  --sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;

  --wrap: 720px;
  --radius: 12px;
  --radius-lg: 18px;
  --shadow: 0 1px 2px rgba(22, 38, 48, 0.04), 0 8px 28px rgba(22, 38, 48, 0.07);
  --shadow-hover: 0 2px 4px rgba(22, 38, 48, 0.06), 0 14px 40px rgba(22, 38, 48, 0.1);
  --ease: cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  font-size: 17px;
  -webkit-text-size-adjust: 100%;
  hanging-punctuation: first last;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.78;
  color: var(--ink-body);
  background-color: var(--paper);
  background-image:
    radial-gradient(ellipse 100% 70% at 80% -20%, rgba(42, 99, 105, 0.07), transparent 55%),
    radial-gradient(ellipse 80% 50% at 10% 100%, rgba(184, 104, 56, 0.05), transparent 50%),
    linear-gradient(180deg, #f2f5f7 0%, var(--paper) 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-bottom: env(safe-area-inset-bottom, 0);
}

::selection {
  background: var(--brand-light);
  color: var(--brand-deep);
}

a:focus-visible,
.cta:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.wrap {
  width: min(var(--wrap), calc(100% - 2rem));
  margin-inline: auto;
  padding-inline: env(safe-area-inset-left, 0) env(safe-area-inset-right, 0);
}

.page-home .wrap {
  width: min(var(--wrap), calc(100% - 2rem));
}

a { color: inherit; text-decoration: none; }

/* ── Masthead ── */
.masthead {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 249, 251, 0.9);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--rule);
  padding-top: env(safe-area-inset-top, 0);
}

.masthead-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0 0.9rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
}

.logo-seal {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--surface-raised);
  background: linear-gradient(145deg, var(--brand) 0%, var(--brand-deep) 100%);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 3px 12px rgba(42, 99, 105, 0.25);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.logo:hover .logo-seal {
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 6px 16px rgba(42, 99, 105, 0.32);
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.logo-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink);
  line-height: 1.25;
}

.logo-sub {
  font-size: 0.625rem;
  letter-spacing: 0.22em;
  color: var(--ink-faint);
}

.masthead-rule {
  height: 3px;
  background:
    linear-gradient(90deg, transparent, var(--brand-light) 20%, var(--brand) 50%, var(--gold) 80%, transparent);
  opacity: 0.7;
}

.nav {
  display: flex;
  gap: 0.25rem;
  padding: 0.2rem;
  background: var(--brand-glow);
  border-radius: 999px;
  border: 1px solid rgba(42, 99, 105, 0.12);
}

.nav a {
  padding: 0.45rem 1rem;
  min-height: 2.25rem;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  transition: all 0.2s var(--ease);
}

.nav a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.65);
}

.nav a[aria-current="page"] {
  color: var(--surface-raised);
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  box-shadow: 0 2px 8px rgba(42, 99, 105, 0.22);
}

/* ── Typography ── */
.main {
  padding: 2.5rem 0 4.5rem;
}

.kicker {
  margin: 0 0 1rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand);
}

.display {
  margin: 0 0 0.85rem;
  font-family: var(--serif);
  font-size: clamp(2.125rem, 5.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.06em;
  color: var(--ink);
}

.display-sm {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
}

.lede {
  margin: 0;
  max-width: 28em;
  font-size: 0.9375rem;
  line-height: 1.85;
  color: var(--ink-soft);
}

.section-label {
  margin: 0 0 1.25rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 1.25rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--brand);
  border-bottom: 1px solid rgba(42, 99, 105, 0.25);
  padding-bottom: 0.1rem;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.text-link:hover {
  color: var(--brand-deep);
  border-bottom-color: var(--brand);
}

.empty {
  padding: 3rem 1.5rem;
  text-align: center;
  color: var(--ink-faint);
  font-size: 0.9375rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px dashed var(--rule-strong);
}

/* ── Home: Spotlight ── */
.spotlight {
  margin-bottom: 2.75rem;
}

.spotlight-card {
  position: relative;
  padding: 2.25rem 2rem 2rem;
  background: var(--surface-raised);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.spotlight-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--gold) 55%, var(--accent));
}

.spotlight-card::after {
  content: "十";
  position: absolute;
  right: 1.25rem;
  top: 1rem;
  font-family: var(--serif);
  font-size: 5.5rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(42, 99, 105, 0.04);
  pointer-events: none;
  user-select: none;
}

.spotlight-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.spotlight-meta li {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  padding: 0.45rem 0.85rem;
  font-size: 0.75rem;
  color: var(--ink-soft);
  background: var(--brand-light);
  border: 1px solid rgba(42, 99, 105, 0.12);
  border-radius: 999px;
}

.spotlight-meta strong {
  font-family: var(--serif);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--brand-deep);
}

.preview-list {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  border-top: 1px solid var(--rule);
}

.preview-item {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--rule);
  transition: background 0.15s ease;
}

.preview-item:hover {
  background: linear-gradient(90deg, var(--brand-glow), transparent 70%);
  margin-inline: -0.75rem;
  padding-inline: 0.75rem;
  border-radius: 6px;
}

.preview-idx {
  flex-shrink: 0;
  width: 1.75rem;
  font-family: var(--serif);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand);
  font-variant-numeric: tabular-nums;
  opacity: 0.75;
}

.preview-line {
  font-family: var(--serif);
  font-size: 1.0625rem;
  line-height: 1.55;
}

.pq-a { font-weight: 700; color: var(--ink); }
.pq-sep { margin: 0 0.2em; color: var(--ink-faint); font-weight: 400; }
.pq-b { font-weight: 700; color: var(--accent); }

.spotlight-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
  margin-top: 1.75rem;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.75rem 1.65rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--surface-raised);
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(42, 99, 105, 0.28);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(42, 99, 105, 0.35);
}

.cta span::after {
  content: " →";
  transition: transform 0.2s ease;
  display: inline-block;
}

.cta:hover span::after {
  transform: translateX(3px);
}

.more-hint {
  font-size: 0.8125rem;
  color: var(--ink-faint);
  letter-spacing: 0.04em;
}

/* ── Home: Timeline ── */
.timeline {
  margin-bottom: 1rem;
}

.timeline-list,
.archive-list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.timeline-list::before {
  content: "";
  position: absolute;
  left: 1.65rem;
  top: 0.75rem;
  bottom: 0.75rem;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--brand-light), transparent);
}

.timeline-list a {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.85rem 0.5rem;
  min-height: 3.25rem;
  border-radius: var(--radius);
  transition: background 0.18s ease;
  -webkit-tap-highlight-color: transparent;
}

.timeline-list a:hover {
  background: rgba(255, 255, 255, 0.55);
}

.timeline-list time {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 3.3rem;
  padding: 0.45rem 0.35rem;
  background: var(--surface-raised);
  border: 1px solid rgba(42, 99, 105, 0.12);
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(22, 38, 48, 0.05);
}

.tl-day {
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--brand-deep);
}

.tl-ym {
  font-size: 0.625rem;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
}

.timeline-body {
  flex: 1;
  min-width: 0;
  padding-top: 0.15rem;
}

.timeline-issue {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--brand);
}

.timeline-text {
  display: block;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.timeline-arrow {
  flex-shrink: 0;
  align-self: center;
  font-size: 0.875rem;
  color: var(--ink-faint);
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.2s var(--ease);
}

.timeline-list a:hover .timeline-arrow,
.archive-list a:hover .timeline-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--brand);
}

.timeline-list a:active,
.archive-list a:active {
  background: var(--brand-glow);
}

/* ── Archive ── */
.page-head {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--rule-strong);
}

.archive-list a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0.5rem;
  border-bottom: 1px solid var(--rule);
  border-radius: var(--radius);
  transition: background 0.18s ease, box-shadow 0.18s ease;
}

.archive-list a:hover {
  background: var(--surface-raised);
  box-shadow: var(--shadow);
  margin-inline: -0.5rem;
  padding-inline: 0.75rem;
}

.archive-date {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 3.5rem;
  padding: 0.5rem;
  background: var(--brand-light);
  border: 1px solid rgba(42, 99, 105, 0.12);
  border-radius: 8px;
}

.archive-day {
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--brand-deep);
}

.archive-ym {
  font-size: 0.625rem;
  letter-spacing: 0.04em;
  color: var(--ink-faint);
}

.archive-info {
  flex: 1;
  min-width: 0;
}

.archive-issue {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--brand);
}

.archive-preview {
  display: block;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* ── Article ── */
.pager {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-top: 2.5rem;
  margin-bottom: 0;
}

.pager--prev-only .pager-cell {
  grid-column: 1;
}

.pager--next-only .pager-cell {
  grid-column: 2;
}

.pager-cell {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  min-width: 0;
  min-height: 3rem;
  padding: 0.65rem 0.95rem;
  background: var(--surface-raised);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
  -webkit-tap-highlight-color: transparent;
}

a.pager-cell:hover {
  border-color: rgba(42, 99, 105, 0.28);
  box-shadow: var(--shadow-hover);
  background: linear-gradient(135deg, var(--surface-raised) 0%, var(--brand-light) 100%);
}

a.pager-cell:active {
  transform: scale(0.98);
}

.pager-prev {
  justify-content: flex-start;
  text-align: left;
}

.pager-next {
  justify-content: flex-end;
  text-align: right;
}

.pager-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 1.625rem;
  height: 1.625rem;
  font-size: 1.125rem;
  line-height: 1;
  color: var(--brand);
  background: var(--brand-light);
  border-radius: 50%;
  font-weight: 600;
}

.pager-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.pager-label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--ink-faint);
}

.pager-date {
  font-family: var(--serif);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-deep);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.issue-head {
  margin-bottom: 2rem;
  padding: 0 0 1.75rem;
  border-bottom: 2px solid var(--brand);
}

.issue-title {
  margin: 0 0 0.4rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 2.625rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  color: var(--ink);
}

.issue-sub {
  margin: 0;
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  color: var(--ink-faint);
}

.phrase-list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: phrase;
}

.phrase {
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--rule);
}

.phrase:first-child {
  padding-top: 0.5rem;
}

.phrase:last-child {
  border-bottom: none;
}

.phrase-row {
  display: flex;
  gap: 1.15rem;
  align-items: flex-start;
}

.phrase-idx {
  flex-shrink: 0;
  width: 2rem;
  padding-top: 0.35rem;
  font-family: var(--serif);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brand);
  font-variant-numeric: tabular-nums;
  opacity: 0.85;
}

.phrase-main {
  flex: 1;
  min-width: 0;
}

.phrase-line {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.1875rem;
  line-height: 1.55;
}

.phrase-a { font-weight: 700; color: var(--ink); }
.phrase-sep { margin: 0 0.15em; color: var(--ink-faint); font-weight: 400; }
.phrase-b { font-weight: 700; color: var(--accent); }

.phrase-detail {
  margin-top: 0.75rem;
  padding: 0.75rem 0.9rem;
  background: var(--brand-light);
  border: 1px solid rgba(42, 99, 105, 0.1);
  border-radius: 8px;
}

.phrase-jyut,
.phrase-remark,
.phrase-mean {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 0.65rem;
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.65;
}

.phrase-remark + .phrase-jyut,
.phrase-jyut + .phrase-remark,
.phrase-mean + .phrase-jyut,
.phrase-jyut + .phrase-mean,
.phrase-remark + .phrase-mean,
.phrase-mean + .phrase-remark {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px dashed var(--rule);
}

.meta-label {
  flex-shrink: 0;
  padding: 0.1rem 0.45rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-deep);
  background: rgba(42, 99, 105, 0.08);
  border-radius: 3px;
}

.jyut-text {
  color: var(--ink-soft);
  font-size: 0.8125rem;
  letter-spacing: 0.03em;
  word-break: break-word;
}

.remark-text {
  color: var(--brand-deep);
  font-size: 0.8125rem;
}

.mean-text {
  flex: 1;
  min-width: 0;
  color: var(--ink-body);
}

.note {
  display: flex;
  gap: 0.85rem;
  margin-top: 2.5rem;
  padding: 1.15rem 1.25rem;
  background: var(--surface-raised);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--brand);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow);
}

.note-icon {
  flex-shrink: 0;
  font-size: 1.125rem;
  line-height: 1.5;
}

.note-label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--brand);
}

.note-body p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* ── Footer ── */
.site-foot {
  margin-top: 2rem;
  padding: 0 0 calc(1.5rem + env(safe-area-inset-bottom, 0));
  background: linear-gradient(180deg, var(--surface) 0%, var(--paper-deep) 100%);
  border-top: 1px solid var(--rule-strong);
}

.follow-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
  padding: 2rem 0 1.25rem;
}

.follow-brand {
  margin: 0 0 0.5rem;
  font-family: var(--serif);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink);
}

.follow-desc {
  margin: 0 0 0.85rem;
  max-width: 26em;
  font-size: 0.8125rem;
  line-height: 1.75;
  color: var(--ink-soft);
}

.follow-desc strong {
  color: var(--ink);
  font-weight: 600;
}

.follow-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.follow-tags li {
  padding: 0.22rem 0.55rem;
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  color: var(--brand-deep);
  background: var(--brand-light);
  border: 1px solid rgba(42, 99, 105, 0.12);
  border-radius: 4px;
}

.follow-qr {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem;
  background: var(--surface-raised);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.follow-qr img {
  display: block;
  width: 6.5rem;
  height: 6.5rem;
  border-radius: 6px;
}

.follow-qr span {
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  color: var(--ink-faint);
}

.foot-legal {
  padding: 0.75rem 0 0.25rem;
  text-align: center;
}

.foot-icp,
.foot-beian,
.foot-copy {
  margin: 0 0 0.35rem;
  font-size: 0.6875rem;
  color: var(--ink-faint);
  letter-spacing: 0.04em;
  line-height: 1.6;
}

.foot-copy {
  margin-bottom: 0;
  letter-spacing: 0.06em;
}

.foot-icp a,
.foot-beian-link {
  color: var(--ink-faint);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.foot-icp a:hover,
.foot-beian-link:hover {
  color: var(--brand);
}

.foot-beian-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.foot-beian-link img {
  display: block;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  opacity: 0.85;
}

/* ── Responsive / H5 ── */
@media (max-width: 820px) {
  .wrap {
    width: min(var(--wrap), calc(100% - 1.5rem));
  }
}

@media (max-width: 560px) {
  html { font-size: 16px; }

  .masthead-inner {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0 0.65rem;
  }

  .logo-sub {
    display: none;
  }

  .logo-seal {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1rem;
  }

  .logo-title {
    font-size: 1.125rem;
  }

  .nav {
    margin-left: auto;
  }

  .nav a {
    padding: 0.4rem 0.85rem;
    min-height: 2.125rem;
    font-size: 0.75rem;
  }

  .main {
    padding-block: 1.75rem 2.5rem;
  }

  .spotlight {
    margin-bottom: 2rem;
  }

  .spotlight-card {
    padding: 1.35rem 1.1rem 1.25rem;
    border-radius: var(--radius);
  }

  .spotlight-card::after {
    font-size: 3.5rem;
    right: 0.5rem;
    top: 0.75rem;
  }

  .display {
    font-size: 1.75rem;
  }

  .spotlight-meta {
    gap: 0.4rem;
  }

  .spotlight-meta li {
    padding: 0.35rem 0.65rem;
    font-size: 0.6875rem;
  }

  .preview-item {
    gap: 0.6rem;
    padding: 0.75rem 0;
  }

  .preview-line {
    font-size: 0.9375rem;
  }

  .spotlight-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta {
    width: 100%;
    min-height: 3rem;
    font-size: 0.9375rem;
  }

  .more-hint {
    text-align: center;
  }

  .timeline-list::before {
    left: 1.45rem;
  }

  .timeline-list time {
    width: 2.85rem;
    padding: 0.35rem 0.25rem;
  }

  .tl-day {
    font-size: 1rem;
  }

  .timeline-text {
    font-size: 0.8125rem;
  }

  .timeline-arrow {
    opacity: 1;
    transform: none;
    color: var(--ink-faint);
  }

  .follow-panel {
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
    padding: 1.5rem 0 1rem;
  }

  .follow-qr {
    flex-direction: row;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
  }

  .follow-qr img {
    width: 5.5rem;
    height: 5.5rem;
  }

  .follow-qr span {
    align-self: center;
  }

  .archive-list a {
    padding: 0.85rem 0.35rem;
  }

  .archive-list a:hover {
    margin-inline: -0.35rem;
    padding-inline: 0.5rem;
  }

  .pager {
    gap: 0.45rem;
    margin-top: 2rem;
  }

  .pager-cell {
    min-height: 2.375rem;
    padding: 0.45rem 0.7rem;
    gap: 0.45rem;
    border-radius: calc(var(--radius) - 2px);
    box-shadow: none;
  }

  .pager-icon {
    width: 1.375rem;
    height: 1.375rem;
    font-size: 0.9375rem;
  }

  .pager-label {
    font-size: 0.5625rem;
    letter-spacing: 0.1em;
  }

  .pager-date {
    font-size: 0.8125rem;
  }

  .issue-title {
    font-size: 1.625rem;
  }

  .phrase-line {
    font-size: 1.0625rem;
  }

  .phrase-detail {
    padding: 0.65rem 0.75rem;
  }
}

@media (hover: none) {
  .timeline-list a:hover,
  .archive-list a:hover {
    background: transparent;
    box-shadow: none;
    margin-inline: 0;
    padding-inline: 0.5rem;
  }

  .timeline-arrow {
    opacity: 1;
    transform: none;
  }

  .preview-item:hover {
    background: transparent;
    margin-inline: 0;
    padding-inline: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
