/* ============================================================
   未来工位 · 设计令牌
   主题：一个人的 AI 工作台 —— 纸张的暖 + 工位钢的冷
   ============================================================ */

:root {
  /* 纸面 */
  --paper: #f5f1e8;
  --paper-deep: #eae3d3;
  --sheet: #fffdf7;
  /* 墨色 */
  --ink: #1f2226;
  --ink-soft: #55606b;
  --muted: #8a8578;
  /* 工位钢青（主色） */
  --steel: #1e5a72;
  --steel-dark: #14404f;
  --steel-mist: #dfe9ec;
  /* 警示红（仅状态与强调） */
  --signal: #c2402a;
  /* 线条 */
  --line: #d9d0bd;
  --line-strong: #b9ad94;

  --shadow-hard: 6px 6px 0 rgba(31, 34, 38, 0.16);
  --mono: ui-monospace, "SF Mono", "Cascadia Code", "JetBrains Mono", Consolas, monospace;
  --serif: "Songti SC", "STSong", "Noto Serif CJK SC", "Source Han Serif SC", Georgia, "Times New Roman", serif;
  --sans: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", system-ui, sans-serif;
  --max: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  background:
    linear-gradient(rgba(31, 34, 38, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 34, 38, 0.028) 1px, transparent 1px),
    radial-gradient(1100px 480px at 82% -8%, rgba(30, 90, 114, 0.09), transparent 62%),
    var(--paper);
  background-size: 44px 44px, 44px 44px, auto, auto;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
}

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

img,
svg {
  display: block;
}

button,
input {
  font: inherit;
}

::selection {
  background: var(--steel);
  color: var(--sheet);
}

:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 2px;
}

/* ===== 顶部导航 ===== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(245, 241, 232, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(var(--max), calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: none;
  background: var(--signal);
  box-shadow: 2px 2px 0 var(--steel-dark);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  position: relative;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.nav-link::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: var(--steel);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--steel-dark);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.search-shell {
  justify-self: end;
  width: min(280px, 100%);
  height: 40px;
  display: grid;
  grid-template-columns: 18px 1fr auto;
  align-items: center;
  gap: 9px;
  padding: 0 11px;
  background: rgba(255, 253, 247, 0.85);
  border: 1px solid var(--line);
  color: var(--muted);
}

.search-shell svg,
.button svg,
.icon-button svg,
.socials svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.search-shell input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 13px;
}

.search-shell kbd {
  border: 1px solid var(--line);
  padding: 1px 6px;
  background: var(--paper);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.4;
}

.section-wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.section-kicker {
  display: inline-block;
  color: var(--steel-dark);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===== Hero ===== */

.hero {
  min-height: 680px;
  padding: 60px 0 56px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
  align-items: center;
  gap: 64px;
}

.live-strip {
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  background: var(--sheet);
  box-shadow: 3px 3px 0 rgba(31, 34, 38, 0.12);
}

.live-dot {
  width: 8px;
  height: 8px;
  flex: none;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 0 rgba(194, 64, 42, 0.45);
  animation: live-pulse 2.2s infinite;
}

.live-dot.small {
  width: 7px;
  height: 7px;
}

@keyframes live-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(194, 64, 42, 0.45);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(194, 64, 42, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(194, 64, 42, 0);
  }
}

