.dashboard-page {
  max-width: 1680px;
  padding-top: 22px;
}

.desk-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 16px;
}

.desk-heading h1 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(1.55rem, 2vw, 2.05rem);
  font-weight: 800;
  letter-spacing: -.04em;
}

.desk-heading > div:first-child > p:last-child {
  margin: 5px 0 0;
  color: var(--ink-500);
  font-size: .78rem;
}

.desk-heading-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
}

.deadline-card {
  min-width: 164px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 12px;
  padding: 8px 11px;
  color: var(--ink-500);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
  box-shadow: var(--shadow-sm);
  font-size: .59rem;
}

.deadline-card strong {
  grid-row: 1 / 3;
  grid-column: 2;
  align-self: center;
  color: var(--navy-900);
  font-size: .82rem;
  font-variant-numeric: tabular-nums;
}

.deadline-card small {
  font-size: .56rem;
}

.desk-filters {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr)) minmax(180px, 1.35fr) auto;
  align-items: end;
  gap: 9px;
  margin-bottom: 14px;
  padding: 11px;
}

.desk-filters label {
  min-width: 0;
}

.desk-filters label > span {
  display: block;
  margin: 0 0 5px 2px;
  color: var(--ink-500);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.desk-filters .app-select,
.desk-filters .app-input {
  min-height: 37px;
  padding-top: 7px;
  padding-bottom: 7px;
  font-size: .7rem;
}

.desk-filters .filter-search i {
  top: calc(50% + 9px);
}

.desk-filters .filter-button {
  height: 37px;
  box-shadow: none;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 300px minmax(540px, 1fr) 226px;
  align-items: stretch;
  gap: 14px;
}

.story-queue,
.editor-panel,
.workflow-rail {
  min-width: 0;
  min-height: 720px;
  overflow: hidden;
}

.story-queue {
  display: flex;
  flex-direction: column;
}

.queue-header {
  min-height: 61px;
  padding: 12px 13px;
}

.queue-count {
  margin-left: 4px;
  padding: 2px 6px;
  color: var(--ink-500);
  background: #edf2f5;
  border-radius: 999px;
  font-size: .58rem;
  font-weight: 700;
}

.queue-sort {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px;
  color: var(--ink-500);
  background: transparent;
  border: 0;
  border-radius: 6px;
  font-size: .59rem;
  font-weight: 700;
}

.queue-sort:hover {
  color: var(--navy-900);
  background: #f1f5f7;
}

.queue-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 10px;
  border-bottom: 1px solid var(--line);
}

.queue-tabs button {
  min-height: 37px;
  padding: 8px 3px;
  color: var(--ink-500);
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  font-size: .58rem;
  font-weight: 800;
}

.queue-tabs button.active {
  color: var(--emerald-700);
  border-bottom-color: var(--emerald-600);
}

.queue-tabs button span {
  margin-left: 2px;
  padding: 1px 4px;
  background: #edf2f5;
  border-radius: 8px;
  font-size: .52rem;
}

.story-list {
  flex: 1;
  min-height: 0;
}

.queue-story {
  position: relative;
  min-height: 112px;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) 16px;
  align-items: start;
  gap: 9px;
  padding: 12px 8px 11px 12px;
  cursor: pointer;
  border-bottom: 1px solid var(--line);
  transition: background-color .16s ease, box-shadow .16s ease;
}

.queue-story::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: transparent;
}

.queue-story:hover,
.queue-story:focus-visible {
  background: #f7faf9;
}

.queue-story.active {
  background: linear-gradient(90deg, #eff9f5, #f8fbfa);
  box-shadow: inset 0 0 0 1px rgba(15, 141, 103, .05);
}

.queue-story.active::before {
  background: var(--emerald-600);
}

.queue-story > img {
  width: 68px;
  height: 59px;
  margin-top: 2px;
  object-fit: cover;
  border-radius: 7px;
}

.queue-story:nth-child(3) > img,
.queue-story:nth-child(4) > img {
  object-position: 72% center;
}

.queue-story-copy {
  min-width: 0;
}

.queue-story-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 3px;
  color: var(--ink-500);
  font-size: .52rem;
}

