feat: port TechLog shells and styles

This commit is contained in:
DongHyeonka
2026-08-15 21:20:47 +09:00
parent 01316763e3
commit 627df884dd
14 changed files with 4124 additions and 8 deletions
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,533 @@
.page,
.snapshotPage {
min-width: 0;
}
.heading {
max-width: 780px;
padding-bottom: 44px;
border-bottom: 1px solid var(--line-strong);
}
.heading h1,
.routeState h1 {
margin: 0 0 16px;
font-size: clamp(36px, 6vw, 62px);
line-height: 1.08;
letter-spacing: -0.045em;
overflow-wrap: anywhere;
}
.heading > p:last-child,
.routeState > p {
color: var(--muted);
line-height: 1.75;
}
.eyebrow {
margin: 0 0 13px;
color: var(--muted);
font-family: "IBM Plex Mono", monospace;
font-size: 11px;
letter-spacing: 0.08em;
text-transform: uppercase;
}
.loading {
min-height: 220px;
color: var(--muted);
}
.routeState,
.errorState,
.emptyState {
max-width: 740px;
padding-block: 48px;
}
.routeState a,
.routeState button,
.errorState button {
display: inline-flex;
min-height: 44px;
align-items: center;
justify-content: center;
margin-top: 18px;
padding-inline: 16px;
border: 1px solid var(--line-strong);
border-radius: 5px;
background: var(--paper);
color: var(--signal);
font-weight: 650;
}
.summary {
margin-top: 30px;
border-block: 1px solid var(--line);
}
.summary dl {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
margin: 0;
}
.summary dl > div {
min-width: 0;
padding: 20px;
border-right: 1px solid var(--line);
}
.summary dl > div:last-child {
border-right: 0;
}
.summary dt,
.snapshotToolbar dt {
color: var(--muted);
font-size: 11px;
}
.summary dd,
.snapshotToolbar dd {
margin: 7px 0 0;
font-size: 14px;
overflow-wrap: anywhere;
}
.changeSummary,
.publishAction,
.blocked,
.gateReady {
max-width: 850px;
padding-block: 42px;
border-bottom: 1px solid var(--line);
}
.changeSummary h2,
.publishAction h2,
.blocked h2,
.gateReady h2,
.errorState h2,
.emptyState h2 {
margin: 0 0 12px;
font-size: 27px;
line-height: 1.3;
overflow-wrap: anywhere;
}
.changeSummary p,
.publishAction > p,
.blocked p,
.gateReady p,
.errorState p,
.emptyState p {
color: var(--muted);
line-height: 1.75;
}
.blocked {
margin-top: 30px;
padding-inline: 22px;
border-left: 3px solid #9a611e;
background: #fff9f0;
}
.blocked a,
.gateReady a {
display: inline-flex;
min-height: 44px;
align-items: center;
color: var(--signal);
font-weight: 650;
}
.gateReady {
margin-top: 30px;
padding-inline: 22px;
border-left: 3px solid #2d7257;
background: #f4fbf7;
}
.warningGroup {
margin: 26px 0 0;
padding: 0;
border: 0;
border-top: 1px solid var(--line-strong);
}
.warningGroup legend {
padding: 22px 0 0;
font-size: 17px;
font-weight: 700;
}
.warningGroup > p,
.noWarnings {
margin: 8px 0 16px;
color: var(--muted);
font-size: 13px;
}
.warningList {
border-bottom: 1px solid var(--line);
}
.warningItem {
display: grid;
grid-template-columns: 24px minmax(0, 1fr);
gap: 13px;
min-height: 66px;
align-items: start;
padding-block: 16px;
border-top: 1px solid var(--line);
cursor: pointer;
}
.warningItem input {
width: 20px;
height: 20px;
margin-top: 2px;
accent-color: var(--signal);
}
.warningItem span {
display: grid;
min-width: 0;
gap: 4px;
}
.warningItem strong {
font-family: "IBM Plex Mono", monospace;
font-size: 12px;
overflow-wrap: anywhere;
}
.warningItem small {
color: var(--muted);
line-height: 1.6;
}
.actions,
.dialogActions,
.rowActions {
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.actions {
justify-content: flex-end;
margin-top: 28px;
}
.actions a,
.actions button,
.rowActions a,
.rowActions button,
.filters button,
.dialogActions button {
display: inline-flex;
min-height: 44px;
align-items: center;
justify-content: center;
padding-inline: 15px;
border: 1px solid var(--line-strong);
border-radius: 5px;
background: var(--paper);
color: var(--ink);
font: inherit;
font-size: 13px;
font-weight: 650;
}
.actions button,
.filters button {
border-color: var(--signal);
background: var(--signal);
color: #fff;
}
.actions button:disabled,
.dialogActions button:disabled {
opacity: 0.52;
cursor: not-allowed;
}
.error {
margin-top: 18px;
padding: 13px 15px;
border-left: 3px solid #a13b31;
background: #fff7f4;
color: #75271f !important;
}
.success {
margin-top: 22px;
padding: 13px 15px;
border-left: 3px solid #2d7257;
background: #f4fbf7;
color: #215943;
}
.filters {
display: grid;
grid-template-columns: minmax(260px, 1fr) 190px auto;
gap: 14px;
align-items: end;
padding-block: 28px;
border-bottom: 1px solid var(--line-strong);
}
.filters label {
display: grid;
min-width: 0;
gap: 7px;
color: var(--muted);
font-size: 12px;
font-weight: 650;
}
.filters input,
.filters select {
width: 100%;
min-width: 0;
min-height: 44px;
padding-inline: 12px;
border: 1px solid var(--line-strong);
border-radius: 5px;
background: var(--paper);
color: var(--ink);
font: inherit;
}
.historyList {
margin: 28px 0 0;
padding: 0;
border-top: 1px solid var(--line-strong);
list-style: none;
}
.historyRow {
display: grid;
grid-template-columns: 100px minmax(260px, 1fr) 180px minmax(160px, auto);
gap: 20px;
align-items: start;
padding-block: 25px;
border-bottom: 1px solid var(--line);
}
.eventType,
.kind {
margin: 3px 0 0;
color: var(--muted);
font-family: "IBM Plex Mono", monospace;
font-size: 11px;
letter-spacing: 0.04em;
text-transform: uppercase;
}
.eventMain {
min-width: 0;
}
.eventMain h2 {
margin: 5px 0 0;
font-size: 17px;
line-height: 1.5;
overflow-wrap: anywhere;
}
.eventMain > p:last-child,
.historyRow time {
margin: 6px 0 0;
color: var(--muted);
font-size: 12px;
line-height: 1.6;
overflow-wrap: anywhere;
}
.rowActions {
justify-content: flex-end;
}
.rowActions a,
.rowActions button {
color: var(--signal);
}
.dialog {
width: min(580px, calc(100% - 32px));
max-height: calc(100vh - 32px);
padding: 0;
overflow: auto;
border: 1px solid var(--line-strong);
border-radius: 8px;
background: var(--paper);
color: var(--ink);
}
.dialog::backdrop {
background: rgba(23, 24, 27, 0.5);
}
.dialogBody {
padding: 30px;
}
.dialogBody h2 {
margin: 0 0 12px;
font-size: 28px;
}
.dialogBody > p {
line-height: 1.7;
}
.preservedNote {
margin-top: 22px;
padding: 17px;
border-left: 3px solid #2d7257;
background: #f4fbf7;
}
.preservedNote p {
margin: 6px 0 0;
color: var(--muted);
line-height: 1.6;
}
.dialogActions {
justify-content: flex-end;
margin-top: 28px;
}
.dialogActions button:last-child {
border-color: #9b342d;
background: #9b342d;
color: #fff;
}
.snapshotToolbar {
display: grid;
grid-template-columns: minmax(220px, 1fr) minmax(420px, 1.4fr) auto;
gap: 24px;
align-items: center;
padding-bottom: 28px;
border-bottom: 1px solid var(--line-strong);
}
.snapshotTitle {
margin: 0;
font-size: 21px;
font-weight: 700;
}
.snapshotToolbar dl {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 16px;
margin: 0;
}
.snapshotToolbar a {
display: inline-flex;
min-height: 44px;
align-items: center;
color: var(--signal);
font-size: 13px;
font-weight: 650;
}
.snapshotDocument {
min-width: 0;
padding-top: 30px;
}
.snapshotDocument :global(.public-record-embedded) {
width: 100%;
}
@media (max-width: 980px) {
.summary dl {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.summary dl > div:nth-child(2) {
border-right: 0;
}
.summary dl > div:nth-child(-n + 2) {
border-bottom: 1px solid var(--line);
}
.historyRow {
grid-template-columns: 84px minmax(0, 1fr) 170px;
}
.rowActions {
grid-column: 2 / -1;
}
.snapshotToolbar {
grid-template-columns: minmax(0, 1fr) auto;
}
.snapshotToolbar dl {
grid-column: 1 / -1;
grid-row: 2;
}
}
@media (max-width: 767px) {
.heading {
padding-bottom: 32px;
}
.summary dl,
.filters,
.historyRow,
.snapshotToolbar,
.snapshotToolbar dl {
grid-template-columns: minmax(0, 1fr);
}
.summary dl > div,
.summary dl > div:nth-child(2) {
border-right: 0;
border-bottom: 1px solid var(--line);
}
.summary dl > div:last-child {
border-bottom: 0;
}
.filters button,
.actions a,
.actions button,
.rowActions a,
.rowActions button,
.dialogActions button {
width: 100%;
}
.historyRow {
gap: 8px;
}
.rowActions,
.snapshotToolbar dl {
grid-column: 1;
}
.rowActions,
.actions,
.dialogActions {
align-items: stretch;
flex-direction: column;
}
.dialogBody {
padding: 24px 20px;
}
}
@@ -0,0 +1,92 @@
.studio-app .studio-editor-page,
.studio-app .studio-editor-layout,
.studio-app .studio-editor-workspace,
.studio-app .studio-editor-workspace > [role="tabpanel"] { min-width: 0; }
.studio-app .studio-editor-loading { min-height: 240px; padding-block: 56px; color: var(--muted); }
.studio-app .studio-editor-tabs { display: flex; gap: 28px; border-bottom: 1px solid var(--line-strong); }
.studio-app .studio-editor-tabs button { position: relative; min-width: 112px; min-height: 44px; padding: 0; border: 0; background: transparent; color: var(--muted); font: inherit; font-weight: 650; }
.studio-app .studio-editor-tabs button[aria-selected="true"] { color: var(--ink); }
.studio-app .studio-editor-tabs button[aria-selected="true"]::after { position: absolute; right: 0; bottom: -1px; left: 0; height: 2px; background: var(--signal); content: ""; }
.studio-app .studio-editor-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(240px, 280px); gap: 64px; align-items: start; padding-top: 40px; }
.studio-app .studio-editor-heading { padding-bottom: 36px; border-bottom: 1px solid var(--line-strong); }
.studio-app .studio-editor-heading h1 { margin: 0; font-size: clamp(38px, 5vw, 62px); line-height: 1.05; letter-spacing: -0.045em; }
.studio-app .studio-editor-heading > p:last-child { max-width: 780px; margin: 18px 0 0; color: var(--muted); font-size: 17px; line-height: 1.65; overflow-wrap: anywhere; }
.studio-app .studio-editor-section { padding: 48px 0; border-bottom: 1px solid var(--line); }
.studio-app .studio-editor-section-heading { margin-bottom: 24px; }
.studio-app .studio-editor-section-heading .studio-eyebrow { margin-bottom: 8px; }
.studio-app .studio-editor-section-heading h2,
.studio-app .studio-document-status-rail h2,
.studio-app .studio-preview-error h2 { margin: 0; font-size: 25px; letter-spacing: -0.03em; }
.studio-app .studio-field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.studio-app .studio-field,
.studio-app .studio-ordered-item > label,
.studio-app .studio-relation-item > label { display: grid; min-width: 0; gap: 8px; color: var(--muted); font-size: 12px; font-weight: 650; }
.studio-app .studio-field--wide { grid-column: 1 / -1; }
.studio-app .studio-field input,
.studio-app .studio-field select,
.studio-app .studio-field textarea,
.studio-app .studio-ordered-item input,
.studio-app .studio-ordered-item textarea,
.studio-app .studio-relation-item input,
.studio-app .studio-relation-item select { width: 100%; min-width: 0; min-height: 44px; padding: 10px 12px; border: 1px solid var(--line-strong); border-radius: 5px; background: var(--paper); color: var(--ink); font: inherit; font-size: 15px; font-weight: 450; line-height: 1.55; }
.studio-app .studio-field textarea,
.studio-app .studio-ordered-item textarea { min-height: 112px; resize: vertical; }
.studio-app .studio-field .studio-markdown-field { min-height: 420px; font-family: "IBM Plex Mono", monospace; font-size: 13px; }
.studio-app .studio-ordered-list,
.studio-app .studio-resolution-fields { min-width: 0; margin: 34px 0 0; padding: 0; border: 0; }
.studio-app .studio-ordered-list legend,
.studio-app .studio-resolution-fields legend { margin-bottom: 14px; font-size: 17px; font-weight: 700; }
.studio-app .studio-ordered-list > p { margin: 0 0 16px; color: var(--muted); font-size: 13px; }
.studio-app .studio-ordered-item,
.studio-app .studio-relation-item { display: grid; grid-template-columns: minmax(0, 1fr); gap: 14px; padding: 22px 0; border-top: 1px solid var(--line); }
.studio-app .studio-item-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.studio-app .studio-item-actions button,
.studio-app .studio-add-item,
.studio-app .studio-document-status-rail button { min-height: 44px; padding-inline: 13px; border: 1px solid var(--line-strong); border-radius: 5px; background: var(--paper); color: var(--ink); font-weight: 650; }
.studio-app .studio-item-actions button:disabled,
.studio-app .studio-add-item:disabled { opacity: 0.45; }
.studio-app .studio-add-item { margin-top: 12px; }
.studio-app .studio-resolution-fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.studio-app .studio-resolution-fields legend { grid-column: 1 / -1; }
.studio-app .studio-document-status-rail { position: sticky; top: 28px; min-width: 0; padding: 24px 0; border-top: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong); }
.studio-app .studio-document-status-rail .studio-eyebrow { margin-bottom: 8px; }
.studio-app .studio-editor-status { margin: 20px 0; font-weight: 700; }
.studio-app .studio-editor-status--dirty,
.studio-app .studio-editor-status--conflict,
.studio-app .studio-editor-conflict { color: #8f2f27; }
.studio-app .studio-editor-status--clean { color: #166748; }
.studio-app .studio-document-status-rail dl { display: grid; gap: 12px; margin: 0 0 20px; }
.studio-app .studio-document-status-rail dl div { display: flex; justify-content: space-between; gap: 16px; }
.studio-app .studio-document-status-rail dt { color: var(--muted); font-size: 12px; }
.studio-app .studio-document-status-rail dd { margin: 0; font-size: 13px; }
.studio-app .studio-document-status-rail button { width: 100%; border-color: var(--signal); background: var(--signal); color: #fff; }
.studio-app .studio-document-status-rail button:disabled { border-color: var(--line-strong); background: var(--paper); color: var(--muted); }
.studio-app .studio-document-status-rail > p:last-child { margin: 16px 0 0; color: var(--muted); font-size: 12px; line-height: 1.65; }
.studio-app .studio-instant-preview { min-width: 0; overflow: clip; border: 1px solid var(--line); }
.studio-app .studio-instant-preview .public-record-embedded { width: 100%; max-width: none; margin: 0; padding: clamp(24px, 5vw, 56px); }
.studio-app .studio-preview-error { padding: 48px 0; border-bottom: 1px solid var(--line); }
.studio-app .studio-preview-error ul { margin: 20px 0 0; padding-left: 20px; color: #8f2f27; line-height: 1.7; overflow-wrap: anywhere; }
@media (max-width: 1024px) {
.studio-app .studio-editor-layout { grid-template-columns: minmax(0, 1fr); gap: 40px; }
.studio-app .studio-document-status-rail { position: static; }
}
@media (max-width: 767px) {
.studio-app .studio-editor-heading { padding-bottom: 28px; }
.studio-app .studio-editor-tabs { gap: 18px; }
.studio-app .studio-editor-tabs button { flex: 1; min-width: 0; }
.studio-app .studio-editor-layout { padding-top: 28px; }
.studio-app .studio-field-grid,
.studio-app .studio-resolution-fields { grid-template-columns: minmax(0, 1fr); }
.studio-app .studio-field--wide,
.studio-app .studio-resolution-fields legend { grid-column: auto; }
.studio-app .studio-item-actions { display: grid; grid-template-columns: minmax(0, 1fr); }
.studio-app .studio-instant-preview .public-record-embedded { padding: 22px 16px; }
}
@@ -0,0 +1,155 @@
.studio-app { min-height: 100vh; color: var(--ink); }
.studio-app .studio-skip-link { position: fixed; z-index: 100; top: 12px; left: 16px; padding: 10px 14px; border: 1px solid var(--line-strong); border-radius: 6px; background: var(--paper); transform: translateY(-160%); }
.studio-app .studio-skip-link:focus { transform: translateY(0); }
.studio-app .studio-header { border-bottom: 1px solid var(--line); background: rgba(252, 252, 251, 0.94); }
.studio-app .studio-header-inner,
.studio-app .studio-mobile-navigation,
.studio-app .studio-main { width: min(1180px, calc(100% - 80px)); margin-inline: auto; }
.studio-app .studio-header-inner { display: flex; min-height: 76px; align-items: center; justify-content: space-between; gap: 40px; }
.studio-app .studio-wordmark { display: inline-flex; min-height: 44px; align-items: center; font-size: 17px; font-weight: 700; letter-spacing: -0.02em; }
.studio-app .studio-wordmark span { margin-left: 5px; color: var(--signal); font-family: "IBM Plex Mono", monospace; font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; }
.studio-app .studio-desktop-navigation nav,
.studio-app .studio-mobile-navigation nav { display: flex; align-items: center; gap: 26px; }
.studio-app .studio-desktop-navigation a,
.studio-app .studio-mobile-navigation a { display: inline-flex; min-height: 44px; align-items: center; color: var(--muted); font-size: 14px; }
.studio-app nav a[aria-current="page"] { color: var(--ink); font-weight: 650; }
.studio-app .studio-menu-trigger { display: none; min-height: 44px; padding-inline: 12px; border: 1px solid var(--line-strong); border-radius: 5px; background: var(--paper); color: var(--ink); }
.studio-app .studio-mobile-navigation { padding-bottom: 16px; }
.studio-app .studio-main { padding-block: 72px 120px; }
.studio-app .studio-page-heading { max-width: 760px; padding-bottom: 52px; }
.studio-app .studio-page-heading h1,
.studio-app .studio-route-state h1 { margin: 0 0 18px; font-size: clamp(36px, 6vw, 64px); line-height: 1.08; letter-spacing: -0.045em; }
.studio-app .studio-eyebrow { margin: 0 0 14px; color: var(--muted); font-family: "IBM Plex Mono", monospace; font-size: 12px; letter-spacing: 0.08em; }
.studio-app .studio-overview-list { border-top: 1px solid var(--line-strong); }
.studio-app .studio-overview-list section { display: grid; grid-template-columns: 130px minmax(180px, 0.8fr) minmax(260px, 1.4fr) auto; align-items: baseline; gap: 24px; padding-block: 28px; border-bottom: 1px solid var(--line); }
.studio-app .studio-overview-list h2,
.studio-app .studio-overview-list p { margin: 0; }
.studio-app .studio-overview-list a,
.studio-app .studio-route-state > a { color: var(--signal); font-weight: 650; }
.studio-app .studio-route-state { max-width: 720px; padding-block: 48px; }
.studio-app .studio-route-state button { min-height: 44px; margin-top: 18px; padding-inline: 16px; border: 1px solid var(--signal); border-radius: 5px; background: var(--signal); color: #fff; }
.studio-app .studio-loading { min-height: 180px; }
.studio-app .studio-visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.studio-app .studio-unsaved-dialog { width: min(560px, calc(100% - 32px)); padding: 0; border: 1px solid var(--line-strong); border-radius: 8px; background: var(--paper); color: var(--ink); }
.studio-app .studio-unsaved-dialog::backdrop { background: rgba(23, 24, 27, 0.48); }
.studio-app .studio-dialog-body { padding: 30px; }
.studio-app .studio-dialog-body h2 { margin: 0 0 12px; font-size: 26px; }
.studio-app .studio-dialog-error { color: #8f2f27; }
.studio-app .studio-dialog-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; margin-top: 28px; }
.studio-app .studio-dialog-actions button { min-height: 44px; padding-inline: 14px; border: 1px solid var(--line-strong); border-radius: 5px; background: var(--paper); color: var(--ink); }
.studio-app .studio-dialog-actions button:last-child { border-color: var(--signal); background: var(--signal); color: #fff; }
.studio-app .studio-page-top { display: flex; align-items: flex-end; justify-content: space-between; gap: 36px; border-bottom: 1px solid var(--line-strong); }
.studio-app .studio-page-top .studio-page-heading { padding-bottom: 42px; }
.studio-app .studio-primary-action,
.studio-app .studio-primary-button,
.studio-app .studio-secondary-button,
.studio-app .studio-document-tools button,
.studio-app .studio-empty-state a { display: inline-flex; min-height: 44px; align-items: center; justify-content: center; padding-inline: 16px; border: 1px solid var(--line-strong); border-radius: 5px; background: var(--paper); color: var(--ink); font-weight: 650; }
.studio-app .studio-primary-action,
.studio-app .studio-primary-button { margin-bottom: 42px; border-color: var(--signal); background: var(--signal); color: #fff; }
.studio-app .studio-summary-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 28px; border-block: 1px solid var(--line); }
.studio-app .studio-summary-grid div { display: grid; gap: 9px; padding: 22px; border-right: 1px solid var(--line); }
.studio-app .studio-summary-grid div:last-child { border-right: 0; }
.studio-app .studio-summary-grid span { color: var(--muted); font-size: 12px; }
.studio-app .studio-summary-grid strong { font-size: 24px; letter-spacing: -0.03em; }
.studio-app .studio-work-section { padding-top: 54px; }
.studio-app .studio-section-title { display: flex; min-height: 52px; align-items: center; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line-strong); }
.studio-app .studio-section-title h2 { margin: 0; font-size: 24px; }
.studio-app .studio-section-title a { display: inline-flex; min-height: 44px; align-items: center; color: var(--signal); font-size: 13px; font-weight: 650; }
.studio-app .studio-work-list,
.studio-app .studio-document-list { border-bottom: 1px solid var(--line); }
.studio-app .studio-work-row { display: grid; grid-template-columns: 110px minmax(0, 1fr) 130px; gap: 24px; align-items: start; padding-block: 24px; border-top: 1px solid var(--line); }
.studio-app .studio-work-list > :first-child { border-top: 0; }
.studio-app .studio-row-label { margin: 3px 0 0; color: var(--muted); font-family: "IBM Plex Mono", monospace; font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase; }
.studio-app .studio-work-row h3 { margin: 0; font-size: 17px; line-height: 1.5; overflow-wrap: anywhere; }
.studio-app .studio-work-row h3 a { display: inline-flex; min-height: 44px; align-items: flex-start; }
.studio-app .studio-work-row div p,
.studio-app .studio-work-row time { margin: 5px 0 0; color: var(--muted); font-size: 13px; }
.studio-app .studio-empty-inline { margin: 0; padding-block: 26px; color: var(--muted); }
.studio-app .studio-screen-error { margin-top: 26px; padding: 16px; border-left: 3px solid #a13b31; background: #fff7f4; color: #75271f; }
.studio-app .studio-document-tools { display: grid; grid-template-columns: minmax(280px, 1fr) 180px 180px; gap: 16px; padding-block: 28px; border-bottom: 1px solid var(--line-strong); }
.studio-app .studio-document-tools form,
.studio-app .studio-document-tools label { display: grid; gap: 8px; color: var(--muted); font-size: 12px; font-weight: 650; }
.studio-app .studio-document-tools form div { display: flex; gap: 8px; }
.studio-app .studio-document-tools input,
.studio-app .studio-document-tools select { width: 100%; min-width: 0; min-height: 44px; padding-inline: 12px; border: 1px solid var(--line-strong); border-radius: 5px; background: var(--paper); color: var(--ink); }
.studio-app .studio-document-tools input { flex: 1; }
.studio-app .studio-result-count { margin: 24px 0 10px; color: var(--muted); font-size: 13px; }
.studio-app .studio-document-row { display: grid; grid-template-columns: 105px minmax(240px, 1fr) minmax(360px, 0.9fr); gap: 24px; align-items: start; padding-block: 26px; border-top: 1px solid var(--line); }
.studio-app .studio-document-list > :first-child { border-top: 0; }
.studio-app .studio-document-title h2 { margin: 0; font-size: 17px; line-height: 1.5; overflow-wrap: anywhere; }
.studio-app .studio-document-title h2 a { display: inline-flex; min-height: 44px; align-items: flex-start; }
.studio-app .studio-document-title p { margin: 4px 0 0; color: var(--muted); font-size: 13px; }
.studio-app .studio-document-row dl { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin: 0; }
.studio-app .studio-document-row dt { color: var(--muted); font-size: 11px; }
.studio-app .studio-document-row dd { margin: 5px 0 0; font-size: 13px; overflow-wrap: anywhere; }
.studio-app .studio-secondary-button { margin-top: 24px; }
.studio-app .studio-empty-state { padding-block: 56px; border-bottom: 1px solid var(--line); }
.studio-app .studio-empty-state h2 { margin: 0; font-size: 25px; }
.studio-app .studio-empty-state p { margin: 12px 0 22px; color: var(--muted); }
.studio-app .studio-type-list { margin: 0; padding: 0; border: 0; border-top: 1px solid var(--line-strong); }
.studio-app .studio-type-list legend { padding: 0 0 16px; font-size: 20px; font-weight: 700; }
.studio-app .studio-type-list label { display: grid; grid-template-columns: 32px 140px minmax(260px, 1fr) minmax(220px, 0.8fr); gap: 18px; min-height: 88px; align-items: center; padding-block: 20px; border-bottom: 1px solid var(--line); cursor: pointer; }
.studio-app .studio-type-list input { width: 20px; height: 20px; margin: 0; }
.studio-app .studio-type-list strong { font-size: 18px; }
.studio-app .studio-type-list span,
.studio-app .studio-type-list small { color: var(--muted); line-height: 1.6; }
.studio-app .studio-create-footer { display: flex; align-items: center; gap: 20px; margin-top: 28px; }
.studio-app .studio-create-footer .studio-primary-button { margin: 0; }
.studio-app .studio-create-footer p { margin: 0; color: var(--muted); font-size: 13px; }
.studio-app .studio-primary-button:disabled { opacity: 0.55; cursor: wait; }
@media (max-width: 900px) {
.studio-app .studio-overview-list section { grid-template-columns: 110px minmax(0, 1fr); }
.studio-app .studio-overview-list section > p:nth-of-type(2),
.studio-app .studio-overview-list section > a { grid-column: 2; }
.studio-app .studio-summary-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.studio-app .studio-summary-grid div:nth-child(2) { border-right: 0; }
.studio-app .studio-summary-grid div:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
.studio-app .studio-document-tools { grid-template-columns: minmax(0, 1fr) repeat(2, 160px); }
.studio-app .studio-document-row { grid-template-columns: 90px minmax(0, 1fr); }
.studio-app .studio-document-row dl { grid-column: 2; }
}
@media (max-width: 767px) {
.studio-app .studio-header-inner,
.studio-app .studio-mobile-navigation,
.studio-app .studio-main { width: min(100% - 32px, 1180px); }
.studio-app .studio-header-inner { min-height: 68px; gap: 16px; }
.studio-app .studio-desktop-navigation { display: none; }
.studio-app .studio-menu-trigger { display: inline-flex; align-items: center; }
.studio-app .studio-mobile-navigation nav { align-items: stretch; flex-direction: column; gap: 2px; }
.studio-app .studio-mobile-navigation a { width: 100%; }
.studio-app .studio-main { padding-block: 48px 88px; }
.studio-app .studio-overview-list section { display: block; }
.studio-app .studio-overview-list h2 { margin-bottom: 8px; }
.studio-app .studio-overview-list a { display: inline-flex; min-height: 44px; margin-top: 12px; align-items: center; }
.studio-app .studio-dialog-body { padding: 24px 20px; }
.studio-app .studio-dialog-actions { align-items: stretch; flex-direction: column; }
.studio-app .studio-page-top { align-items: flex-start; flex-direction: column; gap: 0; }
.studio-app .studio-page-top .studio-page-heading { padding-bottom: 24px; }
.studio-app .studio-primary-action { width: 100%; margin: 0 0 32px; }
.studio-app .studio-work-section { padding-top: 42px; }
.studio-app .studio-work-row { grid-template-columns: 78px minmax(0, 1fr); gap: 12px; }
.studio-app .studio-work-row time { grid-column: 2; }
.studio-app .studio-document-tools { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.studio-app .studio-document-tools form { grid-column: 1 / -1; }
.studio-app .studio-document-row { grid-template-columns: 74px minmax(0, 1fr); gap: 12px; }
.studio-app .studio-document-row dl { grid-column: 2; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.studio-app .studio-type-list label { grid-template-columns: 30px minmax(0, 1fr); gap: 7px 12px; }
.studio-app .studio-type-list span,
.studio-app .studio-type-list small { grid-column: 2; }
.studio-app .studio-create-footer { align-items: stretch; flex-direction: column; }
}
@media (max-width: 420px) {
.studio-app .studio-summary-grid { grid-template-columns: minmax(0, 1fr); }
.studio-app .studio-summary-grid div { border-right: 0; border-bottom: 1px solid var(--line); }
.studio-app .studio-summary-grid div:last-child { border-bottom: 0; }
.studio-app .studio-document-tools { grid-template-columns: minmax(0, 1fr); }
.studio-app .studio-document-tools form { grid-column: 1; }
.studio-app .studio-document-row dl { grid-template-columns: minmax(0, 1fr); }
}
@@ -0,0 +1,88 @@
:global(.studio-workflow-screen),
:global(.studio-preview-screen) { min-width: 0; }
:global(.studio-workflow-heading),
:global(.studio-preview-toolbar) { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; padding-bottom: 42px; border-bottom: 1px solid var(--line-strong); }
:global(.studio-workflow-heading) h1,
:global(.studio-preview-toolbar) h1 { margin: 0; font-size: clamp(38px, 5vw, 62px); line-height: 1.06; letter-spacing: -0.045em; }
:global(.studio-workflow-heading > div > p:last-child),
:global(.studio-preview-toolbar > div > p:last-child) { max-width: 780px; margin: 16px 0 0; color: var(--muted); font-size: 17px; line-height: 1.6; overflow-wrap: anywhere; }
:global(.studio-workflow-quiet-link) { display: inline-flex; min-height: 44px; align-items: center; color: var(--signal); font-weight: 650; white-space: nowrap; }
:global(.studio-workflow-gate) { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 36px; align-items: center; margin-top: 34px; padding: 28px; border: 1px solid var(--line-strong); border-left-width: 4px; }
:global(.studio-workflow-gate--ready) { border-left-color: #166748; background: #f3faf6; }
:global(.studio-workflow-gate--blocked) { border-left-color: #9a5a1f; background: #fff9f0; }
:global(.studio-workflow-gate) h2 { margin: 0; font-size: 25px; letter-spacing: -0.03em; }
:global(.studio-workflow-gate) p:last-child { margin: 10px 0 0; color: var(--muted); line-height: 1.65; }
:global(.studio-workflow-actions) { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
:global(.studio-workflow-actions) button,
:global(.studio-workflow-actions) a { display: inline-flex; min-height: 44px; align-items: center; justify-content: center; padding-inline: 15px; border: 1px solid var(--line-strong); border-radius: 5px; background: var(--paper); color: var(--ink); font-weight: 650; }
:global(.studio-workflow-actions) button:first-child { border-color: var(--signal); background: var(--signal); color: #fff; }
:global(.studio-workflow-actions) button:disabled { opacity: 0.55; cursor: wait; }
:global(.studio-workflow-feedback) { margin: 18px 0 0; padding: 14px 16px; border-left: 3px solid var(--signal); background: #f5f7ff; }
:global(.studio-workflow-loading) { min-height: 240px; padding-block: 56px; color: var(--muted); }
:global(.studio-workflow-report) { margin-top: 54px; border-top: 1px solid var(--line-strong); }
:global(.studio-workflow-section-heading) { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 26px; border-bottom: 1px solid var(--line); }
:global(.studio-workflow-section-heading) h2 { margin: 0; font-size: 28px; letter-spacing: -0.03em; }
:global(.studio-workflow-status) { display: inline-flex; min-height: 32px; align-items: center; padding-inline: 11px; border: 1px solid currentColor; border-radius: 999px; font-family: "IBM Plex Mono", monospace; font-size: 11px; font-weight: 700; }
:global(.studio-workflow-status--invalid) { color: #8f2f27; }
:global(.studio-workflow-status--warnings) { color: #8b5a14; }
:global(.studio-workflow-status--valid) { color: #166748; }
:global(.studio-workflow-metadata),
:global(.studio-preview-metadata) { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin: 0; border-bottom: 1px solid var(--line); }
:global(.studio-workflow-metadata) div,
:global(.studio-preview-metadata) div { min-width: 0; padding: 20px; border-right: 1px solid var(--line); }
:global(.studio-workflow-metadata) div:last-child,
:global(.studio-preview-metadata) div:last-child { border-right: 0; }
:global(.studio-workflow-metadata) dt,
:global(.studio-preview-metadata) dt { color: var(--muted); font-size: 11px; }
:global(.studio-workflow-metadata) dd,
:global(.studio-preview-metadata) dd { margin: 7px 0 0; font-size: 13px; overflow-wrap: anywhere; }
:global(.studio-workflow-issue-list) { margin: 0; padding: 0; list-style: none; }
:global(.studio-workflow-issue-list) li { min-width: 0; border-bottom: 1px solid var(--line); }
:global(.studio-workflow-issue-list) a { display: grid; grid-template-columns: 72px minmax(0, 1fr) auto; min-width: 0; gap: 18px; align-items: start; padding-block: 22px; color: inherit; }
:global(.studio-workflow-issue-severity) { color: var(--muted); font-family: "IBM Plex Mono", monospace; font-size: 11px; }
:global(.studio-workflow-issue-body) { display: grid; min-width: 0; gap: 7px; }
:global(.studio-workflow-issue-body) strong,
:global(.studio-workflow-issue-body) small { overflow-wrap: anywhere; }
:global(.studio-workflow-issue-body) small { color: var(--muted); font-family: "IBM Plex Mono", monospace; }
:global(.studio-workflow-empty-issues),
:global(.studio-workflow-empty-panel) { margin: 0; padding-block: 42px; border-bottom: 1px solid var(--line); color: var(--muted); }
:global(.studio-workflow-empty-panel) h2 { margin: 0; color: var(--ink); font-size: 25px; }
:global(.studio-workflow-empty-panel) p { margin: 10px 0 0; }
:global(.studio-preview-toolbar--compact) { padding-bottom: 28px; }
:global(.studio-preview-title) { margin: 0; color: var(--ink); font-size: 28px; font-weight: 700; letter-spacing: -0.03em; }
:global(.studio-preview-state) { display: flex; justify-content: space-between; gap: 28px; align-items: center; margin-top: 24px; padding: 20px; border: 1px solid var(--line-strong); border-left-width: 4px; }
:global(.studio-preview-state) strong { font-family: "IBM Plex Mono", monospace; font-size: 12px; }
:global(.studio-preview-state) p { margin: 5px 0 0; color: var(--muted); }
:global(.studio-preview-state--current) { border-left-color: #166748; background: #f3faf6; }
:global(.studio-preview-state--none),
:global(.studio-preview-state--stale) { border-left-color: #9a5a1f; background: #fff9f0; }
:global(.studio-preview-state--expired) { border-left-color: #8f2f27; background: #fff7f4; }
:global(.studio-preview-metadata) { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 20px; border-top: 1px solid var(--line); }
:global(.studio-preview-public-frame) { min-width: 0; margin-top: 38px; overflow: clip; border: 1px solid var(--line); background: var(--paper); }
:global(.studio-preview-public-frame .public-record-embedded) { width: 100%; max-width: none; margin: 0; padding: clamp(24px, 5vw, 56px); }
@media (max-width: 1024px) {
:global(.studio-workflow-gate) { grid-template-columns: minmax(0, 1fr); }
:global(.studio-preview-state) { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 767px) {
:global(.studio-workflow-heading),
:global(.studio-preview-toolbar) { align-items: flex-start; flex-direction: column; gap: 12px; padding-bottom: 28px; }
:global(.studio-workflow-quiet-link) { white-space: normal; }
:global(.studio-workflow-gate) { margin-top: 24px; padding: 22px 18px; }
:global(.studio-workflow-actions) { display: grid; width: 100%; grid-template-columns: minmax(0, 1fr); }
:global(.studio-workflow-metadata),
:global(.studio-preview-metadata) { grid-template-columns: minmax(0, 1fr); }
:global(.studio-workflow-metadata) div,
:global(.studio-preview-metadata) div { border-right: 0; border-bottom: 1px solid var(--line); }
:global(.studio-workflow-metadata) div:last-child,
:global(.studio-preview-metadata) div:last-child { border-bottom: 0; }
:global(.studio-workflow-issue-list) a { grid-template-columns: minmax(0, 1fr); gap: 8px; }
:global(.studio-workflow-issue-list) a > span:last-child { display: none; }
:global(.studio-preview-public-frame .public-record-embedded) { padding: 22px 16px; }
}