.live-text {
  color: var(--steel-dark);
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero h1 {
  max-width: 620px;
  margin: 14px 0 0;
  font-family: var(--serif);
  font-size: clamp(44px, 5.6vw, 74px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero h1 em {
  position: relative;
  font-style: normal;
  white-space: nowrap;
}

.hero h1 em::after {
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 0.08em;
  height: 0.32em;
  background: linear-gradient(90deg, rgba(30, 90, 114, 0.28), rgba(194, 64, 42, 0.22));
  content: "";
  z-index: -1;
}

.hero-copy p {
  max-width: 580px;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: 17.5px;
  line-height: 2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translate(-2px, -2px);
}

.button.primary {
  background: var(--steel);
  border-color: var(--steel-dark);
  color: #f5f1e8;
  box-shadow: 5px 5px 0 var(--ink);
}

.button.primary:hover {
  box-shadow: 7px 7px 0 var(--ink);
}

.button.secondary {
  background: var(--sheet);
  box-shadow: 5px 5px 0 rgba(31, 34, 38, 0.16);
}

.button.secondary:hover {
  box-shadow: 7px 7px 0 rgba(31, 34, 38, 0.16);
}

.stats {
  width: min(560px, 100%);
  margin: 40px 0 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats div {
  padding: 15px 12px 14px 0;
  border-right: 1px solid var(--line);
  min-width: 0;
}

.stats div:last-child {
  border-right: 0;
}

.stats dt {
  font-family: var(--serif);
  font-size: clamp(18px, 2.2vw, 23px);
  font-weight: 700;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.stats dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: clamp(11px, 1.3vw, 12px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ===== 工位工作票（签名元素） ===== */

.ticket {
  position: relative;
  padding: 0 30px 26px;
  background:
    linear-gradient(var(--sheet), var(--sheet)) padding-box,
    repeating-linear-gradient(90deg, var(--line-strong) 0 10px, transparent 10px 20px) border-box;
  border: 1px solid transparent;
  box-shadow: 10px 12px 0 rgba(30, 90, 114, 0.22);
  transform: rotate(0.6deg);
}

/* 打孔边 */
.ticket::before,
.ticket::after {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 14px;
  content: "";
  background-image: radial-gradient(circle 4px at 7px 10px, var(--paper) 98%, transparent);
  background-size: 14px 22px;
  background-repeat: repeat-y;
}

.ticket::before {
  left: -7px;
}

.ticket::after {
  right: -7px;
}

.ticket-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin: 0 -30px;
  padding: 12px 30px;
  border-bottom: 1px dashed var(--line-strong);
  color: var(--steel-dark);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.ticket-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--signal);
}

.ticket-title {
  margin: 20px 0 4px;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.15;
}

.ticket-section {
  margin-top: 18px;
}

.ticket-label {
  display: block;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ticket-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
  transition: background 140ms ease, padding 140ms ease;
}

.ticket-row:hover {
  background: var(--steel-mist);
  padding-left: 8px;
  padding-right: 8px;
}

.ticket-row-name {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
}

.ticket-row-url {
  color: var(--steel-dark);
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 700;
  white-space: nowrap;
}

.paper-entry {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
}

.paper-entry time {
  color: var(--signal);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
}

.paper-entry a {
  font-family: var(--serif);
  font-size: 16.5px;
  line-height: 1.5;
}

.paper-entry a:hover {
  color: var(--steel-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ticket-wechat {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  padding: 14px;
  background: var(--paper);
  border: 1px dashed var(--line-strong);
}

.ticket-wechat img {
  width: 72px;
  height: 72px;
  flex: none;
  border: 1px solid var(--line);
  background: #fff;
  object-fit: contain;
  padding: 2px;
}

.ticket-wechat-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.ticket-wechat-copy strong {
  font-family: var(--serif);
  font-size: 17px;
}

.ticket-wechat-copy span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11.5px;
  line-height: 1.6;
}

/* ===== 通用区块头 ===== */

.section-heading,
.toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--ink);
}

.section-heading h2,
.toolbar h2 {
  margin: 6px 0 0;
  font-family: var(--serif);
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1.1;
  font-weight: 700;
}

.section-heading p,
.toolbar p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.section-heading a {
  color: var(--steel-dark);
  font-size: 14px;
  font-weight: 800;
}

.section-heading a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.works,
.featured,
.article-section {
  padding: 40px 0 36px;
}

/* ===== 作品 ===== */

.work-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.work-card {
  min-height: 268px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  background: rgba(255, 253, 247, 0.9);
  border: 1px solid var(--line);
  border-top: 3px solid var(--steel);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.work-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-hard);
}

.work-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
}

.work-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--steel-dark);
  font-weight: 800;
  white-space: nowrap;
}

.work-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.work-card h3 {
  margin: 16px 0 0;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.25;
}

.work-card p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.8;
}

.work-tags {
  margin: auto 0 0;
  padding: 16px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.work-tags li {
  padding: 2px 9px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--steel-dark);
  font-family: var(--mono);
  font-size: 12px;
}

/* ===== 精选笔记 ===== */

.feature-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.feature-card,
.article-row {
  background: rgba(255, 253, 247, 0.88);
  border: 1px solid var(--line);
}

.feature-card {
  position: relative;
  min-height: 250px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.feature-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 34px;
  height: 3px;
  background: var(--signal);
  content: "";
}

.feature-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-hard);
}

.feature-card time,
.article-row > time {
  color: var(--steel-dark);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
}

.feature-card h3,
.row-content h3 {
  margin: 14px 0 0;
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.35;
  font-weight: 700;
}

.feature-card p,
.row-content p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.feature-card span {
  margin-top: auto;
  padding-top: 14px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12.5px;
}

/* ===== 文章区 ===== */

.view-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--sheet);
  color: var(--muted);
  cursor: pointer;
  transition: background 140ms ease, color 140ms ease;
}

.icon-button:hover,
.icon-button.is-active {
  background: var(--steel);
  border-color: var(--steel);
  color: #f5f1e8;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.chip {
  min-width: 48px;
  height: 34px;
  padding: 0 15px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.72);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: background 140ms ease, color 140ms ease;
}

.chip:hover,
.chip.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--sheet);
}