.queue-story-top > span {
  color: var(--emerald-700);
  font-weight: 800;
  text-transform: uppercase;
}

.queue-story h3 {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--ink-900);
  font-size: .68rem;
  font-weight: 800;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.queue-story p {
  margin: 3px 0 5px;
  overflow: hidden;
  color: var(--ink-500);
  font-size: .54rem;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.queue-story-meta {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--ink-500);
  font-size: .49rem;
  white-space: nowrap;
}

.queue-story-meta .priority,
.queue-story-meta .stage {
  padding: 2px 5px;
  border-radius: 4px;
  font-weight: 800;
}

.priority.high { color: #b53a3a; background: #fbe5e5; }
.priority.medium { color: #a26b14; background: #fff1d9; }
.stage.review { color: #5d45a0; background: #eee9fa; }
.stage.reporting { color: #236695; background: #e7f1f8; }
.stage.copy { color: #2775a8; background: #e7f3fb; }
.stage.fact { color: #624b95; background: #eee8fa; }
.stage.draft { color: #51687a; background: #edf2f5; }

.queue-story > button {
  width: 20px;
  height: 30px;
  display: grid;
  place-items: center;
  margin-top: 16px;
  padding: 0;
  color: var(--ink-500);
  background: transparent;
  border: 0;
  border-radius: 5px;
}

.queue-story > button:hover {
  color: var(--navy-900);
  background: #e9f0f3;
}

.queue-footer {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 12px;
  color: var(--ink-500);
  font-size: .56rem;
}

.queue-footer nav {
  display: flex;
  gap: 2px;
}

.queue-footer button {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--ink-500);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: .56rem;
}

.queue-footer button.active {
  color: var(--emerald-700);
  background: var(--emerald-100);
  border-color: #a8d8c8;
  font-weight: 800;
}

.editor-panel {
  display: flex;
  flex-direction: column;
}

.editor-head {
  padding: 16px 17px 11px;
}

.story-kicker {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 7px;
  color: var(--ink-500);
  font-size: .57rem;
  font-weight: 700;
}

.story-kicker .status-chip {
  margin-left: auto;
}

.editor-head h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(1.03rem, 1.32vw, 1.38rem);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.22;
}

.editor-deck {
  margin: 6px 0 11px;
  color: var(--ink-700);
  font-size: .67rem;
  line-height: 1.5;
}

.story-byline {
  min-height: 31px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-500);
  font-size: .56rem;
}

.story-byline img {
  width: 27px;
  height: 27px;
  object-fit: cover;
  border-radius: 8px;
}

.story-byline strong {
  color: var(--ink-900);
  font-size: .58rem;
}

.story-byline > span:not(:first-of-type)::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  margin: 0 7px 2px 0;
  background: var(--ink-300);
  border-radius: 50%;
}

.story-byline button {
  min-width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-left: auto;
  padding: 0 7px;
  color: var(--ink-700);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  font-size: .56rem;
}

.story-byline .comment-count {
  margin-left: 0;
}

.editor-tabs {
  min-height: 41px;
  display: flex;
  align-items: end;
  gap: 15px;
  padding: 0 17px;
  overflow-x: auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  scrollbar-width: none;
}

.editor-tabs::-webkit-scrollbar { display: none; }

.editor-tabs button {
  min-height: 40px;
  padding: 0 1px;
  color: var(--ink-500);
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  font-size: .58rem;
  font-weight: 800;
  white-space: nowrap;
}

.editor-tabs button.active {
  color: var(--emerald-700);
  border-bottom-color: var(--emerald-600);
}

.editor-tabs button span {
  margin-left: 2px;
  padding: 1px 4px;
  color: var(--ink-500);
  background: #edf2f5;
  border-radius: 7px;
  font-size: .5rem;
}

.editor-panel-body {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 222px;
}

.story-composer {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 14px;
  border-right: 1px solid var(--line);
}

.composer-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.composer-label-row h3,
.verification-card h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: .65rem;
  font-weight: 800;
}

.composer-label-row span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--emerald-700);
  font-size: .54rem;
  font-weight: 700;
}

