:root {
  --ink: #181818;
  --muted: #606060;
  --accent: #c71926;
  --accent-hover: #a70e1a;
  --line: #e3e3e3;
  --surface: #fff;
  --paper: #f5f5f5;
  --small: 0.875rem;
  --meta: 0.75rem;
  --body: 1rem;
  --heading: 1.25rem;
  --title: 1.75rem;
  --brand: 1.1rem;
  --radius: 12px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font:
    var(--small) / 1.6 system-ui,
    -apple-system,
    sans-serif;
  display: grid;
  grid-template-columns: 236px minmax(0, 1fr);
  grid-template-rows: 84px 1fr auto;
  min-height: 100vh;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.3;
  letter-spacing: -0.025em;
}
h1 {
  font-size: var(--title);
  font-weight: 600;
}
h2 {
  font-size: var(--heading);
  font-weight: 600;
}
h3 {
  font-size: var(--body);
  font-weight: 600;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a,
input,
textarea,
select,
summary {
  outline-offset: 3px;
}
:focus-visible {
  outline: 3px solid var(--accent);
}
a {
  color: var(--accent-hover);
}
button {
  min-height: 44px;
  cursor: pointer;
  border: 1px solid var(--accent);
  border-radius: 8px;
  padding: 10px 18px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition:
    background 0.15s,
    box-shadow 0.15s;
}
button:hover:not(:disabled) {
  background: var(--accent-hover);
}
button:disabled {
  cursor: not-allowed;
  background: #e7e7e7;
  border-color: #d4d4d4;
  color: #666;
}
.quiet,
.text-button {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}
.quiet:hover:not(:disabled),
.text-button:hover:not(:disabled) {
  background: #f3f3f3;
}
.text-button {
  border-color: transparent;
  color: var(--accent-hover);
  padding-inline: 6px;
}
.hidden,
[hidden] {
  display: none !important;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip {
  position: fixed;
  z-index: 50;
  top: -100px;
  left: 12px;
  background: #fff;
  color: var(--ink);
  padding: 12px;
}
.skip:focus {
  top: 12px;
}
.sidebar {
  grid-row: 1/-1;
  background: #111;
  color: #fff;
  padding: 26px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  top: 0;
  height: 100vh;
}
.brand {
  display: flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  color: #fff;
  margin: 3px 0 31px 4px;
}
.brand-mark {
  font-weight: 850;
  font-size: 1.8rem;
  letter-spacing: -0.1em;
}
.brand-mark > span {
  color: #ff525e;
}
.brand-name {
  font-size: var(--brand);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.25;
}
.brand small {
  display: block;
  font-size: 0.625rem;
  letter-spacing: 0.16em;
  color: #b8b8b8;
  margin-top: 6px;
  font-weight: 500;
}
.sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sidebar nav button {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  border-color: transparent;
  background: transparent;
  color: #c7c7c7;
  text-align: left;
  font-weight: 500;
}
.sidebar nav button:hover {
  background: #242424;
}
.sidebar nav button[aria-current] {
  color: #fff;
  background: #382023;
  box-shadow: inset 3px 0 var(--accent);
}
.sidebar .new-shoot {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  background: var(--accent);
  border: 0;
  color: white;
  margin-bottom: 22px;
  box-shadow: 0 3px 10px #0002;
  font-weight: 650;
  min-height: 54px;
}
.sidebar .new-shoot:hover,
.sidebar .new-shoot[aria-current] {
  background: var(--accent-hover);
  box-shadow: none;
}
.new-shoot > span {
  font-size: 1.5rem;
  line-height: 1;
}
.sidebar svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  flex-shrink: 0;
}
.sidebar-caption {
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  color: #a4a4a4;
  margin: 34px 16px 5px;
}
.sidebar-description {
  color: #aaa;
  margin-left: 16px;
  line-height: 1.9;
}
.sidebar-note {
  margin-top: auto;
  padding: 22px 4px 0;
  border-top: 1px solid #333;
  display: flex;
  align-items: center;
  gap: 11px;
}
.sidebar-note small {
  display: block;
  color: #b8b8b8;
  font-size: var(--meta);
  margin-top: 2px;
}
.workspace-avatar {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #2c2c2c;
  color: white;
  font-size: var(--meta);
  font-weight: 700;
  flex-shrink: 0;
}
.topbar {
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 28px;
  min-width: 0;
}
.workspace-search {
  display: flex;
  align-items: center;
  gap: 13px;
  max-width: 720px;
  flex: 1;
  background: #eaeaea;
  border-radius: 28px;
  padding: 0 10px 0 20px;
  min-width: 0;
  min-height: 48px;
}
.workspace-search:focus-within {
  background: white;
  box-shadow: 0 0 0 2px var(--accent);
}
.workspace-search svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #555;
  stroke-width: 1.7;
  flex-shrink: 0;
}
.workspace-search input {
  border: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  outline: none;
  box-shadow: none;
  min-width: 0;
  width: 100%;
  padding: 10px 0 !important;
}
.search-submit {
  background: transparent;
  color: #555;
  border: 0;
  font-weight: 500;
  font-size: var(--meta);
  padding: 6px 12px;
  border-radius: 22px;
}
.search-submit:hover:not(:disabled) {
  background: #ddd;
}
.topbar > .quiet {
  white-space: nowrap;
  background: transparent;
  border-color: transparent;
}
.connection {
  font-size: var(--meta);
  color: var(--muted);
}
main {
  grid-column: 2;
  background: white;
  margin: 0 20px 18px 0;
  padding: 26px 30px;
  border-radius: 18px;
  min-width: 0;
  min-height: calc(100vh - 120px);
}
body > footer {
  grid-column: 2;
  margin: 0 28px 18px;
}
.demo-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--meta);
  color: var(--muted);
  padding: 0 0 21px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.demo-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.demo-bar strong {
  color: var(--ink);
}
.breadcrumb,
.eyebrow {
  font-size: var(--meta);
  color: var(--muted);
  margin-bottom: 14px;
}
.breadcrumb > span {
  margin: 0 13px;
  color: #777;
}
.eyebrow {
  letter-spacing: 0.07em;
  font-weight: 600;
}
.section-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 25px;
}
.support,
.intro > p:not(.eyebrow) {
  color: var(--muted);
  margin-top: 10px;
  font-size: var(--small);
}
.view-label {
  font-size: var(--meta);
  white-space: nowrap;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 7px 12px;
  color: var(--muted);
}
.list-head,
.sample-file {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 100px 140px 80px;
  gap: 20px;
  align-items: center;
}
.list-head {
  font-size: var(--meta);
  color: var(--muted);
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
}
.sample-file {
  padding: 19px 16px;
  border-bottom: 1px solid var(--line);
  transition: background 0.15s;
}
.sample-file:hover {
  background: #faf7f7;
}
.file-main {
  display: flex;
  gap: 16px;
  align-items: center;
  min-width: 0;
}
.file-main > svg,
.library-note > svg {
  width: 27px;
  height: 27px;
  fill: #f6e4e6;
  stroke: var(--accent);
  stroke-width: 1.5;
  flex-shrink: 0;
}
.file-main h2 {
  font-size: var(--small);
  font-weight: 600;
}
.file-main p,
.file-meta {
  color: var(--muted);
  font-size: var(--meta);
  margin-top: 3px;
}
.file-main div {
  min-width: 0;
  overflow-wrap: anywhere;
}
.file-time {
  font-size: var(--meta);
  font-variant-numeric: tabular-nums;
  color: var(--muted);
}
.sample-file > .text-button {
  font-size: var(--meta);
}
.library-note {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f8f8f8;
  border: 1px solid var(--line);
  padding: 22px;
  border-radius: 10px;
  margin-top: 36px;
}
.library-note p {
  font-size: var(--meta);
  color: var(--muted);
  margin-top: 3px;
}
.library-note button {
  margin-left: auto;
  white-space: nowrap;
}
.library-note > svg {
  fill: none;
  stroke: #555;
}
.intro {
  margin-bottom: 26px;
}
.layout {
  max-width: 820px;
}
.layout > .intro {
  display: none;
}
.work-column {
  min-width: 0;
}
.panel,
.help {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  min-width: 0;
  animation: arrive 0.18s ease-out;
}
.composer,
#inspection {
  max-width: 760px;
}
.panel h1,
.panel h2 {
  margin-bottom: 15px;
}
.panel .section-top h2 {
  margin: 0;
}
.primary {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
}
.panel label,
label {
  display: block;
  font-size: var(--small);
  font-weight: 600;
  margin-top: 16px;
}
input:not([type="checkbox"]),
textarea,
select {
  display: block;
  min-width: 0;
  width: 100%;
  min-height: 44px;
  border: 1px solid #999;
  background: #fff;
  color: var(--ink);
  border-radius: 7px;
  padding: 12px;
  margin-top: 7px;
  font-size: var(--small);
}
input::placeholder,
textarea::placeholder {
  color: #686868;
}
textarea {
  resize: vertical;
}
.hint,
small {
  color: var(--muted);
  font-size: var(--meta);
  font-weight: 400;
}
.hint {
  margin: 12px 0;
}
.support {
  margin-bottom: 22px;
}
.demo-explanation {
  font-size: var(--meta);
  color: var(--muted);
  margin-top: 20px;
}
.error {
  color: #a70e1a;
  font-size: var(--small);
  margin-top: 9px;
}
.options {
  border-top: 1px solid var(--line);
  margin: 24px 0 12px;
  padding-top: 5px;
}
details {
  margin: 16px 0;
}
summary {
  cursor: pointer;
  min-height: 44px;
  padding: 11px 0;
  font-size: var(--small);
}
summary span {
  font-size: var(--meta);
  color: var(--muted);
  margin-left: 6px;
}
.sample-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-top: 24px;
  color: var(--muted);
  font-size: var(--small);
}
.steps {
  display: flex;
  list-style: none;
  padding: 0;
  gap: 28px;
  margin: 0 0 27px;
  color: var(--muted);
}
.steps li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--small);
}
.steps li > span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #aaa;
  display: grid;
  place-items: center;
  font-size: var(--meta);
}
.steps li[aria-current] {
  color: var(--accent-hover);
  font-weight: 600;
}
.steps li[aria-current] > span {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}
.fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.fields > label {
  min-width: 0;
}
.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
}
.check input {
  accent-color: var(--accent);
  width: 19px;
  height: 19px;
  margin-top: 3px;
  flex-shrink: 0;
}
fieldset {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 16px 20px;
  margin: 22px 0;
}
legend {
  padding: 0 5px;
}
.confirmation .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.composer > button,
.editor > button,
#delivery-form > button {
  margin-top: 20px;
}
.confirmation > p {
  color: var(--muted);
  margin: 16px 0;
}
.notice,
#notice {
  background: #fff5f5;
  color: #85121a;
  border: 1px solid #e7bac0;
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 20px;
  overflow-wrap: anywhere;
}
.job {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(120px, auto);
  gap: 8px 20px;
}
.job h3 {
  grid-column: 1;
  grid-row: 1;
  font-size: var(--body);
  overflow-wrap: anywhere;
}
.job .pill {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
}
.job p {
  color: var(--muted);
  font-size: var(--small);
  grid-column: 1;
}
.job a,
.job button {
  grid-column: 2;
  justify-self: end;
  align-self: center;
}
.job progress {
  grid-column: 1;
}
.pill {
  font-size: var(--meta);
  border-radius: 20px;
  padding: 4px 10px;
  background: #f0f0f0;
  color: #4b4b4b;
  align-self: start;
}
.pill.review {
  background: #fff0f1;
  color: #a70e1a;
}
.pill.complete {
  background: #ececec;
  color: #222;
}
.empty {
  padding: 45px 15px;
  color: var(--muted);
  text-align: center;
}
.empty strong {
  display: block;
  color: var(--ink);
  margin-bottom: 8px;
}
.clip-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.clip-row > div {
  min-width: 0;
}
.clip-row small {
  display: block;
  margin-top: 4px;
}
.clip-row strong,
.clip-row small {
  overflow-wrap: anywhere;
}
.clip-row button {
  flex-shrink: 0;
}
.editor {
  margin: 24px 0;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.editor > p {
  color: var(--muted);
  margin: 10px 0;
}
.filmstrip {
  display: flex;
  gap: 12px;
  overflow: auto;
  margin: 20px 0;
}
.filmstrip figure {
  width: 200px;
  max-width: 100%;
  flex-shrink: 0;
  margin: 0;
}
.filmstrip img {
  width: 100%;
  border-radius: 8px;
}
.filmstrip figcaption {
  font-size: var(--meta);
  color: var(--muted);
}
.transcript {
  white-space: pre-wrap;
  background: #f5f5f5;
  border-radius: 8px;
  padding: 16px;
  max-height: 350px;
  overflow: auto;
}
#delivery-form {
  border-top: 1px solid var(--line);
  padding-top: 15px;
  margin-top: 25px;
}
.shoot-summary {
  padding: 16px;
  background: #f5f5f5;
  border-radius: 8px;
  margin: 20px 0;
  overflow-wrap: anywhere;
}
.shoot-summary strong,
.shoot-summary span {
  display: block;
}
.shoot-summary span {
  font-size: var(--meta);
  color: var(--muted);
  margin-top: 4px;
}
.group {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.group-header {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
.group h3,
.group p {
  overflow-wrap: anywhere;
}
.group p {
  color: var(--muted);
  margin-top: 6px;
}
.group .time,
.saved-note {
  font-size: var(--meta);
  color: var(--muted);
}
.group summary {
  color: var(--accent-hover);
  font-size: var(--meta);
}
.back {
  margin-top: 10px;
}
.folder-preview {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 20px;
  background: #fafafa;
  overflow-wrap: anywhere;
}
.folder-preview > strong {
  display: block;
  margin-bottom: 15px;
}
.folder-item {
  padding: 14px 0 14px 20px;
  border-left: 2px solid #d1d1d1;
  margin-left: 5px;
}
.folder-item small {
  display: block;
  margin-top: 3px;
}
.index-file {
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid var(--line);
}
.index-file span {
  display: block;
  color: var(--muted);
  font-size: var(--meta);
}
.result-note {
  color: var(--muted);
  margin-top: 18px;
}
.done-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  margin-top: 13px;
}
.search-result {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.search-result p {
  color: var(--muted);
  margin: 5px 0;
}
.search-result ul {
  padding-left: 20px;
}
.search-result li {
  margin: 8px 0;
}
.search-result a {
  display: inline-block;
  margin: 8px 18px 0 0;
}
.excerpt {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
#library-status {
  margin: 24px 0;
  color: var(--muted);
}
#library-search {
  margin-top: 18px;
}
progress {
  width: 100%;
  height: 8px;
  border-radius: 5px;
  overflow: hidden;
  accent-color: var(--accent);
}
progress::-webkit-progress-bar {
  background: #eee;
}
progress::-webkit-progress-value {
  background: var(--accent);
  transition: width 0.2s;
}
.skeleton {
  height: 55px;
  background: #eee;
  border-radius: 8px;
  animation: pulse 1s alternate infinite;
  margin: 18px 0;
}
.skeleton.short {
  width: 70%;
}
.help {
  margin-top: 30px;
}
.help p,
.help li {
  color: var(--muted);
}
.help img,
.update img {
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.update {
  border-top: 1px solid var(--line);
  margin-top: 36px;
  padding-top: 8px;
  color: var(--muted);
  font-size: var(--meta);
}
.update > summary {
  font-size: var(--meta);
}
.update > p {
  max-width: 640px;
  margin: 8px 0 12px;
}
.update img {
  max-width: 800px;
}
.update details {
  margin: 8px 0;
}
footer {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  color: var(--muted);
  font-size: var(--meta);
}
dialog {
  max-width: 520px;
  width: calc(100% - 32px);
  max-height: calc(100dvh - 32px);
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 20px 80px #0003;
}
dialog::backdrop {
  background: #0008;
}
.dialog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.help-list {
  padding-left: 22px;
}
.help-list li {
  margin: 18px 0;
}
.help-list p {
  color: var(--muted);
  margin-top: 4px;
}
@keyframes arrive {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes pulse {
  to {
    opacity: 0.5;
  }
}
@media (max-width: 1000px) {
  body {
    grid-template-columns: 210px minmax(0, 1fr);
  }
  .topbar {
    gap: 8px;
    padding: 18px;
  }
  .topbar .connection {
    display: none;
  }
  main {
    padding: 24px;
  }
  .list-head,
  .sample-file {
    grid-template-columns: minmax(0, 1fr) 85px 75px;
    gap: 12px;
  }
  .list-head > span:nth-child(3),
  .sample-file > .file-time {
    display: none;
  }
}
@media (max-width: 760px) {
  body {
    display: block;
  }
  .sidebar {
    position: relative;
    height: auto;
    padding: 18px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }
  .brand {
    margin: 0;
  }
  .brand-mark {
    font-size: 1.5rem;
  }
  .brand-name {
    font-size: var(--small);
  }
  .sidebar > .new-shoot {
    margin: 0;
    min-height: 44px;
    padding: 8px 12px;
    gap: 7px;
  }
  .sidebar nav {
    grid-column: 1/-1;
    flex-direction: row;
  }
  .sidebar nav button {
    width: auto;
    flex: 1;
    justify-content: center;
    padding: 10px;
    font-size: var(--meta);
    gap: 8px;
  }
  .sidebar nav .new-shoot {
    margin: 0;
    min-height: 44px;
  }
  .sidebar .tabs {
    grid-column: 1/-1;
  }
  .sidebar-caption,
  .sidebar-description,
  .sidebar-note {
    display: none;
  }
  .sidebar svg {
    width: 17px;
    height: 17px;
  }
  .topbar {
    padding: 14px 16px;
    gap: 8px;
  }
  .topbar > .quiet {
    font-size: var(--meta);
    padding: 8px;
  }
  .top-avatar {
    display: none;
  }
  .workspace-search {
    padding-left: 12px;
    gap: 8px;
  }
  .search-submit {
    padding: 6px;
    font-size: var(--meta);
  }
  main {
    margin: 0 8px 10px;
    padding: 20px 16px;
    border-radius: 12px;
    min-height: 70vh;
  }
  .demo-bar {
    flex-wrap: wrap;
    padding-bottom: 14px;
    margin-bottom: 20px;
  }
  .demo-bar > span:last-child {
    flex-basis: 100%;
  }
  .section-top {
    align-items: flex-start;
    gap: 12px;
  }
  .view-label {
    display: none;
  }
  .list-head,
  .sample-file {
    grid-template-columns: minmax(0, 1fr) 65px;
    gap: 8px;
    padding-inline: 0;
  }
  .list-head > span:nth-child(2),
  .sample-file > .file-meta {
    display: none;
  }
  .file-main {
    gap: 11px;
  }
  .sample-file {
    padding-block: 18px;
  }
  .file-main > svg {
    width: 24px;
    height: 24px;
  }
  .library-note {
    flex-wrap: wrap;
    padding: 16px;
    gap: 12px;
  }
  .library-note > div {
    flex: 1;
    min-width: 0;
  }
  .library-note button {
    margin: 0 0 0 37px;
  }
  .panel,
  .help {
    padding: 20px 16px;
  }
  .fields {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .steps {
    gap: 16px;
    justify-content: space-between;
  }
  .steps li {
    font-size: var(--meta);
    gap: 6px;
  }
  .steps li > span {
    width: 22px;
    height: 22px;
  }
  .sample-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  .clip-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }
  .clip-row button {
    width: 100%;
  }
  .job {
    display: block;
  }
  .job .pill {
    display: inline-block;
    margin-bottom: 10px;
  }
  .job h3 {
    margin-bottom: 8px;
  }
  .job p {
    margin: 6px 0;
  }
  .job a,
  .job button {
    display: inline-block;
    margin-top: 10px;
  }
  .group-header {
    flex-wrap: wrap;
    gap: 4px;
  }
  .group .time {
    margin-left: auto;
  }
  footer,
  body > footer {
    flex-direction: column;
    gap: 6px;
    margin-top: 25px;
  }
  .sidebar nav button:focus-visible {
    outline-color: #ff7882;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
@supports not (display: grid) {
  body {
    display: block;
  }
  .sidebar {
    position: relative;
    height: auto;
  }
  .topbar,
  main {
    margin: 0;
  }
}