.article-list {
  margin-top: 20px;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.article-list[data-layout="grid"] {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  border-top: 0;
}

.article-row {
  display: grid;
  grid-template-columns: 118px 1fr auto;
  align-items: start;
  gap: 22px;
  min-height: 128px;
  padding: 24px 0;
  border-width: 0 0 1px;
  background: transparent;
  transition: background 140ms ease, padding 140ms ease;
}

.article-row:hover {
  background: rgba(223, 233, 236, 0.45);
  padding-left: 12px;
  padding-right: 12px;
}

.article-list[data-layout="grid"] .article-row {
  grid-template-columns: 1fr;
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.85);
}

.article-list[data-layout="grid"] .article-row:hover {
  background: var(--steel-mist);
}

.article-row > time {
  padding-top: 5px;
}

.row-content h3 {
  margin-top: 0;
}

.row-content h3 a:hover {
  color: var(--steel-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.meta {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.meta span {
  padding: 2px 8px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.65);
  color: var(--steel-dark);
  font-family: var(--mono);
  font-size: 12px;
}

.read-time {
  justify-self: end;
  color: var(--muted);
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 12.5px;
}

.article-list[data-layout="grid"] .read-time {
  justify-self: start;
}

.empty-state {
  margin: 26px 0 0;
  padding: 24px;
  border: 1px dashed var(--steel);
  color: var(--muted);
  text-align: center;
}

/* ===== 关于 ===== */

.about {
  padding: 48px 0 26px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 52px;
  align-items: start;
}

.about-copy h2 {
  margin: 8px 0 0;
  font-family: var(--serif);
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1.15;
}

.about-copy > p {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.about-contact {
  font-family: var(--mono);
  font-size: 14px;
}

.about-contact a {
  color: var(--steel-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.wechat-card {
  position: relative;
  padding: 28px;
  background: var(--sheet);
  border: 1px solid var(--line);
  box-shadow: 8px 8px 0 rgba(30, 90, 114, 0.28);
  text-align: center;
}

.wechat-card::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--steel) 0 18px,
    var(--sheet) 18px 26px,
    var(--signal) 26px 44px,
    var(--sheet) 44px 52px
  );
  content: "";
}

.wechat-card h3 {
  margin: 10px 0 0;
  font-family: var(--serif);
  font-size: 28px;
}

.wechat-card > p {
  max-width: 380px;
  margin: 10px auto 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.wechat-qr {
  width: 168px;
  height: 168px;
  margin: 20px auto 0;
  border: 1px solid var(--line);
  background: #fff;
  object-fit: contain;
  padding: 4px;
}

.wechat-hint {
  font-family: var(--mono);
  font-size: 12px;
}

/* ===== 页脚 ===== */

.site-footer {
  margin-top: 40px;
  border-top: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.65);
}

.footer-inner {
  width: min(var(--max), calc(100% - 40px));
  min-height: 112px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.footer-inner p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.icp-record {
  margin: 0;
  padding: 0 0 18px;
  text-align: center;
  font-size: 13px;
}

.icp-record a {
  color: var(--muted);
  text-decoration: none;
}

.icp-record a:hover {
  color: var(--ink-soft);
  text-decoration: underline;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--ink-soft);
  font-size: 14px;
}

.footer-inner nav a:hover {
  color: var(--steel-dark);
}

.socials {
  justify-self: end;
  display: flex;
  gap: 18px;
  color: var(--ink);
}

.socials a {
  display: grid;
  place-items: center;
}

.socials a:hover {
  color: var(--steel-dark);
}

[hidden] {
  display: none !important;
}

/* ===== 响应式 ===== */

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px 0;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .search-shell {
    justify-self: stretch;
    width: 100%;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 38px;
    padding-top: 40px;
  }

  .ticket {
    transform: none;
  }

  .feature-grid,
  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-list[data-layout="grid"] {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding: 24px 0;
  }

  .footer-inner nav,
  .socials {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .section-wrap,
  .header-inner,
  .footer-inner {
    width: min(100% - 28px, var(--max));
  }

  .hero h1 {
    font-size: 38px;
  }

  .live-text {
    white-space: normal;
  }

  .stats,
  .feature-grid,
  .work-grid {
    grid-template-columns: 1fr;
  }

  .stats div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stats div:last-child {
    border-bottom: 0;
  }

  .ticket {
    padding: 0 22px 22px;
    box-shadow: 6px 8px 0 rgba(30, 90, 114, 0.22);
  }

  .ticket-head {
    margin: 0 -22px;
    padding: 12px 22px;
  }

  .ticket-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .section-heading,
  .toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .read-time {
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .live-dot {
    animation: none;
  }

  .button,
  .work-card,
  .feature-card,
  .article-row,
  .ticket-row {
    transition: none;
  }
}