.composer-card {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d8e2e8;
  border-radius: 9px;
}

.composer-toolbar {
  min-height: 37px;
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 4px 7px;
  background: #f8fafb;
  border-bottom: 1px solid var(--line);
}

.composer-toolbar button {
  min-width: 25px;
  height: 27px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0 5px;
  color: var(--ink-700);
  background: transparent;
  border: 0;
  border-radius: 5px;
  font-size: .55rem;
}

.composer-toolbar button:hover { background: #eaf0f3; }

.composer-toolbar > span {
  width: 1px;
  height: 18px;
  margin: 0 2px;
  background: var(--line);
}

.composer-toolbar .preview-button {
  margin-left: auto;
  padding: 0 8px;
  background: #edf2f5;
  font-weight: 800;
}

.lead-media {
  position: relative;
  margin: 0;
  background: var(--navy-950);
}

.lead-media img {
  width: 100%;
  height: 125px;
  object-fit: cover;
  opacity: .9;
}

.lead-media figcaption {
  position: absolute;
  inset: auto 8px 7px;
  width: max-content;
  max-width: calc(100% - 16px);
  padding: 4px 7px;
  overflow: hidden;
  color: #fff;
  background: rgba(8, 28, 51, .78);
  border-radius: 5px;
  font-size: .49rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.editable-story {
  min-height: 222px;
  padding: 13px 15px 8px;
  color: #243342;
  outline: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: .66rem;
  line-height: 1.65;
}

.editable-story:focus {
  box-shadow: inset 0 0 0 2px rgba(15, 141, 103, .18);
}

.editable-story p { margin: 0 0 9px; }
.editable-story a { color: #087b9b; text-decoration: underline; }
.editable-story blockquote {
  margin: 9px 0 0;
  padding: 1px 0 1px 10px;
  color: var(--ink-700);
  border-left: 3px solid var(--gold-600);
  font-style: italic;
}

.arabic-summary {
  margin: 0 12px 12px;
  padding: 9px 11px;
  background: #f3f8f6;
  border: 1px solid #dcece6;
  border-radius: 7px;
  font-family: "IBM Plex Sans Arabic", sans-serif;
}

.arabic-summary > span {
  color: var(--emerald-700);
  font-size: .54rem;
  font-weight: 800;
}

.arabic-summary p {
  margin: 3px 0 0;
  color: var(--ink-700);
  outline: 0;
  font-size: .61rem;
  line-height: 1.7;
}

.composer-footer {
  min-height: 45px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--ink-500);
  font-size: .54rem;
}

.composer-footer > span:first-child { color: var(--emerald-700); }
.composer-footer .btn-app { min-height: 33px; margin-left: auto; padding: 6px 10px; font-size: .58rem; }

.verification-stack {
  min-width: 0;
  padding: 13px 11px;
  overflow: auto;
  background: #fafcfd;
}

.verification-card {
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.verification-card + .verification-card { margin-top: 9px; }

.verification-card > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
  margin-bottom: 9px;
}

.verification-card > header > span {
  color: var(--emerald-700);
  font-size: .52rem;
  font-weight: 800;
}

.verification-list {
  display: grid;
  gap: 8px;
  margin: 0 0 9px;
  padding: 0;
  list-style: none;
}

.verification-list li {
  display: grid;
  grid-template-columns: 15px minmax(0, 1fr);
  gap: 6px;
  align-items: start;
}

.verification-list > li > i {
  margin-top: 1px;
  color: var(--emerald-600);
  font-size: .72rem;
}

.verification-list div,
.media-item div {
  min-width: 0;
  display: grid;
}

.verification-list strong,
.media-item strong {
  overflow: hidden;
  color: var(--ink-900);
  font-size: .53rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.verification-list span,
.media-item span {
  margin-top: 2px;
  color: var(--ink-500);
  font-size: .47rem;
}

.verification-card .btn-app {
  width: 100%;
  min-height: 29px;
  padding: 4px 7px;
  box-shadow: none;
  font-size: .52rem;
}

.media-item {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 14px;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
}

.media-item img {
  width: 36px;
  height: 29px;
  object-fit: cover;
  border-radius: 5px;
}

.media-item > i {
  color: var(--emerald-600);
  font-size: .65rem;
}

.story-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 10px;
}

.story-labels span {
  padding: 3px 5px;
  color: var(--ink-500);
  background: #edf2f5;
  border-radius: 5px;
  font-size: .46rem;
}

.story-labels button {
  width: 21px;
  height: 21px;
  padding: 0;
  color: var(--ink-500);
  background: transparent;
  border: 1px dashed var(--ink-300);
  border-radius: 5px;
}

.priority-field > span {
  display: block;
  margin-bottom: 4px;
  color: var(--ink-700);
  font-size: .5rem;
  font-weight: 800;
}

.priority-field .app-select {
  min-height: 30px;
  padding: 4px 7px;
  font-size: .52rem;
}

.tab-placeholder {
  flex: 1;
  min-height: 520px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 30px;
  color: var(--ink-500);
  text-align: center;
}

.tab-placeholder > i { color: var(--emerald-600); font-size: 2rem; }
.tab-placeholder h3 { margin: 12px 0 3px; color: var(--navy-900); font-size: .9rem; }
.tab-placeholder p { margin: 0; font-size: .65rem; }

.workflow-rail {
  display: flex;
  flex-direction: column;
}

.workflow-rail .surface-header {
  min-height: 61px;
  padding: 12px 13px;
}

.workflow-percent {
  color: var(--emerald-700);
  font-size: .68rem;
  font-weight: 800;
}

.workflow-list {
  flex: 1;
  margin: 0;
  padding: 12px 11px 3px;
  list-style: none;
}

.workflow-list li {
  position: relative;
  min-height: 76px;
  display: grid;
  grid-template-columns: 27px minmax(0, 1fr) 16px;
  align-items: start;
  gap: 7px;
  padding: 4px 3px;
}

.workflow-list li::after {
  content: "";
  position: absolute;
  top: 31px;
  bottom: -1px;
  left: 16px;
  width: 1px;
  background: #d8e3e8;
}

.workflow-list li:last-child::after { display: none; }

.workflow-list li > span {
  position: relative;
  z-index: 1;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  color: var(--ink-500);
  background: #fff;
  border: 1px solid #cfdbe3;
  border-radius: 50%;
  font-size: .53rem;
  font-weight: 800;
}

.workflow-list li > div {
  min-width: 0;
  display: grid;
  gap: 4px;
  padding-top: 3px;
}

.workflow-list strong {
  color: var(--ink-700);
  font-size: .56rem;
  line-height: 1.3;
}

.workflow-list small {
  color: var(--ink-500);
  font-size: .47rem;
  line-height: 1.4;
}

.workflow-list li > i {
  margin-top: 5px;
  color: var(--emerald-600);
  font-size: .65rem;
}

.workflow-list li.complete > span {
  color: #fff;
  background: var(--emerald-600);
  border-color: var(--emerald-600);
}

.workflow-list li.current {
  min-height: 79px;
  padding: 8px 6px;
  background: #eef8f4;
  border: 1px solid #a6d8c8;
  border-radius: 8px;
}

.workflow-list li.current::after { top: 35px; bottom: -11px; left: 19px; }
.workflow-list li.current > span { color: #fff; background: var(--emerald-700); border-color: var(--emerald-700); }
.workflow-list li.current strong { color: var(--navy-900); }

.workflow-actions {
  display: grid;
  gap: 7px;
  padding: 11px;
  border-top: 1px solid var(--line);
}

.workflow-actions .btn-app {
  width: 100%;
  min-height: 34px;
  padding: 6px 8px;
  box-shadow: none;
  font-size: .54rem;
}

.epaper-strip {
  grid-column: 1 / -1;
  min-width: 0;
  display: grid;
  grid-template-columns: 170px 192px minmax(310px, 1fr) 210px 175px;
  align-items: center;
  gap: 13px;
  margin-top: 1px;
  padding: 13px;
  overflow: hidden;
}

.epaper-title {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 9px;
  padding-right: 12px;
  border-right: 1px solid var(--line);
}

.epaper-title .page-eyebrow { margin-bottom: 4px; font-size: .55rem; }
.epaper-title h2 { margin: 0; color: var(--navy-900); font-size: .75rem; font-weight: 800; }
.epaper-title h2 span { display: block; margin-top: 4px; color: var(--ink-500); font-size: .5rem; font-weight: 600; }

.edition-progress {
  display: grid;
  grid-template-columns: 67px 1fr;
  align-items: center;
  gap: 10px;
}

.progress-ring {
  width: 67px;
  height: 67px;
  display: grid;
  place-items: center;
  align-content: center;
  background: radial-gradient(circle at center, #fff 54%, transparent 56%), conic-gradient(var(--emerald-600) 0 58%, #2d86b8 58% 74%, #e6edf1 74% 100%);
  border-radius: 50%;
}

.progress-ring strong { color: var(--navy-900); font-size: .82rem; }
.progress-ring span { color: var(--ink-500); font-size: .42rem; }

.edition-progress dl { display: grid; gap: 4px; margin: 0; }
.edition-progress dl > div { display: flex; align-items: center; justify-content: space-between; gap: 7px; }
.edition-progress dt, .edition-progress dd { margin: 0; font-size: .46rem; }
.edition-progress dt { color: var(--ink-500); font-weight: 600; }
.edition-progress dd { color: var(--ink-700); font-weight: 800; }
.edition-progress dt i { margin-right: 4px; font-size: .38rem; }
.edition-progress .planned { color: #cbd6dd; }
.edition-progress .design { color: #2d86b8; }
.edition-progress .proof { color: var(--gold-600); }
.edition-progress .complete { color: var(--emerald-600); }

.page-previews {
  display: grid;
  grid-template-columns: repeat(4, minmax(64px, 1fr));
  gap: 7px;
  overflow-x: auto;
}

.page-preview {
  min-width: 64px;
  display: grid;
  justify-items: center;
  gap: 2px;
  padding: 4px;
  color: var(--ink-500);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 7px;
}

.page-preview:hover,
.page-preview.active { background: #f2f7f5; border-color: #bfddd3; }

.paper-thumb {
  position: relative;
  width: 100%;
  height: 53px;
  padding: 4px;
  background: #fff;
  border: 1px solid #cfdbe3;
  border-radius: 3px;
  box-shadow: 0 2px 5px rgba(10, 38, 64, .08);
}

.paper-thumb::before,
.paper-thumb::after {
  content: "";
  position: absolute;
  right: 5px;
  left: 5px;
  height: 2px;
  background: #cbd5dc;
  box-shadow: 0 5px #dbe2e7, 0 10px #dbe2e7;
}

.paper-thumb::before { top: 5px; }
.paper-thumb::after { bottom: 7px; }

.paper-thumb img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 25px;
  margin-top: 9px;
  object-fit: cover;
}

.paper-thumb > i {
  position: absolute;
  z-index: 2;
  right: -4px;
  bottom: -4px;
  color: var(--emerald-600);
  background: #fff;
  border-radius: 50%;
  font-size: .68rem;
}

.page-preview.warning .paper-thumb > i { color: var(--warning); }
.page-preview strong { color: var(--ink-700); font-size: .48rem; }
.page-preview small { overflow: hidden; font-size: .43rem; text-overflow: ellipsis; white-space: nowrap; }

.preflight-card {
  min-width: 0;
  padding-left: 12px;
  border-left: 1px solid var(--line);
}

.preflight-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}

.preflight-card h3 { margin: 0; color: var(--navy-900); font-size: .58rem; font-weight: 800; }
.preflight-card header span { color: var(--warning); font-size: .53rem; font-weight: 800; }
.preflight-card ul { display: grid; gap: 5px; margin: 0; padding: 0; list-style: none; }
.preflight-card li { display: grid; grid-template-columns: 13px 1fr auto; align-items: center; gap: 5px; }
.preflight-card li > i { color: var(--warning); font-size: .58rem; }
.preflight-card li div { min-width: 0; display: grid; }
.preflight-card li strong { color: var(--ink-700); font-size: .47rem; }
.preflight-card li span { color: var(--ink-500); font-size: .42rem; }
.preflight-card li button { padding: 3px; color: #2d6ba0; background: transparent; border: 0; font-size: .45rem; font-weight: 800; }

.proof-card {
  min-width: 0;
  display: grid;
  gap: 6px;
  padding-left: 12px;
  border-left: 1px solid var(--line);
}

.proof-card > span { color: var(--ink-500); font-size: .44rem; }
.proof-card > div { display: grid; grid-template-columns: 25px 1fr; align-items: center; gap: 6px; }
.proof-card > div > i { color: #d94a4a; font-size: 1.3rem; }
.proof-card p { min-width: 0; display: grid; margin: 0; }
.proof-card strong { overflow: hidden; color: var(--ink-700); font-size: .5rem; text-overflow: ellipsis; white-space: nowrap; }
.proof-card small { color: var(--ink-500); font-size: .43rem; }
.proof-card .btn-app { min-height: 28px; padding: 4px 7px; box-shadow: none; font-size: .49rem; }
.proof-card > a { color: var(--emerald-700); font-size: .48rem; font-weight: 800; }

@media (max-width: 1500px) {
  .dashboard-grid {
    grid-template-columns: 292px minmax(0, 1fr);
  }

  .workflow-rail {
    grid-column: 1 / -1;
    min-height: 0;
  }

  .workflow-list {
    display: grid;
    grid-template-columns: repeat(7, minmax(110px, 1fr));
    gap: 5px;
    overflow-x: auto;
    padding: 11px;
  }

  .workflow-list li,
  .workflow-list li.current {
    min-height: 83px;
    display: grid;
    grid-template-columns: 27px 1fr;
    align-content: start;
    padding: 8px;
  }

  .workflow-list li::after,
  .workflow-list li.current::after { display: none; }
  .workflow-list li > i { position: absolute; top: 10px; right: 8px; }
  .workflow-actions { grid-template-columns: 1fr 1fr; }

  .epaper-strip {
    grid-template-columns: 160px 190px minmax(280px, 1fr) 210px;
  }

  .proof-card {
    grid-column: 1 / -1;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    padding: 9px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 1180px) {
  .dashboard-page { padding-right: 18px; padding-left: 18px; }
  .desk-filters { grid-template-columns: repeat(4, minmax(110px, 1fr)) minmax(170px, 1.3fr); }
  .desk-filters .filter-button { grid-column: -2 / -1; }
  .epaper-strip { grid-template-columns: 150px 180px minmax(260px, 1fr); }
  .preflight-card { grid-column: auto; }
  .proof-card { grid-column: 1 / -1; }
}

@media (max-width: 980px) {
  .desk-heading { align-items: flex-start; }
  .deadline-card { display: none; }
  .desk-filters { grid-template-columns: repeat(3, 1fr); }
  .desk-filters .filter-search { grid-column: span 2; }
  .desk-filters .filter-button { grid-column: auto; }
  .dashboard-grid { grid-template-columns: 1fr; }
  .story-queue,
  .editor-panel,
  .workflow-rail { min-height: 0; }
  .story-queue { max-height: none; }
  .story-list { display: grid; grid-template-columns: 1fr 1fr; }
  .queue-story:nth-child(odd) { border-right: 1px solid var(--line); }
  .queue-footer { grid-column: 1 / -1; }
  .workflow-rail,
  .epaper-strip { grid-column: 1; }
  .epaper-strip { grid-template-columns: 170px 1fr 1fr; }
  .page-previews { grid-column: span 2; }
  .preflight-card { grid-column: span 2; }
}

@media (max-width: 820px) {
  .dashboard-page { padding-top: 17px; }
  .desk-heading { display: grid; gap: 13px; }
  .desk-heading-actions { justify-content: flex-start; }
  .desk-filters { grid-template-columns: 1fr 1fr; }
  .desk-filters label:nth-child(3),
  .desk-filters label:nth-child(4) { display: none; }
  .desk-filters .filter-search { grid-column: 1 / -1; }
  .desk-filters .filter-button { grid-column: 1 / -1; }
  .story-list { grid-template-columns: 1fr; }
  .queue-story:nth-child(odd) { border-right: 0; }
  .editor-panel-body { grid-template-columns: 1fr; }
  .story-composer { border-right: 0; border-bottom: 1px solid var(--line); }
  .verification-stack { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; }
  .verification-card + .verification-card { margin-top: 0; }
  .story-labels-card { grid-column: 1 / -1; }
  .workflow-list { grid-template-columns: repeat(7, 138px); }
  .epaper-strip { grid-template-columns: 1fr 1fr; }
  .epaper-title { border-right: 0; }
  .page-previews { grid-column: 1 / -1; }
  .preflight-card { grid-column: auto; }
  .proof-card { grid-column: auto; grid-template-columns: 1fr; padding: 0 0 0 12px; border-top: 0; border-left: 1px solid var(--line); }
}

@media (max-width: 560px) {
  .desk-heading-actions .btn-app { flex: 1; }
  .desk-filters { padding: 9px; }
  .queue-story { grid-template-columns: 72px minmax(0, 1fr) 16px; padding-left: 10px; }
  .queue-story > img { width: 72px; }
  .editor-head { padding: 14px 13px 10px; }
  .editor-head h2 { font-size: 1.1rem; }
  .story-byline { flex-wrap: wrap; }
  .story-byline > span:nth-of-type(2) { display: none; }
  .story-byline button { margin-left: 0; }
  .editor-tabs { padding: 0 13px; }
  .story-composer { padding: 12px 10px; }
  .composer-toolbar button:first-child { max-width: 74px; overflow: hidden; }
  .lead-media img { height: 150px; }
  .editable-story { min-height: 260px; padding: 13px; font-size: .7rem; }
  .verification-stack { grid-template-columns: 1fr; padding: 10px; }
  .story-labels-card { grid-column: auto; }
  .workflow-actions { grid-template-columns: 1fr; }
  .epaper-strip { grid-template-columns: 1fr; padding: 12px; }
  .epaper-title,
  .preflight-card,
  .proof-card { padding: 0 0 10px; border-right: 0; border-bottom: 1px solid var(--line); border-left: 0; }
  .edition-progress { grid-template-columns: 78px 1fr; }
  .progress-ring { width: 78px; height: 78px; }
  .page-previews,
  .preflight-card,
  .proof-card { grid-column: auto; }
  .page-previews { grid-template-columns: repeat(4, 78px); padding-bottom: 5px; }
  .proof-card { grid-template-columns: 1fr auto; border-bottom: 0; }
  .proof-card > span,
  .proof-card > div { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
  .queue-story { transition: none; }
}
