/**
 * Board Basic Skin - CSS
 *
 * List / View / Write / Comment 전체 커버
 */

/* ========================================
   Board Variables
   ======================================== */
.board-list,
.board-view,
.board-write {
    --board-bg: var(--card);
    --board-bg-alt: var(--muted);
    --board-bg-hover: var(--accent);
    --board-border: var(--border);
    --board-border-light: var(--border-subtle);
    --board-text: var(--foreground);
    --board-text-secondary: var(--muted-foreground);
    --board-text-muted: var(--muted-foreground);
    --board-primary: var(--primary);
    --board-primary-hover: color-mix(in srgb, var(--primary) 90%, var(--background));
    --board-primary-light: var(--accent);
    --board-danger: var(--destructive);
    --board-success: var(--success);
    --board-warning: var(--warning);
    --board-notice-bg: var(--warning-subtle);
    --board-notice-border: var(--warning-subtle-border);
    --board-radius: 6px;
    --board-radius-sm: 4px;
    --board-radius-lg: 8px;
    --board-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    --board-shadow-md: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* ========================================
   Form Controls (base)
   ======================================== */
.board-list input,
.board-list select,
.board-list textarea,
.board-list button,
.board-list__write-btn,
.board-view input,
.board-view select,
.board-view textarea,
.board-view button,
.board-view__btn,
.board-write input,
.board-write select,
.board-write textarea,
.board-write button,
.board-write__btn {
    font-size: 0.875rem;
}

/* Mublo editor focus override (match board form focus style) */
.board-write .mublo-editor-wrapper.focused {
    border-color: var(--board-text);
    box-shadow: none;
}

/* ========================================
   Board List
   ======================================== */
.board-list {
    max-width: 960px;
    margin: 0 auto;
}

/* Header */
.board-list__header {
    padding: 24px 0 20px;
    border-bottom: 2px solid var(--board-text);
}

.board-list__title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--board-text);
    margin: 0;
}

.board-list__desc {
    margin-top: 0;
    font-size: 0.875rem;
    color: var(--board-text-secondary);
}

/* Category filter */
.board-list__category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 16px 0;
}

.board-list__category-link {
    display: inline-block;
    padding: 5px 14px;
    font-size: 0.8125rem;
    color: var(--board-text-secondary);
    border: 1px solid var(--board-border);
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.15s;
}

.board-list__category-link:hover {
    color: var(--board-text);
    border-color: var(--board-text-muted);
    text-decoration: none;
}

.board-list__category-link--active {
    color: var(--primary-foreground);
    background: var(--board-primary);
    border-color: var(--board-primary);
    font-weight: 600;
}

.board-list__category-link--active:hover {
    color: var(--primary-foreground);
    background: var(--board-primary-hover);
    border-color: var(--board-primary-hover);
}

/* Table */
.board-list__table-wrap {
    border-bottom: 1px solid var(--board-border);
}

.board-list__table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.board-list__th {
    padding: 12px 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--board-text-secondary);
    text-align: center;
    border-bottom: 1px solid var(--board-border);
    background: var(--board-bg-alt);
    white-space: nowrap;
}

.board-list__th--no { width: 64px; }
.board-list__th--category { width: 100px; }
.board-list__th--title { text-align: left; }
.board-list__th--author { width: 100px; }
.board-list__th--date { width: 90px; }
.board-list__th--views { width: 64px; }

/* Rows */
.board-list__row {
    transition: background-color 0.1s;
}

.board-list__row:hover {
    background-color: var(--board-bg-hover);
}

.board-list__row--notice {
    background-color: var(--board-notice-bg);
}

.board-list__row--notice:hover {
    background-color: var(--warning-subtle);
}

.board-list__td {
    padding: 13px 8px;
    font-size: 0.875rem;
    color: var(--board-text);
    border-bottom: 1px solid var(--board-border-light);
    vertical-align: middle;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.board-list__td--no {
    text-align: center;
    color: var(--board-text-muted);
    font-size: 0.8125rem;
}

.board-list__td--category {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--board-text-secondary);
}

.board-list__td--title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.board-list__td--author {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--board-text-secondary);
}

.board-list__td--date {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--board-text-muted);
}

.board-list__td--views {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--board-text-muted);
}

/* Link */
.board-list__link {
    color: var(--board-text);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.1s;
}

.board-list__link:hover {
    color: var(--board-primary);
    text-decoration: none;
}

/* Badges */
.board-list__badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: var(--board-radius-sm);
    vertical-align: middle;
    line-height: 1.4;
}

.board-list__badge--notice {
    background: var(--board-warning);
    color: var(--warning-foreground);
}

.board-list__badge--new {
    background: var(--board-primary);
    color: var(--primary-foreground);
    margin-left: 4px;
    font-size: 0.625rem;
    padding: 1px 4px;
    border-radius: var(--board-radius-sm);
}

/* Comment count */
.board-list__comment-count {
    color: var(--board-primary);
    font-size: 0.8125rem;
    font-weight: 600;
    margin-left: 4px;
}

/* Secret icon */
.board-list__icon--secret {
    font-size: 0.75rem;
    margin-right: 2px;
    vertical-align: middle;
}

/* Keyword highlight */
.highlight-keyword {
    background: var(--warning-subtle);
    padding: 0 2px;
    border-radius: var(--board-radius);
}

/* Empty state */
.board-list__empty {
    padding: 60px 0 !important;
    text-align: center;
    color: var(--board-text-muted);
    font-size: 0.9375rem;
    border-bottom: none !important;
}

/* ========================================
   Board List Footer
   ======================================== */
.board-list__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding: 8px 0 32px;
}

/* Search */
.board-list__search {
    display: flex;
    align-items: center;
    gap: 6px;
}

.board-list__search-select {
    padding: 8px 32px 8px 12px;
    border: 1px solid var(--board-border);
    border-radius: var(--board-radius);
    color: var(--board-text);
    background: var(--board-bg) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path fill='none' stroke='%23868e96' stroke-width='1.5' d='M1 1.5l5 5 5-5'/></svg>") no-repeat right 10px center / 12px 8px;
    cursor: pointer;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.board-list__search-select:focus {
    border-color: var(--board-text);
}

.board-list__search-input {
    width: 180px;
    padding: 8px 12px;
    border: 1px solid var(--board-border);
    border-radius: var(--board-radius);
    color: var(--board-text);
    outline: none;
    transition: border-color 0.15s;
}

.board-list__search-input:focus {
    border-color: var(--board-text);
}

.board-list__search-btn {
    padding: 8px 16px;
    background: var(--board-text);
    color: var(--card);
    border: 1px solid var(--board-text);
    border-radius: var(--board-radius);
    cursor: pointer;
    transition: background-color 0.15s;
}

.board-list__search-btn:hover {
    background: color-mix(in srgb, var(--board-text) 90%, var(--background));
}

/* Write button */
.board-list__actions {
    margin-left: auto;
}

.board-list__write-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: var(--board-primary);
    color: var(--primary-foreground);
    border: 1px solid var(--board-primary);
    border-radius: var(--board-radius);
    text-decoration: none;
    transition: background-color 0.15s;
}

.board-list__write-btn:hover {
    background: var(--board-primary-hover);
    color: var(--primary-foreground);
    text-decoration: none;
}

.board-list__write-btn--disabled,
.board-list__write-btn--disabled:hover {
    background: var(--board-bg-alt);
    color: var(--board-text-muted);
    border-color: var(--board-border);
    cursor: not-allowed;
    text-decoration: none;
}

/* ========================================
   Pagination (Theme Override)
   ======================================== */
.board-list__pagination {
    --pagination-color: var(--board-text-secondary);
    --pagination-hover-bg: var(--board-bg-alt);
    --pagination-hover-color: var(--board-text);
    --pagination-active-bg: var(--board-text);
    --pagination-active-color: var(--card);
    --pagination-disabled-color: var(--board-text-muted);

    width: 100%;
    display: flex;
    justify-content: center;
}

/* ========================================
   Board View
   ======================================== */
.board-view {
    max-width: 960px;
    margin: 0 auto;
}

/* Board header (breadcrumb) */
.board-view__board-header {
    padding: 16px 0;
}

.board-view__board-name {
    font-size: 0.9375rem;
    font-weight: 500;
    margin: 0;
}

.board-view__board-name a {
    color: var(--board-text-secondary);
    text-decoration: none;
}

.board-view__board-name a:hover {
    color: var(--board-primary);
}

/* Article header */
.board-view__header {
    padding: 20px 0;
    border-top: 2px solid var(--board-text);
    border-bottom: 1px solid var(--board-border);
}

.board-view__title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--board-text);
    line-height: 1.5;
    margin: 0 0 12px;
    word-break: break-word;
}

.board-view__badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: var(--board-radius);
    vertical-align: middle;
    margin-right: 6px;
}

.board-view__badge--notice {
    background: var(--board-warning);
    color: var(--warning-foreground);
}

.board-view__icon--secret {
    font-size: 0.875rem;
    margin-right: 4px;
}

/* Meta */
.board-view__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 0.8125rem;
    color: var(--board-text-secondary);
}

.board-view__meta > span + span::before {
    content: '\00B7';
    margin-right: 6px;
    color: var(--board-text-muted);
}

.board-view__author {
    font-weight: 600;
    color: var(--board-text);
}

.board-view__updated {
    color: var(--board-text-muted);
    font-style: italic;
}

/* Content */
.board-view__content {
    padding: 32px 0;
    min-height: 200px;
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--board-text);
    word-break: break-word;
    border-bottom: 1px solid var(--board-border);
}

.board-view__content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--board-radius);
}

.board-view__content p {
    margin-bottom: 12px;
}

.board-view__content ol,
.board-view__content ul {
    margin: 12px 0;
    padding-left: 1.75rem;
}

.board-view__content li + li {
    margin-top: 4px;
}

.board-view__content h1,
.board-view__content h2,
.board-view__content h3 {
    margin-top: 24px;
    margin-bottom: 12px;
}

.board-view__content pre {
    background: var(--muted);
    border: 1px solid var(--board-border);
    border-radius: var(--board-radius);
    padding: 16px;
    overflow-x: auto;
    font-size: 0.8125rem;
    line-height: 1.6;
}

.board-view__content code {
    background: var(--muted);
    padding: 2px 6px;
    border-radius: var(--board-radius);
    font-size: 0.85em;
}

.board-view__content pre code {
    background: none;
    padding: 0;
}

.board-view__content blockquote {
    border-left: 3px solid var(--board-border);
    padding: 8px 16px;
    margin: 12px 0;
    color: var(--board-text-secondary);
}

.board-view__content a {
    color: var(--board-primary);
    word-break: break-all;
}

.board-view__content table {
    width: 100%;
    border-collapse: collapse;
    margin: 12px 0;
}

.board-view__content th,
.board-view__content td {
    border: 1px solid var(--board-border);
    padding: 8px 12px;
    text-align: left;
}

.board-view__content th {
    background: var(--board-bg-alt);
    font-weight: 600;
}

/* Reactions */
.board-reaction {
    padding: 20px 0;
    text-align: center;
    border-bottom: 1px solid var(--board-border);
}

.board-reaction__buttons {
    display: inline-flex;
    align-items: flex-start;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
}

.board-reaction__btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 56px;
    padding: 4px 6px;
    color: var(--board-text-secondary);
    background: transparent;
    border: 0;
    cursor: pointer;
    transition: transform 0.15s, opacity 0.15s;
    user-select: none;
}

.board-reaction__btn:hover:not(:disabled) {
    transform: translateY(-2px);
}

.board-reaction__btn:hover:not(:disabled) .board-reaction__meta {
    font-weight: 700;
}

.board-reaction__btn--active .board-reaction__meta,
.board-reaction__btn--active .board-reaction__count {
    color: var(--reaction-color, var(--board-primary));
}

.board-reaction__btn--active .board-reaction__count {
    font-weight: 700;
}

.board-reaction__btn:disabled {
    cursor: default;
}

.board-reaction__icon {
    font-size: 1.75rem;
    line-height: 1;
}

.board-reaction__meta {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    font-size: 0.75rem;
}

.board-reaction__label {
    color: inherit;
}

.board-reaction__count {
    font-weight: 400;
    color: var(--board-text-muted);
}

.board-reaction__summary {
    display: table;
    margin: 12px auto 0;
    padding: 5px 14px;
    font-size: 0.8125rem;
    color: var(--board-text-secondary);
    background: var(--board-bg-alt);
    border: 1px solid var(--board-border);
    border-radius: 20px;
}

.board-reaction__summary strong {
    color: var(--board-text);
    font-weight: 700;
}

.board-reaction__login-hint {
    margin-top: 8px;
    font-size: 0.75rem;
    color: var(--board-text-muted);
}

.board-reaction__login-hint a {
    color: var(--board-primary);
    text-decoration: none;
}

.board-reaction__login-hint a:hover {
    text-decoration: underline;
}

/* Actions */
.board-view__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.board-view__actions-left,
.board-view__actions-right {
    display: flex;
    gap: 6px;
}

.board-view__btn {
    display: inline-flex;
    align-items: center;
    /* inline-flex 라 아이콘과 라벨 사이 마크업 공백이 제거된다 (익명 플렉스 아이템의
       앞뒤 공백 제거). 아이콘이 있는 버튼(플러그인 액션 등)을 위해 gap 으로 준다 */
    gap: 6px;
    padding: 8px 16px;
    border: 1px solid var(--board-border);
    border-radius: var(--board-radius);
    background: var(--board-bg);
    color: var(--board-text-secondary);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.1s;
}

.board-view__btn:hover {
    background: var(--board-bg-alt);
    color: var(--board-text);
    text-decoration: none;
}

.board-view__btn--edit {
    color: var(--board-primary);
    border-color: var(--board-primary);
}

.board-view__btn--edit:hover {
    background: var(--board-primary);
    color: var(--primary-foreground);
}

.board-view__btn--delete {
    color: var(--board-danger);
    border-color: var(--board-danger);
}

.board-view__btn--delete:hover {
    background: var(--board-danger);
    color: var(--destructive-foreground);
}

.board-view__btn--write {
    color: var(--board-text);
    border-color: var(--board-text);
}

.board-view__btn--disabled,
.board-view__btn--disabled:hover {
    background: var(--board-bg-alt);
    color: var(--board-text-muted);
    border-color: var(--board-border);
    cursor: not-allowed;
}

.board-view__btn--write:hover {
    background: var(--board-text);
    color: var(--card);
}

.board-view__btn--list {
    color: var(--board-text);
}

/* Adjacent (prev/next) */
.board-view__adjacent {
    border-top: 1px solid var(--board-border);
    border-bottom: 1px solid var(--board-border);
    margin-bottom: 24px;
}

.board-view__adjacent-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    font-size: 0.875rem;
}

.board-view__adjacent-item + .board-view__adjacent-item {
    border-top: 1px solid var(--board-border-light);
}

.board-view__adjacent-label {
    flex-shrink: 0;
    width: 56px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--board-text-muted);
    text-transform: uppercase;
}

.board-view__adjacent-link {
    color: var(--board-text);
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.board-view__adjacent-link:hover {
    color: var(--board-primary);
    text-decoration: none;
}

/* ========================================
   Comments
   ======================================== */
.board-comment {
    margin-top: 8px;
}

.board-comment__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--board-text);
    padding-bottom: 12px;
    border-bottom: 1px solid var(--board-border);
    margin: 0;
}

.board-comment__count {
    color: var(--board-primary);
    font-weight: 700;
}

.board-comment__empty {
    padding: 32px 0;
    text-align: center;
    color: var(--board-text-muted);
    font-size: 0.875rem;
}

/* Comment item */
.board-comment__item {
    padding: 16px 0;
    border-bottom: 1px solid var(--board-border-light);
}

.board-comment__item-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.board-comment__item-author {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--board-text);
}

.board-comment__item-date {
    font-size: 0.75rem;
    color: var(--board-text-muted);
}

.board-comment__item-content {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--board-text);
    word-break: break-word;
}

.board-comment__icon--secret {
    font-size: 0.75rem;
    margin-right: 2px;
}

.board-comment__item-actions {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.board-comment__item-actions .board-comment__btn {
    padding: 4px 10px;
}

.board-comment__btn {
    padding: 8px 12px;
    color: var(--board-text-muted);
    background: none;
    border: 1px solid var(--board-border);
    border-radius: var(--board-radius);
    cursor: pointer;
    transition: all 0.1s;
}

.board-comment__btn:hover {
    color: var(--board-text);
    background: var(--board-bg-alt);
}

.board-comment__btn--submit {
    background: var(--board-primary);
    color: var(--primary-foreground);
    border-color: var(--board-primary);
    padding: 8px 20px;
}

.board-comment__btn--submit:hover {
    background: var(--board-primary-hover);
    color: var(--primary-foreground);
}

.board-comment__btn--edit:hover {
    color: var(--board-primary);
    border-color: var(--board-primary);
}

.board-comment__btn--delete:hover {
    color: var(--board-danger);
    border-color: var(--board-danger);
}

/* Comment form */
.board-comment__form-wrap {
    padding: 20px 0;
}

.board-comment__form-guest {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.board-comment__input {
    padding: 8px 12px;
    border: 1px solid var(--board-border);
    border-radius: var(--board-radius);
    color: var(--board-text);
    outline: none;
    transition: border-color 0.15s;
    width: 160px;
}

.board-comment__input:focus {
    border-color: var(--board-text);
}

.board-comment__textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--board-border);
    border-radius: var(--board-radius);
    font-family: inherit;
    color: var(--board-text);
    resize: vertical;
    outline: none;
    transition: border-color 0.15s;
}

.board-comment__textarea:focus {
    border-color: var(--board-text);
}

.board-comment__textarea--edit {
    margin-bottom: 8px;
}

.board-comment__form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.board-comment__secret-label {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8125rem;
    color: var(--board-text-secondary);
    cursor: pointer;
}

.board-comment__edit-actions {
    display: flex;
    gap: 6px;
    margin-top: 8px;
}

/* ========================================
   Board Write / Edit
   ======================================== */
.board-write {
    max-width: 960px;
    margin: 0 auto;
}

.board-write__header {
    padding: 24px 0 20px;
    border-bottom: 2px solid var(--board-text);
}

.board-write__board-name {
    font-size: 0.9375rem;
    font-weight: 500;
    margin: 0;
}

.board-write__board-name a {
    color: var(--board-text-secondary);
    text-decoration: none;
}

.board-write__board-name a:hover {
    color: var(--board-primary);
}

.board-write__desc {
    margin-top: 4px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--board-text);
}

/* Fields */
.board-write__field {
    margin-top: 20px;
}

.board-write__label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--board-text);
    margin-bottom: 8px;
}

.board-write__required {
    color: var(--board-danger);
}

.board-write__input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--board-border);
    border-radius: var(--board-radius);
    color: var(--board-text);
    outline: none;
    transition: border-color 0.15s;
}

.board-write__input:focus {
    border-color: var(--board-text);
}

.board-write__select {
    width: 100%;
    max-width: 300px;
    padding: 8px 32px 8px 12px;
    border: 1px solid var(--board-border);
    border-radius: var(--board-radius);
    color: var(--board-text);
    background: var(--board-bg) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path fill='none' stroke='%23868e96' stroke-width='1.5' d='M1 1.5l5 5 5-5'/></svg>") no-repeat right 10px center / 12px 8px;
    outline: none;
    cursor: pointer;
    transition: border-color 0.15s;
    appearance: none;
    -webkit-appearance: none;
}

.board-write__select:focus {
    border-color: var(--board-text);
}

input.board-write__input--title {
    font-size: 1rem;
}

/* Guest fields */
.board-write__guest {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.board-write__guest .board-write__field {
    margin-top: 0;
    flex: 1;
}

.board-write__guest .board-write__input {
    width: 100%;
}

/* Options */
.board-write__options {
    margin-top: 16px;
    padding: 12px 0;
}

.board-write__checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: var(--board-text-secondary);
    cursor: pointer;
}

/* Actions */
.board-write__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 24px;
    padding: 20px 0 32px;
    border-top: 1px solid var(--board-border);
}

.board-write__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 24px;
    border: 1px solid var(--board-border);
    border-radius: var(--board-radius);
    background: var(--board-bg);
    color: var(--board-text-secondary);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.15s;
}

.board-write__btn:hover {
    background: var(--board-bg-alt);
    text-decoration: none;
}

.board-write__btn--submit {
    background: var(--board-primary);
    color: var(--primary-foreground);
    border-color: var(--board-primary);
}

.board-write__btn--submit:hover {
    background: var(--board-primary-hover);
    color: var(--primary-foreground);
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 768px) {
    /* 모바일: 테이블 행을 카드형으로 펼침 — 제목 줄 + 메타 줄.
       table-layout 기반 셀 ellipsis는 좁은 화면에서 긴 제목이 테이블을
       뷰포트 밖으로 밀어 가로 오버플로를 유발하므로, 행 전체를 flex
       블록으로 재배치하고 글쓴이/날짜/조회를 메타 줄로 내린다. */
    .board-list__table,
    .board-list__table tbody {
        display: block;
        width: 100%;
    }

    .board-list__table thead {
        display: none;
    }

    .board-list__row {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        column-gap: 8px;
        row-gap: 3px;
        padding: 12px 4px;
        border-bottom: 1px solid var(--board-border-light);
    }

    .board-list__td {
        display: block;
        padding: 0;
        border: none;
        text-align: left;
        font-size: 0.75rem;
    }

    /* 1줄: 제목 (항상 전체 폭, 말줄임 유지) */
    .board-list__td--title {
        flex: 0 0 100%;
        order: 0;
        min-width: 0;
        font-size: 0.875rem;
    }

    /* 2줄: 메타 (공지 · 카테고리 · 글쓴이 · 날짜 · 조회)
       순번은 의미가 모호해 모바일에선 숨김. 단 공지 행의 칸은
       '공지' 배지만 들어있으므로 그 경우에만 노출한다. */
    .board-list__td--no { display: none; }
    .board-list__row--notice .board-list__td--no { display: block; order: 1; }
    .board-list__td--category { order: 2; }
    .board-list__td--author   { order: 3; }
    .board-list__td--date     { order: 4; }
    .board-list__td--views    { order: 5; }

    /* 헤더가 사라지므로 조회수에만 라벨을 붙여 의미를 명확히 */
    .board-list__td--views::before {
        content: '조회 ';
    }

    .board-list__empty {
        display: block;
        width: 100%;
    }

    .board-list__footer {
        flex-direction: column;
        align-items: stretch;
        padding: 8px 0 32px;
        box-sizing: border-box;
        max-width: 100%;
    }

    .board-list__search {
        order: 2;
        max-width: 100%;
        box-sizing: border-box;
    }

    .board-list__search-input {
        flex: 1;
        min-width: 0;
        width: auto;
    }

    .board-list__search-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .board-list__actions {
        order: 1;
        margin-left: 0;
    }

    .board-list__write-btn {
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }

    /* View */
    .board-view__title {
        font-size: 1.125rem;
    }

    .board-view__content {
        padding: 20px 0;
        font-size: 0.875rem;
    }

    .board-view__meta {
        font-size: 0.75rem;
    }

    .board-view__actions {
        flex-direction: column;
        gap: 8px;
    }

    .board-view__actions-left,
    .board-view__actions-right {
        width: 100%;
    }

    .board-view__btn {
        flex: 1;
        justify-content: center;
    }

    /* Reaction */
    .board-reaction__buttons {
        gap: 18px;
    }

    /* Write */
    .board-write__guest {
        flex-direction: column;
        gap: 0;
    }

    .board-write__guest .board-write__field {
        margin-top: 12px;
    }

    .board-write__actions {
        flex-direction: column;
    }

    .board-write__btn {
        width: 100%;
    }

    /* Comment */
    .board-comment__form-guest {
        flex-direction: column;
    }

    .board-comment__input {
        width: 100%;
    }
}

/* ========================================
   Attachments (View)
   ======================================== */
.board-view__attachments,
.board-view__links {
    border: 1px solid var(--board-border);
    border-radius: var(--board-radius);
    padding: 16px 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    background: var(--board-bg-alt);
}

.board-view__attachments-title,
.board-view__links-title {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 12px;
    color: var(--board-text);
}

.board-view__attachments-count,
.board-view__links-count {
    color: var(--board-primary);
    font-weight: 700;
}

.board-view__attachment-list,
.board-view__link-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.board-view__attachment-item,
.board-view__link-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    border-bottom: 1px solid var(--board-border-light);
}

.board-view__attachment-item:last-child,
.board-view__link-item:last-child {
    border-bottom: none;
}

.board-view__attachment-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--board-text);
    text-decoration: none;
    font-size: 14px;
}

.board-view__attachment-link:hover {
    color: var(--board-primary);
}

/*
 * 권한이 없는 첨부. 클릭은 받되(사유를 모달로 알려준다) 받을 수 없음이 보이도록
 * 흐리게 두고 자물쇠를 붙인다. button 이므로 브라우저 기본 스타일을 지운다.
 */
.board-view__attachment-link--locked {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    border: 0;
    background: none;
    font: inherit;
    text-align: left;
    color: var(--board-text-muted);
    font-size: 14px;
    cursor: pointer;
}

.board-view__attachment-link--locked:hover {
    color: var(--board-text);
}

.board-view__attachment-lock {
    font-size: 12px;
}

/* 주소를 만들 수 없는 첨부 (데이터 이상) */
.board-view__attachment-link--broken {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--board-text-muted);
    font-size: 14px;
}

.board-view__attachment-note {
    font-size: 12px;
}

.board-view__attachment-size {
    color: var(--board-text-muted);
    font-size: 12px;
}

.board-view__attachment-downloads,
.board-view__link-clicks {
    margin-left: auto;
    color: var(--board-text-muted);
    font-size: 12px;
}

.board-view__link-anchor {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--board-text);
    text-decoration: none;
    font-size: 14px;
}

.board-view__link-anchor:hover {
    color: var(--board-primary);
}

.board-view__link-url {
    flex: 0 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--board-text-muted);
    font-size: 12px;
}

/* ========================================
   File Upload / Link (Write)
   ======================================== */
.board-write__file-list,
.board-write__link-list {
    margin-bottom: 10px;
}

.board-write__file-item,
.board-write__link-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    background: var(--board-bg-alt);
    border: 1px solid var(--board-border);
    border-radius: var(--board-radius);
    margin-bottom: 4px;
    font-size: 14px;
}

.board-write__file-name {
    color: var(--board-text);
}

.board-write__file-size {
    color: var(--board-text-muted);
    font-size: 12px;
}

.board-write__file-remove,
.board-write__link-remove {
    margin-left: auto;
    background: none;
    border: none;
    color: var(--board-danger);
    cursor: pointer;
    font-size: 12px;
    padding: 2px 6px;
}

.board-write__file-remove:hover,
.board-write__link-remove:hover {
    text-decoration: underline;
}

.board-write__file-upload {
    display: flex;
    align-items: center;
    gap: 8px;
}

.board-write__btn--file,
.board-write__btn--link {
    background: var(--board-bg);
    border: 1px solid var(--board-border);
    border-radius: var(--board-radius);
    padding: 8px 14px;
    cursor: pointer;
    color: var(--board-text);
}

.board-write__file-count {
    font-size: 13px;
    color: var(--board-text-muted);
}

.board-write__btn--file:hover,
.board-write__btn--link:hover {
    background: var(--board-bg-hover);
}

.board-write__link-add {
    display: flex;
    gap: 8px;
    align-items: center;
}

.board-write__hint {
    font-weight: 400;
    color: var(--board-text-muted);
    font-size: 12px;
}

.board-write__link-item a {
    color: var(--board-primary);
    text-decoration: none;
    font-size: 14px;
}

.board-write__link-item a:hover {
    text-decoration: underline;
}

/* ========================================================================== 
   MUBLO Home Production Request
   Skin-owned project request visual system (List / View / Write / Password)
   ========================================================================== */

.mublo-production-request {
    --pr-page: var(--background, #ffffff);
    --pr-panel: var(--card, #ffffff);
    --pr-panel-soft: color-mix(in srgb, var(--muted, #f4f6f8) 72%, var(--pr-panel));
    --pr-panel-strong: color-mix(in srgb, var(--foreground, #101217) 3.5%, var(--pr-panel));
    --pr-ink: var(--foreground, #101217);
    --pr-copy: color-mix(in srgb, var(--foreground, #101217) 76%, var(--muted-foreground, #6d7480));
    --pr-muted: var(--muted-foreground, #6d7480);
    --pr-line: var(--border, #dfe3e8);
    --pr-line-soft: var(--border-subtle, color-mix(in srgb, var(--pr-line) 62%, transparent));
    --pr-accent: var(--primary, #1769ff);
    --pr-accent-ink: var(--primary-foreground, #ffffff);
    --pr-accent-soft: color-mix(in srgb, var(--pr-accent) 9%, var(--pr-panel));
    --pr-pending: #bb7413;
    --pr-pending-soft: color-mix(in srgb, var(--pr-pending) 10%, var(--pr-panel));
    --pr-active: var(--pr-accent);
    --pr-active-soft: color-mix(in srgb, var(--pr-active) 9%, var(--pr-panel));
    --pr-complete: #128268;
    --pr-complete-soft: color-mix(in srgb, var(--pr-complete) 9%, var(--pr-panel));
    --pr-danger: var(--destructive, #dc2626);
    --pr-shadow-sm: 0 1px 2px color-mix(in srgb, var(--pr-ink) 5%, transparent);
    --pr-shadow: 0 20px 55px color-mix(in srgb, var(--pr-ink) 8%, transparent);
    --pr-radius-sm: 10px;
    --pr-radius: 16px;
    --pr-radius-lg: 24px;
    width: 100%;
    color: var(--pr-ink);
    font-family: var(--font-sans, "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
    container-type: inline-size;
}

.mublo-production-request,
.mublo-production-request *,
.mublo-production-request *::before,
.mublo-production-request *::after {
    box-sizing: border-box;
}

.mublo-production-request .sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* List -------------------------------------------------------------------- */

.mublo-production-request-list {
    max-width: 1120px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid var(--pr-line);
    border-radius: var(--pr-radius-lg);
    background: var(--pr-panel);
    box-shadow: var(--pr-shadow-sm);
}

.mublo-production-request .production-request-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(250px, .8fr);
    grid-template-rows: minmax(174px, auto) auto;
    min-height: 254px;
    overflow: hidden;
    color: var(--pr-ink);
    border-bottom: 1px solid var(--pr-line);
    background:
        radial-gradient(circle at 77% 18%, color-mix(in srgb, var(--pr-accent) 13%, transparent), transparent 31%),
        linear-gradient(120deg, var(--pr-panel) 4%, color-mix(in srgb, var(--pr-accent) 4.5%, var(--pr-panel)) 100%);
    isolation: isolate;
}

.mublo-production-request .production-request-hero::before {
    position: absolute;
    z-index: -1;
    top: -96px;
    right: -42px;
    width: 380px;
    height: 380px;
    border: 1px solid color-mix(in srgb, var(--pr-accent) 13%, transparent);
    border-radius: 50%;
    box-shadow:
        0 0 0 46px color-mix(in srgb, var(--pr-accent) 2.8%, transparent),
        0 0 0 47px color-mix(in srgb, var(--pr-accent) 9%, transparent),
        0 0 0 94px color-mix(in srgb, var(--pr-accent) 2%, transparent);
    content: "";
}

.mublo-production-request .production-request-hero::after {
    position: absolute;
    z-index: -1;
    top: 23px;
    right: 30px;
    width: 215px;
    height: 92px;
    opacity: .46;
    background-image: radial-gradient(circle, color-mix(in srgb, var(--pr-accent) 38%, transparent) 1px, transparent 1.4px);
    background-size: 11px 11px;
    mask-image: linear-gradient(90deg, transparent, #000 28%, #000);
    content: "";
}

.mublo-production-request .production-request-hero__copy {
    position: relative;
    z-index: 1;
    align-self: center;
    padding: 38px 42px 32px;
}

.mublo-production-request .production-request-hero__eyebrow,
.mublo-production-request-view__overline,
.mublo-production-request-write__overline,
.production-request-password__overline {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 13px;
    color: var(--pr-accent);
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.mublo-production-request .production-request-hero__eyebrow > span {
    width: 23px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
}

.mublo-production-request .production-request-hero h1 {
    margin: 0;
    color: var(--pr-ink);
    font-size: clamp(34px, 5.2cqi, 51px);
    font-weight: 790;
    line-height: 1.05;
    letter-spacing: -.055em;
    overflow-wrap: anywhere;
}

.mublo-production-request .production-request-hero__copy > p:last-child {
    max-width: 580px;
    margin: 16px 0 0;
    color: var(--pr-copy);
    font-size: 14px;
    font-weight: 520;
    line-height: 1.72;
    letter-spacing: -.015em;
}

.mublo-production-request .production-request-hero__overview {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    align-self: center;
    min-width: 260px;
    margin: 32px 38px 25px 12px;
    padding: 20px 21px;
    border: 1px solid color-mix(in srgb, var(--pr-line) 82%, transparent);
    border-radius: var(--pr-radius);
    background: color-mix(in srgb, var(--pr-panel) 86%, transparent);
    box-shadow: 0 14px 38px color-mix(in srgb, var(--pr-ink) 5%, transparent);
    backdrop-filter: blur(13px);
}

.mublo-production-request .production-request-hero__overview > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.mublo-production-request .production-request-hero__overview > i {
    display: block;
    width: 1px;
    min-height: 48px;
    background: var(--pr-line);
}

.mublo-production-request .production-request-hero__overview span {
    color: var(--pr-muted);
    font-size: 10px;
    font-style: normal;
    font-weight: 680;
    letter-spacing: .04em;
}

.mublo-production-request .production-request-hero__overview strong {
    color: var(--pr-ink);
    font-size: 27px;
    font-weight: 770;
    line-height: 1;
    letter-spacing: -.04em;
    font-variant-numeric: tabular-nums;
}

.mublo-production-request .production-request-hero__overview small {
    margin-left: 3px;
    color: var(--pr-muted);
    font-size: 12px;
    font-weight: 600;
}

.mublo-production-request .production-request-hero__pipeline {
    position: relative;
    z-index: 2;
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto minmax(28px, 1fr) auto minmax(28px, 1fr) auto;
    align-items: center;
    gap: 13px;
    min-height: 65px;
    padding: 14px 42px;
    border-top: 1px solid color-mix(in srgb, var(--pr-line) 88%, transparent);
    background: color-mix(in srgb, var(--pr-panel) 88%, transparent);
    backdrop-filter: blur(12px);
}

.mublo-production-request .production-request-hero__pipeline > span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--pr-copy);
    font-size: 11px;
    font-weight: 650;
    white-space: nowrap;
}

.mublo-production-request .production-request-hero__pipeline > span i {
    width: 7px;
    height: 7px;
    border: 2px solid currentColor;
    border-radius: 50%;
    background: var(--pr-panel);
}

.mublo-production-request .production-request-hero__pipeline > span strong {
    color: var(--pr-ink);
    font-size: 13px;
    font-weight: 780;
    font-variant-numeric: tabular-nums;
}

.mublo-production-request .production-request-hero__pipeline .is-pending { color: var(--pr-pending); }
.mublo-production-request .production-request-hero__pipeline .is-active { color: var(--pr-active); }
.mublo-production-request .production-request-hero__pipeline .is-complete { color: var(--pr-complete); }

.mublo-production-request .production-request-hero__pipeline > b {
    position: relative;
    display: block;
    height: 1px;
    overflow: visible;
    background: var(--pr-line);
}

.mublo-production-request .production-request-hero__pipeline > b::after {
    position: absolute;
    top: -2px;
    right: 0;
    width: 5px;
    height: 5px;
    border-top: 1px solid var(--pr-muted);
    border-right: 1px solid var(--pr-muted);
    transform: rotate(45deg);
    content: "";
}

.mublo-production-request .production-request-toolbar {
    display: grid;
    grid-template-columns: minmax(140px, .65fr) minmax(340px, 1.35fr) auto;
    align-items: center;
    gap: 18px;
    min-height: 86px;
    padding: 16px 26px;
    border-bottom: 1px solid var(--pr-line);
    background: var(--pr-panel);
}

.mublo-production-request .production-request-toolbar__heading {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mublo-production-request .production-request-toolbar__heading > span {
    color: var(--pr-accent);
    font-size: 9px;
    font-weight: 820;
    letter-spacing: .14em;
}

.mublo-production-request .production-request-toolbar__heading > strong {
    color: var(--pr-ink);
    font-size: 14px;
    font-weight: 730;
    letter-spacing: -.02em;
}

.mublo-production-request .production-request-search {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr) auto;
    align-items: stretch;
    min-width: 0;
    height: 46px;
    overflow: hidden;
    border: 1px solid var(--pr-line);
    border-radius: 12px;
    background: var(--pr-panel-soft);
    transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.mublo-production-request .production-request-search:focus-within {
    border-color: color-mix(in srgb, var(--pr-accent) 56%, var(--pr-line));
    background: var(--pr-panel);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--pr-accent) 9%, transparent);
}

.mublo-production-request .production-request-search select,
.mublo-production-request .production-request-search input,
.mublo-production-request .production-request-search button {
    min-width: 0;
    padding: 0 14px;
    color: var(--pr-ink);
    border: 0;
    border-radius: 0;
    outline: 0;
    background: transparent;
    font: inherit;
}

.mublo-production-request .production-request-search select {
    color: var(--pr-copy);
    border-right: 1px solid var(--pr-line);
    font-size: 12px;
    font-weight: 640;
    cursor: pointer;
}

.mublo-production-request .production-request-search input {
    font-size: 13px;
}

.mublo-production-request .production-request-search input::placeholder {
    color: color-mix(in srgb, var(--pr-muted) 68%, transparent);
}

.mublo-production-request .production-request-search button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 73px;
    color: var(--pr-copy);
    border-left: 1px solid var(--pr-line);
    font-size: 12px;
    font-weight: 690;
    cursor: pointer;
    transition: color .16s ease, background-color .16s ease;
}

.mublo-production-request .production-request-search button:hover {
    color: var(--pr-accent);
    background: var(--pr-accent-soft);
}

.mublo-production-request .production-request-search svg,
.mublo-production-request .production-request-write svg,
.mublo-production-request .production-request-card__signals svg,
.mublo-production-request .production-request-card__open svg {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.55;
}

.mublo-production-request .production-request-search svg { width: 16px; }

.mublo-production-request .production-request-write {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 113px;
    height: 46px;
    padding: 0 17px;
    color: var(--pr-accent-ink);
    border: 1px solid var(--pr-accent);
    border-radius: 12px;
    background: var(--pr-accent);
    box-shadow: 0 7px 18px color-mix(in srgb, var(--pr-accent) 17%, transparent);
    font-size: 12px;
    font-weight: 740;
    text-decoration: none;
    transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
}

.mublo-production-request .production-request-write:hover {
    color: var(--pr-accent-ink);
    text-decoration: none;
    transform: translateY(-1px);
    filter: saturate(1.06);
    box-shadow: 0 9px 22px color-mix(in srgb, var(--pr-accent) 23%, transparent);
}

.mublo-production-request .production-request-write svg { width: 16px; }

.mublo-production-request .production-request-write.is-disabled {
    color: var(--pr-muted);
    border-color: var(--pr-line);
    background: var(--pr-panel-soft);
    box-shadow: none;
    cursor: not-allowed;
}

.mublo-production-request .production-request-stage-filter {
    display: flex;
    gap: 7px;
    overflow-x: auto;
    padding: 14px 26px;
    border-bottom: 1px solid var(--pr-line);
    scrollbar-width: none;
}

.mublo-production-request .production-request-stage-filter::-webkit-scrollbar { display: none; }

.mublo-production-request .production-request-stage-filter a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 34px;
    padding: 0 13px;
    color: var(--pr-muted);
    border: 1px solid transparent;
    border-radius: 99px;
    background: transparent;
    font-size: 11px;
    font-weight: 660;
    text-decoration: none;
    white-space: nowrap;
    transition: color .16s ease, border-color .16s ease, background-color .16s ease;
}

.mublo-production-request .production-request-stage-filter a:hover {
    color: var(--pr-ink);
    background: var(--pr-panel-soft);
}

.mublo-production-request .production-request-stage-filter a > i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.mublo-production-request .production-request-stage-filter a.is-stage-pending { color: var(--pr-pending); }
.mublo-production-request .production-request-stage-filter a.is-stage-active { color: var(--pr-active); }
.mublo-production-request .production-request-stage-filter a.is-stage-complete { color: var(--pr-complete); }

.mublo-production-request .production-request-stage-filter a.is-current {
    border-color: color-mix(in srgb, currentColor 20%, var(--pr-line));
    background: color-mix(in srgb, currentColor 7%, var(--pr-panel));
}

.mublo-production-request .production-request-notices {
    display: grid;
    gap: 10px;
    margin: 20px 26px 0;
    padding: 12px;
    border: 1px solid color-mix(in srgb, var(--pr-accent) 18%, var(--pr-line));
    border-radius: var(--pr-radius);
    background: var(--pr-accent-soft);
}

.mublo-production-request .production-request-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 24px 26px 28px;
}

.mublo-production-request .production-request-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 236px;
    overflow: hidden;
    border: 1px solid var(--pr-line);
    border-radius: var(--pr-radius);
    background: var(--pr-panel);
    box-shadow: 0 1px 0 color-mix(in srgb, var(--pr-ink) 2%, transparent);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.mublo-production-request .production-request-card::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 2px;
    opacity: .68;
    background: var(--pr-muted);
    content: "";
}

.mublo-production-request .production-request-card--pending::before { background: var(--pr-pending); }
.mublo-production-request .production-request-card--active::before { background: var(--pr-active); }
.mublo-production-request .production-request-card--complete::before { background: var(--pr-complete); }

.mublo-production-request .production-request-card:hover {
    border-color: color-mix(in srgb, var(--pr-accent) 30%, var(--pr-line));
    background: color-mix(in srgb, var(--pr-accent) 2.4%, var(--pr-panel));
    box-shadow: 0 14px 34px color-mix(in srgb, var(--pr-ink) 8%, transparent);
    transform: translateY(-2px);
}

.mublo-production-request .production-request-card__topline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
    padding: 20px 20px 0;
}

.mublo-production-request .production-request-card__badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.mublo-production-request .production-request-status,
.mublo-production-request .production-request-badge,
.mublo-production-request__status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 24px;
    padding: 0 9px;
    border: 1px solid var(--pr-line);
    border-radius: 99px;
    font-size: 9px;
    font-weight: 760;
    letter-spacing: .02em;
    white-space: nowrap;
}

.mublo-production-request .production-request-status > span,
.mublo-production-request__status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.mublo-production-request .production-request-status--pending,
.mublo-production-request__status--pending { color: var(--pr-pending); border-color: color-mix(in srgb, var(--pr-pending) 23%, var(--pr-line)); background: var(--pr-pending-soft); }
.mublo-production-request .production-request-status--active,
.mublo-production-request__status--active { color: var(--pr-active); border-color: color-mix(in srgb, var(--pr-active) 23%, var(--pr-line)); background: var(--pr-active-soft); }
.mublo-production-request .production-request-status--complete,
.mublo-production-request__status--complete { color: var(--pr-complete); border-color: color-mix(in srgb, var(--pr-complete) 23%, var(--pr-line)); background: var(--pr-complete-soft); }
.mublo-production-request .production-request-status--unassigned {
    color: var(--pr-muted);
    border-color: var(--pr-line);
    background: var(--pr-panel-soft);
}

.mublo-production-request .production-request-badge { color: var(--pr-muted); background: var(--pr-panel-soft); }
.mublo-production-request .production-request-badge--notice { color: var(--pr-accent); border-color: color-mix(in srgb, var(--pr-accent) 22%, var(--pr-line)); background: var(--pr-accent-soft); }
.mublo-production-request .production-request-badge--new { min-height: 20px; padding-inline: 7px; color: var(--pr-accent); border: 0; background: transparent; font-size: 8px; letter-spacing: .08em; }

.mublo-production-request .production-request-card__budget {
    flex: 0 0 auto;
    text-align: right;
}

.mublo-production-request .production-request-card__budget > span,
.mublo-production-request .production-request-card__assignment > span {
    display: block;
    margin-bottom: 4px;
    color: var(--pr-muted);
    font-size: 9px;
    font-weight: 630;
    letter-spacing: .02em;
}

.mublo-production-request .production-request-card__budget strong {
    color: var(--pr-ink);
    font-size: 15px;
    font-weight: 780;
    letter-spacing: -.025em;
    font-variant-numeric: tabular-nums;
}

.mublo-production-request .production-request-card__body {
    flex: 1 1 auto;
    padding: 20px 20px 17px;
}

.mublo-production-request .production-request-card__title {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    color: var(--pr-ink);
    font-size: 18px;
    font-weight: 750;
    line-height: 1.42;
    letter-spacing: -.035em;
    overflow-wrap: anywhere;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.mublo-production-request .production-request-card__title a {
    color: inherit;
    text-decoration: none;
}

.mublo-production-request .production-request-card:hover .production-request-card__title a { color: var(--pr-accent); }

.mublo-production-request .production-request-card__excerpt {
    display: -webkit-box;
    overflow: hidden;
    margin: 9px 0 0;
    color: var(--pr-copy);
    font-size: 12px;
    font-weight: 480;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.mublo-production-request .production-request-card__footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(105px, .8fr) auto auto;
    align-items: center;
    gap: 14px;
    min-height: 65px;
    padding: 13px 20px;
    border-top: 1px solid var(--pr-line-soft);
    background: color-mix(in srgb, var(--pr-panel-soft) 56%, var(--pr-panel));
}

.mublo-production-request .production-request-card__author,
.mublo-production-request .production-request-card__assignment {
    min-width: 0;
}

.mublo-production-request .production-request-card__author > span {
    display: none;
}

.mublo-production-request .production-request-card__author strong,
.mublo-production-request .production-request-card__assignment strong {
    display: block;
    overflow: hidden;
    color: var(--pr-copy);
    font-size: 11px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mublo-production-request .production-request-card__author time {
    display: block;
    margin-top: 3px;
    color: var(--pr-muted);
    font-size: 9px;
}

.mublo-production-request .production-request-card__assignment strong { color: var(--pr-ink); }
.mublo-production-request .production-request-card__assignment.is-open strong { color: var(--pr-muted); font-weight: 620; }

.mublo-production-request .production-request-card__signals {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--pr-muted);
    font-size: 9px;
    white-space: nowrap;
}

.mublo-production-request .production-request-card__signals > span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.mublo-production-request .production-request-card__signals svg { width: 13px; }

.mublo-production-request .production-request-card__open {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    color: var(--pr-muted);
    border: 1px solid var(--pr-line);
    border-radius: 50%;
    background: var(--pr-panel);
    text-decoration: none;
    transition: color .16s ease, border-color .16s ease, transform .16s ease;
}

.mublo-production-request .production-request-card__open > span { display: none; }
.mublo-production-request .production-request-card__open svg { width: 13px; }
.mublo-production-request .production-request-card:hover .production-request-card__open { color: var(--pr-accent); border-color: color-mix(in srgb, var(--pr-accent) 45%, var(--pr-line)); transform: translateX(2px); }

.mublo-production-request .production-request-empty {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 330px;
    padding: 45px 22px;
    text-align: center;
}

.mublo-production-request .production-request-empty__graphic {
    position: relative;
    width: 92px;
    height: 66px;
    margin-bottom: 24px;
}

.mublo-production-request .production-request-empty__graphic > span {
    position: absolute;
    bottom: 0;
    width: 48px;
    height: 58px;
    border: 1px solid var(--pr-line);
    border-radius: 10px;
    background: var(--pr-panel-soft);
    box-shadow: var(--pr-shadow-sm);
}

.mublo-production-request .production-request-empty__graphic > span:nth-child(1) { left: 3px; transform: rotate(-8deg); }
.mublo-production-request .production-request-empty__graphic > span:nth-child(2) { z-index: 2; left: 22px; bottom: 4px; border-color: color-mix(in srgb, var(--pr-accent) 26%, var(--pr-line)); background: var(--pr-panel); }
.mublo-production-request .production-request-empty__graphic > span:nth-child(3) { right: 3px; transform: rotate(8deg); }

.mublo-production-request .production-request-empty strong { color: var(--pr-ink); font-size: 17px; font-weight: 740; letter-spacing: -.025em; }
.mublo-production-request .production-request-empty p { margin: 9px 0 0; color: var(--pr-muted); font-size: 12px; line-height: 1.65; }
.mublo-production-request .production-request-empty > a { margin-top: 18px; padding: 9px 14px; color: var(--pr-accent); border: 1px solid color-mix(in srgb, var(--pr-accent) 23%, var(--pr-line)); border-radius: 9px; background: var(--pr-accent-soft); font-size: 11px; font-weight: 700; text-decoration: none; }

.mublo-production-request .production-request-pagination {
    min-height: 80px;
    padding: 4px 20px 24px;
    border-top: 1px solid var(--pr-line-soft);
    --pagination-margin-top: 20px;
    --pagination-gap: 5px;
    --pagination-item-size: 36px;
    --pagination-border-radius: 9px;
    --pagination-color: var(--pr-muted);
    --pagination-hover-bg: var(--pr-panel-soft);
    --pagination-hover-color: var(--pr-ink);
    --pagination-active-bg: var(--pr-ink);
    --pagination-active-color: var(--pr-page);
}

/* View -------------------------------------------------------------------- */

.mublo-production-request-view {
    max-width: 1040px;
    margin: 0 auto;
    --board-bg: var(--pr-panel);
    --board-bg-alt: var(--pr-panel-soft);
    --board-bg-hover: var(--pr-panel-soft);
    --board-border: var(--pr-line);
    --board-border-light: var(--pr-line-soft);
    --board-text: var(--pr-ink);
    --board-text-secondary: var(--pr-copy);
    --board-text-muted: var(--pr-muted);
    --board-primary: var(--pr-accent);
    --board-primary-hover: color-mix(in srgb, var(--pr-accent) 88%, var(--pr-ink));
    --board-primary-light: var(--pr-accent-soft);
    --board-danger: var(--pr-danger);
}

.mublo-production-request-view .board-view__board-header,
.mublo-production-request-write .board-write__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin: 0;
    padding: 25px 0 22px;
    border-top: 2px solid var(--pr-ink);
    border-bottom: 1px solid var(--pr-line);
}

.mublo-production-request-view .board-view__board-name,
.mublo-production-request-write .board-write__board-name {
    margin: 0;
    color: var(--pr-ink);
    font-size: 17px;
    font-weight: 750;
    letter-spacing: -.025em;
}

.mublo-production-request-view .board-view__board-name a,
.mublo-production-request-write .board-write__board-name a { color: inherit; text-decoration: none; }

.mublo-production-request-view .board-view__header {
    padding: 38px 0 28px;
    border-bottom: 0;
}

.mublo-production-request-view .board-view__title {
    margin: 0;
    color: var(--pr-ink);
    font-size: clamp(27px, 4.2cqi, 38px);
    font-weight: 790;
    line-height: 1.25;
    letter-spacing: -.052em;
    overflow-wrap: anywhere;
}

.mublo-production-request-view .board-view__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 0;
    margin-top: 17px;
    color: var(--pr-muted);
    font-size: 11px;
}

.mublo-production-request-view .board-view__meta > span + span::before {
    margin: 0 9px;
    color: var(--pr-line);
    content: "/";
}

.mublo-production-request-view .board-view__author { color: var(--pr-copy); font-weight: 720; }

.mublo-production-request-view__overview {
    overflow: hidden;
    margin-bottom: 33px;
    border: 1px solid var(--pr-line);
    border-radius: var(--pr-radius-lg);
    background:
        radial-gradient(circle at 93% 8%, color-mix(in srgb, var(--pr-accent) 8%, transparent), transparent 27%),
        var(--pr-panel);
    box-shadow: var(--pr-shadow-sm);
}

.mublo-production-request-view__overview-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 103px;
    padding: 25px 28px;
    border-bottom: 1px solid var(--pr-line-soft);
}

.mublo-production-request__status {
    min-height: 32px;
    padding-inline: 13px;
    font-size: 11px;
}

.mublo-production-request-view__amount { text-align: right; }
.mublo-production-request-view__summary-label { display: block; color: var(--pr-muted); font-size: 10px; font-weight: 650; letter-spacing: .03em; }
.mublo-production-request-view__amount strong { display: block; margin-top: 5px; color: var(--pr-ink); font-size: clamp(22px, 3cqi, 29px); font-weight: 790; line-height: 1; letter-spacing: -.04em; font-variant-numeric: tabular-nums; }

.mublo-production-request-view__summary-grid {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    border-bottom: 1px solid var(--pr-line-soft);
}

.mublo-production-request-view__summary-item {
    min-width: 0;
    padding: 19px 28px;
}

.mublo-production-request-view__summary-item + .mublo-production-request-view__summary-item { border-left: 1px solid var(--pr-line-soft); }
.mublo-production-request-view__summary-item strong { display: block; overflow: hidden; margin-top: 5px; color: var(--pr-ink); font-size: 15px; font-weight: 740; text-overflow: ellipsis; white-space: nowrap; }

.mublo-production-request-view__timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 0;
    padding: 22px 28px 25px;
    list-style: none;
}

.mublo-production-request-view__timeline-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--pr-muted);
    font-size: 10px;
    font-weight: 670;
}

.mublo-production-request-view__timeline-step:not(:last-child)::after {
    position: absolute;
    z-index: 0;
    top: 13px;
    left: calc(50% + 18px);
    width: calc(100% - 36px);
    height: 1px;
    background: var(--pr-line);
    content: "";
}

.mublo-production-request-view__timeline-step.is-reached:not(:last-child)::after { background: color-mix(in srgb, var(--pr-accent) 55%, var(--pr-line)); }

.mublo-production-request-view__timeline-marker {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 27px;
    height: 27px;
    color: var(--pr-muted);
    border: 1px solid var(--pr-line);
    border-radius: 50%;
    background: var(--pr-panel);
    font-size: 9px;
    font-weight: 760;
}

.mublo-production-request-view__timeline-step.is-reached { color: var(--pr-copy); }
.mublo-production-request-view__timeline-step.is-reached .mublo-production-request-view__timeline-marker { color: var(--pr-accent); border-color: color-mix(in srgb, var(--pr-accent) 45%, var(--pr-line)); background: var(--pr-accent-soft); }
.mublo-production-request-view__timeline-step.is-current { color: var(--pr-accent); font-weight: 760; }
.mublo-production-request-view__timeline-step.is-current .mublo-production-request-view__timeline-marker { color: var(--pr-accent-ink); border-color: var(--pr-accent); background: var(--pr-accent); box-shadow: 0 0 0 4px var(--pr-accent-soft); }

.mublo-production-request-view__content-label {
    padding-bottom: 11px;
    color: var(--pr-muted);
    border-bottom: 1px solid var(--pr-line);
    font-size: 10px;
    font-weight: 760;
    letter-spacing: .08em;
}

.mublo-production-request-view .mublo-production-request-view__content {
    min-height: 280px;
    padding: 31px 2px 45px;
    color: var(--pr-copy);
    border-bottom: 1px solid var(--pr-line);
    font-size: 15px;
    line-height: 1.88;
    overflow-wrap: anywhere;
}

.mublo-production-request-view__content h1,
.mublo-production-request-view__content h2,
.mublo-production-request-view__content h3 { color: var(--pr-ink); letter-spacing: -.035em; }
.mublo-production-request-view__content a { color: var(--pr-accent); text-underline-offset: 3px; }
.mublo-production-request-view__content blockquote { color: var(--pr-copy); border-left: 3px solid var(--pr-accent); border-radius: 0 var(--pr-radius-sm) var(--pr-radius-sm) 0; background: var(--pr-panel-soft); }

.mublo-production-request-view .board-view__attachments,
.mublo-production-request-view .board-view__links {
    margin-top: 20px;
    border: 1px solid var(--pr-line);
    border-radius: var(--pr-radius);
    background: var(--pr-panel-soft);
}

.mublo-production-request-view .board-view__actions {
    margin-top: 25px;
    padding: 21px 0;
    border-color: var(--pr-line);
}

.mublo-production-request-view .board-view__btn {
    min-height: 41px;
    padding: 9px 15px;
    color: var(--pr-copy);
    border: 1px solid var(--pr-line);
    border-radius: 10px;
    background: var(--pr-panel);
    font-size: 12px;
    font-weight: 690;
}

.mublo-production-request-view .board-view__btn:hover { color: var(--pr-ink); border-color: var(--pr-ink); background: var(--pr-panel-soft); }
.mublo-production-request-view .board-view__btn--write { color: var(--pr-accent-ink); border-color: var(--pr-accent); background: var(--pr-accent); }
.mublo-production-request-view .board-view__btn--delete { color: var(--pr-danger); border-color: color-mix(in srgb, var(--pr-danger) 30%, var(--pr-line)); }

/* Author-only workflow manager */

.mublo-production-request-manager {
    margin: 34px 0;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--pr-accent) 22%, var(--pr-line));
    border-radius: var(--pr-radius-lg);
    background: var(--pr-panel);
    box-shadow: 0 18px 44px color-mix(in srgb, var(--pr-ink) 6%, transparent);
}

.mublo-production-request-manager__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    padding: 26px 28px 23px;
    border-bottom: 1px solid var(--pr-line);
    background:
        linear-gradient(110deg, var(--pr-accent-soft), transparent 46%),
        var(--pr-panel);
}

.mublo-production-request-manager__eyebrow {
    display: block;
    margin-bottom: 7px;
    color: var(--pr-accent);
    font-size: 9px;
    font-weight: 820;
    letter-spacing: .15em;
}

.mublo-production-request-manager__header h4 { margin: 0; color: var(--pr-ink); font-size: 20px; font-weight: 770; letter-spacing: -.035em; }
.mublo-production-request-manager__header p { max-width: 390px; margin: 0; color: var(--pr-muted); font-size: 11px; line-height: 1.65; text-align: right; }

.mublo-production-request-manager__notice {
    margin: 20px 28px 0;
    padding: 13px 15px;
    color: var(--pr-copy);
    border: 1px solid color-mix(in srgb, var(--pr-accent) 18%, var(--pr-line));
    border-radius: var(--pr-radius-sm);
    background: var(--pr-accent-soft);
    font-size: 11px;
    line-height: 1.6;
}

.mublo-production-request-manager__notice strong { color: var(--pr-ink); }
.mublo-production-request-manager__notice--warning { border-color: color-mix(in srgb, var(--pr-pending) 28%, var(--pr-line)); background: var(--pr-pending-soft); }

.mublo-production-request-manager__section {
    margin: 0;
    padding: 24px 28px 27px;
    border: 0;
    border-bottom: 1px solid var(--pr-line-soft);
}

.mublo-production-request-manager__section > legend {
    width: 100%;
    margin: 0 0 13px;
    padding: 0;
    color: var(--pr-ink);
    font-size: 12px;
    font-weight: 730;
}

.mublo-production-request-manager__section > legend span { margin-left: 5px; color: var(--pr-accent); font-size: 10px; }

.mublo-production-request-manager__status-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
}

.mublo-production-request-manager__status-option {
    position: relative;
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 48px;
    padding: 0 15px;
    color: var(--pr-copy);
    border: 1px solid var(--pr-line);
    border-radius: 11px;
    background: var(--pr-panel-soft);
    font-size: 11px;
    font-weight: 670;
    cursor: pointer;
    transition: color .16s ease, border-color .16s ease, background-color .16s ease;
}

.mublo-production-request-manager__status-option input,
.mublo-production-request-manager__applicant input { position: absolute; opacity: 0; pointer-events: none; }

.mublo-production-request-manager__status-icon {
    width: 9px;
    height: 9px;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.mublo-production-request-manager__status-option:nth-child(1) { color: var(--pr-pending); }
.mublo-production-request-manager__status-option:nth-child(2) { color: var(--pr-active); }
.mublo-production-request-manager__status-option:nth-child(3) { color: var(--pr-complete); }
.mublo-production-request-manager__status-option:hover { border-color: color-mix(in srgb, currentColor 38%, var(--pr-line)); }
.mublo-production-request-manager__status-option.is-selected { border-color: color-mix(in srgb, currentColor 46%, var(--pr-line)); background: color-mix(in srgb, currentColor 8%, var(--pr-panel)); box-shadow: inset 0 0 0 1px color-mix(in srgb, currentColor 8%, transparent); }
.mublo-production-request-manager__status-option.is-selected .mublo-production-request-manager__status-icon { background: currentColor; box-shadow: inset 0 0 0 2px var(--pr-panel); }

.mublo-production-request-manager__applicants {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
}

.mublo-production-request-manager__applicant {
    position: relative;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 22px;
    align-items: center;
    gap: 11px;
    min-width: 0;
    min-height: 69px;
    padding: 10px 12px;
    color: var(--pr-copy);
    border: 1px solid var(--pr-line);
    border-radius: 12px;
    background: var(--pr-panel);
    cursor: pointer;
    transition: border-color .16s ease, background-color .16s ease, box-shadow .16s ease;
}

.mublo-production-request-manager__applicant:hover { border-color: color-mix(in srgb, var(--pr-accent) 35%, var(--pr-line)); background: var(--pr-panel-soft); }
.mublo-production-request-manager__applicant.is-selected { border-color: color-mix(in srgb, var(--pr-accent) 48%, var(--pr-line)); background: var(--pr-accent-soft); box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--pr-accent) 8%, transparent); }

.mublo-production-request-manager__applicant-avatar {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: var(--pr-copy);
    border: 1px solid var(--pr-line);
    border-radius: 50%;
    background: var(--pr-panel-soft);
    font-size: 12px;
    font-weight: 760;
}

.mublo-production-request-manager__applicant.is-selected .mublo-production-request-manager__applicant-avatar { color: var(--pr-accent); border-color: color-mix(in srgb, var(--pr-accent) 26%, var(--pr-line)); background: var(--pr-panel); }
.mublo-production-request-manager__applicant-body { display: block; min-width: 0; }
.mublo-production-request-manager__applicant-body > strong,
.mublo-production-request-manager__applicant-line strong { display: block; overflow: hidden; color: var(--pr-ink); font-size: 11px; font-weight: 720; text-overflow: ellipsis; white-space: nowrap; }
.mublo-production-request-manager__applicant-body > small { display: block; overflow: hidden; margin-top: 4px; color: var(--pr-muted); font-size: 9px; text-overflow: ellipsis; white-space: nowrap; }
.mublo-production-request-manager__applicant-line { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; }
.mublo-production-request-manager__applicant-line small { flex: 0 0 auto; color: var(--pr-muted); font-size: 8px; }
.mublo-production-request-manager__check { display: grid; place-items: center; width: 20px; height: 20px; color: transparent; border: 1px solid var(--pr-line); border-radius: 50%; background: var(--pr-panel); }
.mublo-production-request-manager__applicant.is-selected .mublo-production-request-manager__check { color: var(--pr-accent-ink); border-color: var(--pr-accent); background: var(--pr-accent); }
.mublo-production-request-manager__empty { margin: 12px 0 0; color: var(--pr-muted); font-size: 10px; line-height: 1.6; }

.mublo-production-request-manager__footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    padding: 18px 28px;
    background: var(--pr-panel-soft);
}

.mublo-production-request-manager__footer p { margin: 0; color: var(--pr-muted); font-size: 10px; }
.mublo-production-request-manager__save { display: inline-flex; align-items: center; justify-content: center; gap: 7px; min-height: 42px; padding: 0 17px; color: var(--pr-accent-ink); border: 1px solid var(--pr-accent); border-radius: 10px; background: var(--pr-accent); font-size: 11px; font-weight: 730; cursor: pointer; }
.mublo-production-request-manager__save:disabled { opacity: .55; cursor: not-allowed; }
.mublo-production-request-manager__save.is-loading { cursor: wait; }

/* Application comments */

.mublo-production-request-view .board-comment { margin-top: 39px; }
.mublo-production-request-view__application-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 25px; padding-bottom: 15px; border-bottom: 1px solid var(--pr-line); }
.mublo-production-request-view__application-heading > div > span { display: block; margin-bottom: 6px; color: var(--pr-accent); font-size: 9px; font-weight: 820; letter-spacing: .14em; }
.mublo-production-request-view__application-heading .board-comment__title { margin: 0; padding: 0; color: var(--pr-ink); border: 0; font-size: 18px; }
.mublo-production-request-view__application-heading > p { max-width: 390px; margin: 0; color: var(--pr-muted); font-size: 10px; line-height: 1.55; text-align: right; }
.mublo-production-request-view .board-comment__count { color: var(--pr-accent); }
.mublo-production-request-view .board-comment__item { padding: 20px 3px; border-color: var(--pr-line-soft); }
.mublo-production-request-view .mublo-production-request-view__application { margin-top: 9px; padding: 17px 18px; border: 1px solid var(--pr-line); border-radius: var(--pr-radius); background: var(--pr-panel-soft); }
.mublo-production-request-view__application-badge { display: inline-flex; align-items: center; min-height: 20px; margin-left: 7px; padding: 0 7px; color: var(--pr-accent); border: 1px solid color-mix(in srgb, var(--pr-accent) 20%, var(--pr-line)); border-radius: 99px; background: var(--pr-accent-soft); font-size: 8px; font-weight: 740; }
.mublo-production-request-view .board-comment__item-author { color: var(--pr-ink); font-weight: 720; }
.mublo-production-request-view .board-comment__item-content { color: var(--pr-copy); line-height: 1.72; }
.mublo-production-request-view .board-comment__form-wrap { margin-top: 21px; padding: 16px; border: 1px solid var(--pr-line); border-radius: var(--pr-radius); background: var(--pr-panel-soft); }
.mublo-production-request-view .board-comment__input,
.mublo-production-request-view .board-comment__textarea { color: var(--pr-ink); border: 1px solid var(--pr-line); border-radius: 10px; background: var(--pr-panel); }
.mublo-production-request-view .board-comment__input:focus,
.mublo-production-request-view .board-comment__textarea:focus { border-color: color-mix(in srgb, var(--pr-accent) 55%, var(--pr-line)); box-shadow: 0 0 0 3px color-mix(in srgb, var(--pr-accent) 8%, transparent); }
.mublo-production-request-view .board-comment__btn--submit { min-height: 39px; padding-inline: 16px; color: var(--pr-accent-ink); border-radius: 10px; background: var(--pr-accent); }
.mublo-production-request-view__application-login { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 20px; padding: 17px 18px; border: 1px solid var(--pr-line); border-radius: var(--pr-radius); background: var(--pr-panel-soft); }
.mublo-production-request-view__application-login p { margin: 0; color: var(--pr-copy); font-size: 11px; }
.mublo-production-request-view__application-login a { padding: 8px 12px; color: var(--pr-accent); border: 1px solid color-mix(in srgb, var(--pr-accent) 23%, var(--pr-line)); border-radius: 8px; background: var(--pr-panel); font-size: 10px; font-weight: 700; text-decoration: none; }

.mublo-production-request-view .board-view__adjacent { border-color: var(--pr-line); }
.mublo-production-request-view .board-view__adjacent-link { color: var(--pr-copy); font-weight: 650; }

/* Write ------------------------------------------------------------------- */

.mublo-production-request-write {
    max-width: 980px;
    margin: 0 auto;
    --board-bg: var(--pr-panel);
    --board-bg-alt: var(--pr-panel-soft);
    --board-bg-hover: var(--pr-panel-soft);
    --board-border: var(--pr-line);
    --board-border-light: var(--pr-line-soft);
    --board-text: var(--pr-ink);
    --board-text-secondary: var(--pr-copy);
    --board-text-muted: var(--pr-muted);
    --board-primary: var(--pr-accent);
    --board-primary-hover: color-mix(in srgb, var(--pr-accent) 88%, var(--pr-ink));
    --board-primary-light: var(--pr-accent-soft);
}

.mublo-production-request-write .board-write__desc { margin: 8px 0 0; color: var(--pr-muted); font-size: 12px; }
.mublo-production-request-write > form { padding: 30px 0 8px; }
.mublo-production-request-write .board-write__field { margin-bottom: 25px; }
.mublo-production-request-write .board-write__label { margin-bottom: 9px; color: var(--pr-copy); font-size: 12px; font-weight: 700; }
.mublo-production-request-write .board-write__required { color: var(--pr-accent); }
.mublo-production-request-write .board-write__input,
.mublo-production-request-write .board-write__select { min-height: 47px; color: var(--pr-ink); border: 1px solid var(--pr-line); border-radius: 11px; background: var(--pr-panel); }
.mublo-production-request-write .board-write__input--title { height: auto; padding: 15px 16px; font-size: 17px; font-weight: 680; }
.mublo-production-request-write .board-write__input:focus,
.mublo-production-request-write .board-write__select:focus { border-color: color-mix(in srgb, var(--pr-accent) 55%, var(--pr-line)); box-shadow: 0 0 0 3px color-mix(in srgb, var(--pr-accent) 8%, transparent); }

.production-request-write__workflow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    padding: 15px 17px;
    border: 1px solid var(--pr-line);
    border-radius: var(--pr-radius);
    background: var(--pr-panel-soft);
}

.production-request-write__workflow-label { color: var(--pr-muted); font-size: 10px; font-weight: 690; }
.production-request-write__workflow .production-request-status { min-height: 26px; }
.production-request-write__workflow-help { margin-left: auto; color: var(--pr-muted); font-size: 10px; }

.production-request-write__amount-control {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 43px;
    align-items: center;
    overflow: hidden;
    height: 58px;
    border: 1px solid var(--pr-line);
    border-radius: 12px;
    background: var(--pr-panel);
    transition: border-color .18s ease, box-shadow .18s ease;
}

.production-request-write__amount-control:focus-within { border-color: color-mix(in srgb, var(--pr-accent) 55%, var(--pr-line)); box-shadow: 0 0 0 3px color-mix(in srgb, var(--pr-accent) 8%, transparent); }
.production-request-write__amount-unit { display: grid; place-items: center; align-self: stretch; color: var(--pr-accent); border-right: 1px solid var(--pr-line); background: var(--pr-accent-soft); font-size: 16px; font-weight: 760; }
.mublo-production-request-write .production-request-write__amount-input { width: 100%; min-height: 56px; padding: 0 15px; color: var(--pr-ink); border: 0; border-radius: 0; outline: 0; background: transparent; box-shadow: none; font-size: 20px; font-weight: 740; font-variant-numeric: tabular-nums; }
.mublo-production-request-write .production-request-write__amount-input:focus { box-shadow: none; }
.production-request-write__amount-input::-webkit-inner-spin-button,
.production-request-write__amount-input::-webkit-outer-spin-button { margin: 0; appearance: none; }
.production-request-write__amount-suffix { color: var(--pr-muted); font-size: 12px; font-weight: 660; }
.production-request-write__amount-help { margin: 8px 2px 0; color: var(--pr-muted); font-size: 10px; }

.mublo-production-request-write .mublo-editor-wrapper { overflow: hidden; border-color: var(--pr-line); border-radius: var(--pr-radius); }
.mublo-production-request-write .board-write__guest,
.mublo-production-request-write .board-write__file-list,
.mublo-production-request-write .board-write__link-list { border-color: var(--pr-line); border-radius: var(--pr-radius); background: var(--pr-panel-soft); }
.mublo-production-request-write .board-write__file-item,
.mublo-production-request-write .board-write__link-item { color: var(--pr-copy); border-color: var(--pr-line-soft); }
.mublo-production-request-write .board-write__actions { margin-top: 31px; padding: 22px 0 8px; border-color: var(--pr-line); }
.mublo-production-request-write .board-write__btn { min-height: 43px; padding: 9px 18px; color: var(--pr-copy); border: 1px solid var(--pr-line); border-radius: 10px; background: var(--pr-panel); font-size: 12px; font-weight: 700; }
.mublo-production-request-write .board-write__btn:hover { color: var(--pr-ink); border-color: var(--pr-ink); background: var(--pr-panel-soft); }
.mublo-production-request-write .board-write__btn--submit { color: var(--pr-accent-ink); border-color: var(--pr-accent); background: var(--pr-accent); }

/* Password ---------------------------------------------------------------- */

.mublo-production-request-password {
    display: grid;
    place-items: center;
    max-width: 1040px;
    min-height: 500px;
    margin: 0 auto;
    padding: 42px 16px;
}

.production-request-password__card {
    width: min(100%, 440px);
    padding: 42px 38px 35px;
    color: var(--pr-ink);
    border: 1px solid var(--pr-line);
    border-radius: var(--pr-radius-lg);
    background: var(--pr-panel);
    box-shadow: var(--pr-shadow);
    text-align: center;
}

.production-request-password__icon { display: grid; place-items: center; width: 52px; height: 52px; margin: 0 auto 21px; color: var(--pr-accent); border: 1px solid color-mix(in srgb, var(--pr-accent) 22%, var(--pr-line)); border-radius: 15px; background: var(--pr-accent-soft); }
.production-request-password__icon svg { width: 23px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }
.production-request-password__overline { justify-content: center; }
.production-request-password__card h1 { margin: 0; color: var(--pr-ink); font-size: 28px; font-weight: 780; letter-spacing: -.045em; }
.production-request-password__card > p:not(.production-request-password__overline):not(.production-request-password__error) { margin: 11px 0 26px; color: var(--pr-muted); font-size: 12px; line-height: 1.65; }
.production-request-password__card > p strong { color: var(--pr-copy); }
.production-request-password__form { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px; }
.production-request-password__form input { min-width: 0; height: 47px; padding: 0 14px; color: var(--pr-ink); border: 1px solid var(--pr-line); border-radius: 10px; outline: 0; background: var(--pr-panel-soft); }
.production-request-password__form input:focus { border-color: color-mix(in srgb, var(--pr-accent) 55%, var(--pr-line)); background: var(--pr-panel); box-shadow: 0 0 0 3px color-mix(in srgb, var(--pr-accent) 8%, transparent); }
.production-request-password__form button { height: 47px; padding: 0 18px; color: var(--pr-accent-ink); border: 1px solid var(--pr-accent); border-radius: 10px; background: var(--pr-accent); font-weight: 720; cursor: pointer; }
.production-request-password__form button:disabled { opacity: .6; cursor: wait; }
.production-request-password__error { margin: 11px 0 0; color: var(--pr-danger); font-size: 11px; }
.production-request-password__back { display: inline-flex; align-items: center; gap: 5px; margin-top: 22px; color: var(--pr-muted); font-size: 11px; text-decoration: none; }
.production-request-password__back:hover { color: var(--pr-ink); }
.production-request-password__back svg { width: 13px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }

/* Theme tuning ------------------------------------------------------------ */

:is(html.dark, html[data-theme="dark"], html[data-bs-theme="dark"]) .mublo-production-request {
    --pr-pending: #d59a4c;
    --pr-complete: #45b996;
    --pr-shadow-sm: 0 1px 0 rgba(255, 255, 255, .025);
    --pr-shadow: 0 22px 60px rgba(0, 0, 0, .28);
}

:is(html.dark, html[data-theme="dark"], html[data-bs-theme="dark"]) .mublo-production-request .production-request-hero {
    background:
        radial-gradient(circle at 77% 18%, color-mix(in srgb, var(--pr-accent) 14%, transparent), transparent 32%),
        linear-gradient(120deg, color-mix(in srgb, var(--pr-panel) 96%, #000) 4%, color-mix(in srgb, var(--pr-accent) 5%, var(--pr-panel)) 100%);
}

:is(html.dark, html[data-theme="dark"], html[data-bs-theme="dark"]) .mublo-production-request .production-request-hero__overview,
:is(html.dark, html[data-theme="dark"], html[data-bs-theme="dark"]) .mublo-production-request .production-request-hero__pipeline {
    background: color-mix(in srgb, var(--pr-panel) 92%, transparent);
}

/* Responsive -------------------------------------------------------------- */

@container (max-width: 860px) {
    .mublo-production-request .production-request-toolbar { grid-template-columns: minmax(0, 1fr) auto; }
    .mublo-production-request .production-request-toolbar__heading { display: none; }
}

@container (max-width: 720px) {
    .mublo-production-request .production-request-hero { grid-template-columns: 1fr; grid-template-rows: auto auto auto; }
    .mublo-production-request .production-request-hero__copy { padding: 34px 28px 15px; }
    .mublo-production-request .production-request-hero__overview { grid-row: 2; width: min(320px, calc(100% - 56px)); margin: 10px 28px 26px; }
    .mublo-production-request .production-request-hero__pipeline { grid-row: 3; padding-inline: 28px; }
    .mublo-production-request .production-request-grid { grid-template-columns: 1fr; }
    .mublo-production-request .production-request-card { min-height: 220px; }
    .mublo-production-request-manager__applicants { grid-template-columns: 1fr; }
}

@container (max-width: 560px) {
    .mublo-production-request-list { border-right: 0; border-left: 0; border-radius: 0; }
    .mublo-production-request .production-request-hero__copy { padding: 29px 20px 13px; }
    .mublo-production-request .production-request-hero__copy > p:last-child { font-size: 12px; }
    .mublo-production-request .production-request-hero__overview { width: calc(100% - 40px); margin: 9px 20px 22px; }
    .mublo-production-request .production-request-hero__pipeline { gap: 7px; padding: 13px 20px; }
    .mublo-production-request .production-request-hero__pipeline > b { min-width: 10px; }
    .mublo-production-request .production-request-toolbar { grid-template-columns: minmax(0, 1fr) 46px; gap: 8px; padding: 13px 14px; }
    .mublo-production-request .production-request-search { grid-template-columns: 76px minmax(0, 1fr) 43px; }
    .mublo-production-request .production-request-search select { padding-inline: 10px; }
    .mublo-production-request .production-request-search button { min-width: 43px; padding: 0; }
    .mublo-production-request .production-request-search button > span { display: none; }
    .mublo-production-request .production-request-write { min-width: 46px; width: 46px; padding: 0; font-size: 0; }
    .mublo-production-request .production-request-stage-filter { padding-inline: 14px; }
    .mublo-production-request .production-request-grid { gap: 11px; padding: 18px 14px 22px; }
    .mublo-production-request .production-request-notices { margin-inline: 14px; }
    .mublo-production-request .production-request-card__topline { padding: 18px 17px 0; }
    .mublo-production-request .production-request-card__body { padding: 18px 17px 15px; }
    .mublo-production-request .production-request-card__footer { grid-template-columns: minmax(0, 1fr) auto; padding: 12px 17px; }
    .mublo-production-request .production-request-card__assignment { display: none; }
    .mublo-production-request .production-request-card__signals { display: none; }
    .mublo-production-request .production-request-card__title { font-size: 17px; }
    .mublo-production-request-view .board-view__header { padding: 31px 0 24px; }
    .mublo-production-request-view__overview-main { padding: 22px 19px; }
    .mublo-production-request-view__summary-item { padding: 17px 19px; }
    .mublo-production-request-view__timeline { padding-inline: 15px; }
    .mublo-production-request-manager__header { align-items: flex-start; flex-direction: column; gap: 9px; padding: 22px 19px; }
    .mublo-production-request-manager__header p { text-align: left; }
    .mublo-production-request-manager__section { padding: 22px 19px 24px; }
    .mublo-production-request-manager__status-options { grid-template-columns: 1fr; }
    .mublo-production-request-manager__footer { align-items: stretch; flex-direction: column; padding: 16px 19px; }
    .mublo-production-request-manager__save { width: 100%; }
    .mublo-production-request-view__application-heading { align-items: flex-start; flex-direction: column; gap: 8px; }
    .mublo-production-request-view__application-heading > p { text-align: left; }
    .production-request-write__workflow { align-items: flex-start; flex-wrap: wrap; }
    .production-request-write__workflow-help { flex-basis: 100%; margin: 0; }
    .mublo-production-request-write .board-write__link-add { flex-direction: column; }
    .mublo-production-request-write .board-write__link-add .board-write__input { width: 100%; }
    .production-request-password__card { padding: 36px 22px 30px; }
    .production-request-password__form { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .mublo-production-request-view,
    .mublo-production-request-write { padding-inline: 2px; }
}

@media (prefers-reduced-motion: reduce) {
    .mublo-production-request *,
    .mublo-production-request *::before,
    .mublo-production-request *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

/* ========================================================================== 
   Production Request — Project Desk refinement
   브리프 문서·매칭 노드·승인 신호를 목록부터 작성 화면까지 반복한다.
   ========================================================================== */

.mublo-production-request {
    --pr-electric: #246bfe;
    --pr-cyan: #58c7df;
    --pr-violet: #6c63e8;
    --pr-blueprint: color-mix(in srgb, var(--pr-electric) 8%, var(--pr-panel));
    --pr-elevated: color-mix(in srgb, var(--pr-panel) 97%, var(--pr-accent));
    --pr-hairline: color-mix(in srgb, var(--pr-line) 74%, transparent);
}

/* List hero: a project brief moving through a real matching network. */
.mublo-production-request-list {
    border-radius: 26px;
    box-shadow:
        0 1px 1px color-mix(in srgb, var(--pr-ink) 4%, transparent),
        0 24px 70px color-mix(in srgb, var(--pr-ink) 5%, transparent);
}

.mublo-production-request .production-request-hero {
    grid-template-columns: minmax(0, 43%) minmax(0, 57%);
    grid-template-rows: minmax(258px, auto) 68px;
    min-height: 326px;
    background:
        linear-gradient(90deg, color-mix(in srgb, var(--pr-panel) 98%, transparent) 0 43%, transparent 43%),
        radial-gradient(circle at 79% 42%, color-mix(in srgb, var(--pr-electric) 12%, transparent), transparent 36%),
        linear-gradient(123deg, var(--pr-panel) 8%, color-mix(in srgb, var(--pr-electric) 4.5%, var(--pr-panel)) 100%);
}

.mublo-production-request .production-request-hero::before {
    z-index: 0;
    top: 0;
    right: 0;
    width: 57%;
    height: 100%;
    border: 0;
    border-radius: 0;
    background:
        linear-gradient(135deg, transparent 0 48.5%, color-mix(in srgb, var(--pr-electric) 8%, transparent) 48.5% 49%, transparent 49% 100%),
        linear-gradient(45deg, transparent 0 48.5%, color-mix(in srgb, var(--pr-electric) 6%, transparent) 48.5% 49%, transparent 49% 100%);
    background-size: 82px 82px;
    box-shadow: none;
    opacity: .72;
    content: "";
}

.mublo-production-request .production-request-hero::after {
    z-index: 0;
    top: 21px;
    right: 22px;
    width: 48px;
    height: 48px;
    opacity: .72;
    background:
        linear-gradient(var(--pr-accent), var(--pr-accent)) 0 0 / 16px 1px no-repeat,
        linear-gradient(var(--pr-accent), var(--pr-accent)) 0 0 / 1px 16px no-repeat,
        linear-gradient(var(--pr-accent), var(--pr-accent)) 100% 100% / 16px 1px no-repeat,
        linear-gradient(var(--pr-accent), var(--pr-accent)) 100% 100% / 1px 16px no-repeat;
    mask-image: none;
    content: "";
}

.mublo-production-request .production-request-hero__copy {
    z-index: 3;
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    padding: 39px 26px 0 36px;
}

.mublo-production-request .production-request-hero__eyebrow {
    margin-bottom: 15px;
    color: var(--pr-accent);
    letter-spacing: .19em;
}

.mublo-production-request .production-request-hero h1 {
    max-width: 360px;
    font-size: clamp(44px, 6.3cqi, 60px);
    font-weight: 840;
    line-height: .98;
    letter-spacing: -.065em;
}

.mublo-production-request .production-request-hero__copy > p:last-child {
    max-width: 330px;
    margin-top: 19px;
    font-size: 12px;
    line-height: 1.7;
}

.mublo-production-request .production-request-hero__visual {
    position: relative;
    z-index: 1;
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    min-height: 258px;
    padding: 8px 10px 3px 0;
    pointer-events: none;
}

.production-request-hero__visual-caption {
    position: absolute;
    right: 25px;
    bottom: 13px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--pr-muted);
    font-size: 8px;
    font-weight: 790;
    letter-spacing: .13em;
}

.production-request-hero__visual-caption > i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--pr-complete);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--pr-complete) 10%, transparent);
}

.mublo-production-request .production-request-hero__overview {
    z-index: 4;
    grid-column: 1;
    grid-row: 1;
    align-self: end;
    justify-self: start;
    width: 280px;
    min-height: 70px;
    margin: 0 0 25px 36px;
    padding: 12px 16px;
    border-color: color-mix(in srgb, var(--pr-ink) 9%, var(--pr-line));
    border-radius: 14px;
    background: color-mix(in srgb, var(--pr-panel) 93%, transparent);
    box-shadow: 0 14px 34px color-mix(in srgb, var(--pr-ink) 7%, transparent);
}

.mublo-production-request .production-request-hero__overview span { font-size: 8px; letter-spacing: .08em; }
.mublo-production-request .production-request-hero__overview strong { font-size: 23px; }
.mublo-production-request .production-request-hero__overview small { font-size: 9px; }

.mublo-production-request .production-request-hero__pipeline {
    grid-row: 2;
    min-height: 68px;
    padding-inline: 36px;
    background: color-mix(in srgb, var(--pr-panel) 92%, transparent);
}

.mublo-production-request .production-request-hero__pipeline > b {
    height: 2px;
    background: linear-gradient(90deg, var(--pr-line), color-mix(in srgb, var(--pr-accent) 28%, var(--pr-line)), var(--pr-line));
}

.mublo-production-request .production-request-hero__pipeline > span i { box-shadow: 0 0 0 4px color-mix(in srgb, currentColor 7%, transparent); }

/* Search and stage controls share the same drafting-desk geometry. */
.mublo-production-request .production-request-toolbar {
    min-height: 94px;
    padding: 18px 26px;
    background:
        linear-gradient(90deg, color-mix(in srgb, var(--pr-accent) 2.5%, var(--pr-panel)), var(--pr-panel) 38%),
        var(--pr-panel);
}

.mublo-production-request .production-request-toolbar__heading > span { letter-spacing: .18em; }
.mublo-production-request .production-request-toolbar__heading > strong { font-size: 15px; }
.mublo-production-request .production-request-search { height: 48px; border-radius: 11px; background: var(--pr-panel); box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--pr-ink) 1%, transparent); }
.mublo-production-request .production-request-write { height: 48px; border-radius: 11px; box-shadow: 0 9px 23px color-mix(in srgb, var(--pr-accent) 20%, transparent); }
.mublo-production-request .production-request-stage-filter { gap: 11px; padding-block: 16px; background: color-mix(in srgb, var(--pr-panel-soft) 26%, var(--pr-panel)); }
.mublo-production-request .production-request-stage-filter a { min-height: 36px; padding-inline: 14px; border-radius: 9px; }
.mublo-production-request .production-request-stage-filter a.is-current { box-shadow: inset 0 0 0 1px color-mix(in srgb, currentColor 6%, transparent); }

/* Project dossier cards. */
.mublo-production-request .production-request-card { --pr-card-status: var(--pr-muted); min-height: 246px; border-radius: 15px; background: linear-gradient(145deg, var(--pr-panel), color-mix(in srgb, var(--pr-card-status) 1.8%, var(--pr-panel))); }
.mublo-production-request .production-request-card--pending { --pr-card-status: var(--pr-pending); }
.mublo-production-request .production-request-card--active { --pr-card-status: var(--pr-active); }
.mublo-production-request .production-request-card--complete { --pr-card-status: var(--pr-complete); }

.mublo-production-request .production-request-card::before {
    z-index: 3;
    top: 15px;
    right: auto;
    bottom: 15px;
    left: 0;
    width: 3px;
    height: auto;
    border-radius: 0 3px 3px 0;
    background: var(--pr-card-status);
    opacity: .72;
}

.mublo-production-request .production-request-card::after {
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    width: 112px;
    height: 83px;
    opacity: .34;
    background-image:
        linear-gradient(color-mix(in srgb, var(--pr-card-status) 10%, transparent) 1px, transparent 1px),
        linear-gradient(90deg, color-mix(in srgb, var(--pr-card-status) 10%, transparent) 1px, transparent 1px);
    background-size: 14px 14px;
    mask-image: linear-gradient(225deg, #000, transparent 72%);
    content: "";
    pointer-events: none;
}

.mublo-production-request .production-request-card:hover {
    border-color: color-mix(in srgb, var(--pr-card-status) 42%, var(--pr-line));
    background: linear-gradient(145deg, var(--pr-panel), color-mix(in srgb, var(--pr-card-status) 4%, var(--pr-panel)));
    box-shadow:
        0 17px 38px color-mix(in srgb, var(--pr-ink) 8%, transparent),
        inset 0 0 0 1px color-mix(in srgb, var(--pr-card-status) 6%, transparent);
}

.mublo-production-request .production-request-card__topline,
.mublo-production-request .production-request-card__body,
.mublo-production-request .production-request-card__footer { position: relative; z-index: 1; }
.mublo-production-request .production-request-card__topline { padding: 19px 19px 0 21px; }
.mublo-production-request .production-request-card__badges { gap: 7px; }

.mublo-production-request .production-request-card__code {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    color: var(--pr-card-status);
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
    font-size: 8px;
    font-weight: 780;
    letter-spacing: .08em;
}

.mublo-production-request .production-request-status,
.mublo-production-request .production-request-badge { border-radius: 7px; }
.mublo-production-request .production-request-badge--new { padding-inline: 2px; }
.mublo-production-request .production-request-card__budget > span { text-transform: uppercase; letter-spacing: .07em; }
.mublo-production-request .production-request-card__budget strong { font-size: 17px; }
.mublo-production-request .production-request-card__body { padding: 21px 20px 18px; }
.mublo-production-request .production-request-card__title { font-size: 18px; line-height: 1.36; }
.mublo-production-request .production-request-card__excerpt { margin-top: 10px; line-height: 1.7; }

.mublo-production-request .production-request-card__footer {
    min-height: 68px;
    background:
        linear-gradient(90deg, color-mix(in srgb, var(--pr-card-status) 3.5%, var(--pr-panel-soft)), var(--pr-panel-soft) 48%),
        var(--pr-panel-soft);
}

.mublo-production-request .production-request-card__assignment { position: relative; padding-left: 13px; }
.mublo-production-request .production-request-card__assignment::before { position: absolute; top: 2px; bottom: 2px; left: 0; width: 1px; background: var(--pr-line); content: ""; }
.mublo-production-request .production-request-card__open { border-radius: 9px; }
.mublo-production-request .production-request-card:hover .production-request-card__open { color: var(--pr-card-status); border-color: color-mix(in srgb, var(--pr-card-status) 44%, var(--pr-line)); background: color-mix(in srgb, var(--pr-card-status) 7%, var(--pr-panel)); }

/* Detail is treated as a project-file cover, not a generic article. */
.mublo-production-request-view .board-view__board-header {
    position: relative;
    overflow: hidden;
    padding: 25px 0 23px;
}

.mublo-production-request-view .board-view__board-header::after {
    position: absolute;
    right: 0;
    bottom: 24px;
    width: min(38%, 280px);
    height: 19px;
    background:
        radial-gradient(circle, color-mix(in srgb, var(--pr-accent) 38%, transparent) 1px, transparent 1.5px) 0 50% / 10px 10px repeat-x,
        linear-gradient(90deg, transparent, color-mix(in srgb, var(--pr-accent) 30%, var(--pr-line))) 0 50% / 100% 1px no-repeat;
    mask-image: linear-gradient(90deg, transparent, #000 25%);
    content: "";
}

.mublo-production-request-view__overview {
    position: relative;
    isolation: isolate;
    border-radius: 22px;
    background:
        radial-gradient(circle at 90% 10%, color-mix(in srgb, var(--pr-electric) 12%, transparent), transparent 30%),
        linear-gradient(125deg, var(--pr-panel), color-mix(in srgb, var(--pr-electric) 3%, var(--pr-panel)));
    box-shadow:
        0 1px 1px color-mix(in srgb, var(--pr-ink) 4%, transparent),
        0 22px 54px color-mix(in srgb, var(--pr-ink) 5%, transparent);
}

.mublo-production-request-view__overview::before {
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    width: 42%;
    height: 57%;
    opacity: .45;
    background-image:
        linear-gradient(color-mix(in srgb, var(--pr-accent) 10%, transparent) 1px, transparent 1px),
        linear-gradient(90deg, color-mix(in srgb, var(--pr-accent) 10%, transparent) 1px, transparent 1px);
    background-size: 18px 18px;
    mask-image: linear-gradient(225deg, #000, transparent 76%);
    content: "";
}

.mublo-production-request-view__overview::after {
    position: absolute;
    z-index: -1;
    top: -67px;
    right: -38px;
    width: 185px;
    height: 185px;
    border: 1px solid color-mix(in srgb, var(--pr-accent) 14%, transparent);
    border-radius: 50%;
    box-shadow: 0 0 0 24px color-mix(in srgb, var(--pr-accent) 2.5%, transparent);
    content: "";
}

.mublo-production-request-view__overview-main { min-height: 119px; padding: 26px 29px; }
.mublo-production-request-view__state { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.mublo-production-request-view__file-code { color: var(--pr-accent); font-family: ui-monospace, "SFMono-Regular", Consolas, monospace; font-size: 8px; font-weight: 790; letter-spacing: .13em; }
.mublo-production-request-view__amount strong { font-size: clamp(25px, 3.5cqi, 33px); }
.mublo-production-request-view__summary-grid { background: color-mix(in srgb, var(--pr-panel) 74%, transparent); }
.mublo-production-request-view__summary-item { position: relative; padding: 20px 29px 20px 62px; }
.mublo-production-request-view__summary-item::before { position: absolute; top: 19px; left: 29px; display: grid; place-items: center; width: 24px; height: 24px; color: var(--pr-accent); border: 1px solid color-mix(in srgb, var(--pr-accent) 25%, var(--pr-line)); border-radius: 7px; background: var(--pr-accent-soft); font-family: ui-monospace, monospace; font-size: 8px; font-weight: 800; content: "01"; }
.mublo-production-request-view__summary-item--assignee::before { content: "02"; }

.mublo-production-request-view__timeline { padding: 25px 28px 27px; background: color-mix(in srgb, var(--pr-panel-soft) 30%, transparent); }
.mublo-production-request-view__timeline-step { gap: 9px; }
.mublo-production-request-view__timeline-step > span:last-child { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.mublo-production-request-view__timeline-step > span:last-child small { color: var(--pr-muted); font-family: ui-monospace, monospace; font-size: 7px; font-weight: 720; letter-spacing: .11em; }
.mublo-production-request-view__timeline-marker { width: 30px; height: 30px; border-radius: 9px; }
.mublo-production-request-view__timeline-step:not(:last-child)::after { top: 14px; left: calc(50% + 19px); width: calc(100% - 38px); }

.mublo-production-request-view__content-label { display: flex; align-items: baseline; gap: 10px; padding-bottom: 13px; }
.mublo-production-request-view__content-label > span { color: var(--pr-accent); font-family: ui-monospace, monospace; font-size: 8px; font-weight: 800; letter-spacing: .14em; }
.mublo-production-request-view__content-label > strong { color: var(--pr-ink); font-size: 12px; font-weight: 750; letter-spacing: -.01em; }
.mublo-production-request-view .mublo-production-request-view__content { padding-top: 34px; font-size: 15.5px; line-height: 1.92; }

/* Author control room. */
.mublo-production-request-manager { border-color: color-mix(in srgb, var(--pr-accent) 29%, var(--pr-line)); border-radius: 22px; }
.mublo-production-request-manager__header { position: relative; overflow: hidden; min-height: 112px; padding: 27px 29px 24px; background: linear-gradient(112deg, var(--pr-accent-soft), var(--pr-panel) 48%); }
.mublo-production-request-manager__header::after { position: absolute; top: 0; right: 0; width: 230px; height: 100%; opacity: .5; background-image: radial-gradient(circle, color-mix(in srgb, var(--pr-accent) 29%, transparent) 1px, transparent 1.5px); background-size: 11px 11px; mask-image: linear-gradient(90deg, transparent, #000); content: ""; pointer-events: none; }
.mublo-production-request-manager__header > * { position: relative; z-index: 1; }
.mublo-production-request-manager__header-side { display: flex; max-width: 405px; flex-direction: column; align-items: flex-end; gap: 8px; }
.mublo-production-request-manager__access { display: inline-flex; align-items: center; gap: 7px; color: var(--pr-accent); font-family: ui-monospace, monospace; font-size: 7px; font-weight: 790; letter-spacing: .12em; }
.mublo-production-request-manager__access > i { width: 6px; height: 6px; border-radius: 50%; background: var(--pr-complete); box-shadow: 0 0 0 4px color-mix(in srgb, var(--pr-complete) 10%, transparent); }
.mublo-production-request-manager__header p { max-width: none; }

.mublo-production-request-manager__status-option { min-height: 54px; padding: 0 40px 0 16px; border-radius: 10px; }
.mublo-production-request-manager__status-option::after { position: absolute; right: 13px; color: color-mix(in srgb, currentColor 45%, transparent); font-family: ui-monospace, monospace; font-size: 8px; font-weight: 780; content: "01"; }
.mublo-production-request-manager__status-option:nth-child(2)::after { content: "02"; }
.mublo-production-request-manager__status-option:nth-child(3)::after { content: "03"; }
.mublo-production-request-manager__applicant { min-height: 76px; padding: 12px 13px; border-radius: 11px; }
.mublo-production-request-manager__applicant-avatar { border-radius: 11px; }
.mublo-production-request-manager__applicant.is-selected { box-shadow: inset 3px 0 0 var(--pr-accent), inset 0 0 0 1px color-mix(in srgb, var(--pr-accent) 8%, transparent); }
.mublo-production-request-manager__save { min-height: 44px; padding-inline: 19px; box-shadow: 0 8px 20px color-mix(in srgb, var(--pr-accent) 19%, transparent); }
.mublo-production-request-view .mublo-production-request-view__application { position: relative; overflow: hidden; padding: 19px 19px 19px 22px; }
.mublo-production-request-view .mublo-production-request-view__application::before { position: absolute; top: 15px; bottom: 15px; left: 0; width: 3px; border-radius: 0 3px 3px 0; background: color-mix(in srgb, var(--pr-accent) 55%, var(--pr-line)); content: ""; }

/* Write screen: a three-part production brief. */
.mublo-production-request-write .board-write__header {
    position: relative;
    overflow: hidden;
    min-height: 192px;
    padding: 30px 32px 25px;
    border: 1px solid var(--pr-line);
    border-top: 2px solid var(--pr-ink);
    border-radius: 0 0 20px 20px;
    background:
        radial-gradient(circle at 91% 2%, color-mix(in srgb, var(--pr-accent) 12%, transparent), transparent 31%),
        linear-gradient(125deg, var(--pr-panel), color-mix(in srgb, var(--pr-accent) 3%, var(--pr-panel)));
}

.mublo-production-request-write .board-write__header::after { position: absolute; top: 18px; right: 20px; width: 76px; height: 76px; opacity: .5; background: linear-gradient(var(--pr-accent), var(--pr-accent)) 0 0 / 18px 1px no-repeat, linear-gradient(var(--pr-accent), var(--pr-accent)) 0 0 / 1px 18px no-repeat, linear-gradient(var(--pr-accent), var(--pr-accent)) 100% 100% / 18px 1px no-repeat, linear-gradient(var(--pr-accent), var(--pr-accent)) 100% 100% / 1px 18px no-repeat; content: ""; }
.mublo-production-request-write .board-write__board-name { font-size: 27px; letter-spacing: -.045em; }
.mublo-production-request-write .board-write__desc { font-size: 12px; }

.mublo-production-request-write__map {
    display: grid;
    grid-template-columns: auto minmax(22px, 1fr) auto minmax(22px, 1fr) auto;
    align-items: center;
    width: min(100%, 560px);
    margin-top: 28px;
}

.mublo-production-request-write__map > span { display: grid; grid-template-columns: 28px auto; grid-template-rows: auto auto; column-gap: 9px; align-items: center; color: var(--pr-muted); }
.mublo-production-request-write__map > span > i { grid-row: 1 / 3; display: grid; place-items: center; width: 28px; height: 28px; color: var(--pr-muted); border: 1px solid var(--pr-line); border-radius: 8px; background: var(--pr-panel); font-family: ui-monospace, monospace; font-size: 8px; font-style: normal; font-weight: 800; }
.mublo-production-request-write__map > span > b { font-size: 8px; letter-spacing: .1em; }
.mublo-production-request-write__map > span > small { margin-top: 2px; font-size: 8px; }
.mublo-production-request-write__map > span.is-current { color: var(--pr-accent); }
.mublo-production-request-write__map > span.is-current > i { color: var(--pr-accent-ink); border-color: var(--pr-accent); background: var(--pr-accent); box-shadow: 0 0 0 4px var(--pr-accent-soft); }
.mublo-production-request-write__map > em { height: 1px; margin-inline: 12px; background: linear-gradient(90deg, color-mix(in srgb, var(--pr-accent) 32%, var(--pr-line)), var(--pr-line)); }

.mublo-production-request-write > form {
    margin-top: 18px;
    padding: 29px 30px 22px;
    border: 1px solid var(--pr-line);
    border-radius: 20px;
    background: var(--pr-panel);
    box-shadow: 0 18px 48px color-mix(in srgb, var(--pr-ink) 4%, transparent);
}

.production-request-write__workflow { position: relative; overflow: hidden; min-height: 62px; border-radius: 11px; background: linear-gradient(90deg, var(--pr-accent-soft), var(--pr-panel-soft) 40%); }
.production-request-write__workflow::after { position: absolute; top: -34px; right: -10px; width: 120px; height: 120px; border: 1px solid color-mix(in srgb, var(--pr-accent) 12%, transparent); border-radius: 50%; content: ""; }
.production-request-write__workflow > * { position: relative; z-index: 1; }
.production-request-write__amount-control { height: 62px; border-radius: 11px; }
.mublo-production-request-write .production-request-write__amount-input { min-height: 60px; font-size: 22px; }
.mublo-production-request-write .mublo-editor-wrapper { box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--pr-ink) 1.5%, transparent); }

/* Theme-specific density: dark mode keeps the same graphic, without white haze. */
:is(html.dark, html[data-theme="dark"], html[data-bs-theme="dark"]) .mublo-production-request {
    --pr-electric: #4f83ff;
    --pr-cyan: #52b8d1;
    --pr-elevated: color-mix(in srgb, var(--pr-panel) 96%, #fff);
}

:is(html.dark, html[data-theme="dark"], html[data-bs-theme="dark"]) .mublo-production-request .production-request-hero {
    background:
        linear-gradient(90deg, color-mix(in srgb, var(--pr-panel) 98%, #000) 0 43%, transparent 43%),
        radial-gradient(circle at 79% 42%, color-mix(in srgb, var(--pr-electric) 13%, transparent), transparent 38%),
        linear-gradient(123deg, color-mix(in srgb, var(--pr-panel) 97%, #000), color-mix(in srgb, var(--pr-electric) 5%, var(--pr-panel)));
}

:is(html.dark, html[data-theme="dark"], html[data-bs-theme="dark"]) .mublo-production-request .production-request-hero__overview { background: color-mix(in srgb, var(--pr-panel) 94%, transparent); }
:is(html.dark, html[data-theme="dark"], html[data-bs-theme="dark"]) .mublo-production-request .production-request-card::after { opacity: .22; }

.mublo-production-request-manager__status-option:has(input:focus-visible),
.mublo-production-request-manager__applicant:has(input:focus-visible) {
    outline: 2px solid var(--pr-accent);
    outline-offset: 3px;
}

.mublo-production-request .production-request-write:focus-visible,
.mublo-production-request .production-request-card__open:focus-visible,
.mublo-production-request-view .board-view__btn:focus-visible,
.mublo-production-request-manager__save:focus-visible,
.mublo-production-request-write .board-write__btn:focus-visible {
    outline: 2px solid var(--pr-accent);
    outline-offset: 3px;
}

.mublo-production-request-view .board-view__btn--write:hover,
.mublo-production-request-manager__save:hover,
.mublo-production-request-write .board-write__btn--submit:hover {
    color: var(--pr-accent-ink);
    border-color: var(--pr-accent);
    background: color-mix(in srgb, var(--pr-accent) 90%, var(--pr-ink));
}

/* Refinement responsive rules. */
@container (max-width: 860px) {
    .mublo-production-request .production-request-hero { grid-template-columns: minmax(0, 44%) minmax(0, 56%); }
    .mublo-production-request .production-request-hero__copy { padding-left: 28px; }
    .mublo-production-request .production-request-hero__overview { width: 255px; margin-left: 28px; }
    .mublo-production-request .production-request-card__footer { gap: 10px; padding-inline: 18px; }
}

@container (max-width: 720px) {
    .mublo-production-request .production-request-hero {
        grid-template-columns: 1fr;
        grid-template-rows: auto 218px 68px;
    }
    .mublo-production-request .production-request-hero::before { width: 100%; height: 218px; top: auto; bottom: 68px; }
    .mublo-production-request .production-request-hero__copy { grid-column: 1; grid-row: 1; padding: 34px 28px 20px; }
    .mublo-production-request .production-request-hero h1 { font-size: clamp(43px, 9cqi, 56px); }
    .mublo-production-request .production-request-hero__visual { grid-column: 1; grid-row: 2; min-height: 218px; padding: 0 12px; }
    .mublo-production-request .production-request-hero__overview { grid-column: 1; grid-row: 2; width: 260px; margin: 0 0 16px 28px; }
    .mublo-production-request .production-request-hero__pipeline { grid-row: 3; }
    .mublo-production-request .production-request-card { min-height: 232px; }
    .mublo-production-request-write__map { width: 100%; }
}

@container (max-width: 560px) {
    .mublo-production-request .production-request-hero { grid-template-rows: auto 190px 64px; }
    .mublo-production-request .production-request-hero::before { height: 190px; bottom: 64px; }
    .mublo-production-request .production-request-hero__copy { padding: 30px 20px 16px; }
    .mublo-production-request .production-request-hero h1 { font-size: clamp(39px, 12cqi, 50px); }
    .mublo-production-request .production-request-hero__visual { min-height: 190px; padding-inline: 2px; }
    .mublo-production-request .production-request-hero__visual-caption { right: 15px; bottom: 7px; }
    .mublo-production-request .production-request-hero__overview { width: 230px; min-height: 62px; margin: 0 0 10px 20px; padding: 9px 12px; }
    .mublo-production-request .production-request-hero__overview strong { font-size: 20px; }
    .mublo-production-request .production-request-hero__pipeline { padding-inline: 17px; }
    .mublo-production-request .production-request-card__code { min-height: 22px; }
    .mublo-production-request .production-request-card__topline { padding-inline: 18px; }
    .mublo-production-request .production-request-card__body { padding-inline: 18px; }
    .mublo-production-request .production-request-card__footer {
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-areas:
            "author open"
            "assignment signals";
        row-gap: 10px;
        min-height: 91px;
    }
    .mublo-production-request .production-request-card__author { grid-area: author; }
    .mublo-production-request .production-request-card__assignment { grid-area: assignment; display: block; padding-left: 0; }
    .mublo-production-request .production-request-card__assignment::before { display: none; }
    .mublo-production-request .production-request-card__assignment > span { display: none; }
    .mublo-production-request .production-request-card__assignment strong { font-size: 10px; }
    .mublo-production-request .production-request-card__signals { grid-area: signals; display: flex; justify-self: end; }
    .mublo-production-request .production-request-card__open { grid-area: open; }
    .mublo-production-request-view__overview-main { padding-inline: 20px; }
    .mublo-production-request-view__summary-item { padding: 18px 17px 18px 49px; }
    .mublo-production-request-view__summary-item::before { top: 18px; left: 17px; }
    .mublo-production-request-manager__header-side { align-items: flex-start; }
    .mublo-production-request-manager__header-side p { text-align: left; }
    .mublo-production-request-write .board-write__header { min-height: 0; padding: 26px 20px 22px; border-right: 0; border-left: 0; border-radius: 0; }
    .mublo-production-request-write .board-write__board-name { font-size: 24px; }
    .mublo-production-request-write__map { grid-template-columns: repeat(3, 1fr); gap: 6px; margin-top: 23px; }
    .mublo-production-request-write__map > em { display: none; }
    .mublo-production-request-write__map > span { grid-template-columns: 24px minmax(0, 1fr); column-gap: 6px; }
    .mublo-production-request-write__map > span > i { width: 24px; height: 24px; }
    .mublo-production-request-write__map > span > small { display: none; }
    .mublo-production-request-write > form { margin-top: 12px; padding: 22px 16px 18px; border-right: 0; border-left: 0; border-radius: 0; box-shadow: none; }
}

@media (max-width: 640px) {
    .mublo-production-request-view .board-comment__item {
        margin-left: 0 !important;
    }
}

/* Generated key art -------------------------------------------------------
   Theme-specific commissioned artwork is the primary visual direction. */
.mublo-production-request .production-request-hero__visual {
    grid-column: 1 / -1;
    overflow: hidden;
    padding: 0;
}

.mublo-production-request .production-request-hero__art {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 51%;
    user-select: none;
}

.mublo-production-request .production-request-hero__art--dark { display: none; }

.mublo-production-request .production-request-hero__visual::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        90deg,
        var(--pr-panel) 0%,
        color-mix(in srgb, var(--pr-panel) 96%, transparent) 19%,
        color-mix(in srgb, var(--pr-panel) 54%, transparent) 38%,
        transparent 55%
    );
    content: "";
    pointer-events: none;
}

.mublo-production-request .production-request-hero__copy,
.mublo-production-request .production-request-hero__overview { text-shadow: 0 1px 0 color-mix(in srgb, var(--pr-panel) 44%, transparent); }
.mublo-production-request .production-request-hero::after { z-index: 5; }
.mublo-production-request .production-request-hero__visual-caption { z-index: 2; padding: 6px 9px; border: 1px solid color-mix(in srgb, var(--pr-line) 70%, transparent); border-radius: 99px; background: color-mix(in srgb, var(--pr-panel) 76%, transparent); backdrop-filter: blur(8px); }

:is(html.dark, html[data-theme="dark"], html[data-bs-theme="dark"]) .mublo-production-request .production-request-hero__art--light { display: none; }
:is(html.dark, html[data-theme="dark"], html[data-bs-theme="dark"]) .mublo-production-request .production-request-hero__art--dark { display: block; }

@container (max-width: 720px) {
    .mublo-production-request .production-request-hero__visual { grid-row: 2; }
    .mublo-production-request .production-request-hero__visual::after { display: none; }
    .mublo-production-request .production-request-hero__art { object-position: center 50%; }
}

/* ========================================================================== 
   Production Request — Project Market ledger
   제작의뢰는 콘텐츠 카드가 아니라 예산·지원·매칭을 비교하는 업무 원장으로 보인다.
   ========================================================================== */

.mublo-production-request-list {
    --market-columns: minmax(0, 1fr) minmax(108px, 126px) 72px minmax(116px, 142px) 36px;
    --pr-accent: #246bfe;
    --pr-active: #246bfe;
    --pr-accent-soft: color-mix(in srgb, var(--pr-accent) 9%, var(--pr-panel));
    --pr-active-soft: color-mix(in srgb, var(--pr-active) 9%, var(--pr-panel));
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 1px 2px color-mix(in srgb, var(--pr-ink) 5%, transparent);
}

/* Compact market identity: every region owns its column, so nothing overlaps. */
.mublo-production-request .production-market-head {
    position: relative;
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(205px, 27%) 164px;
    min-height: 164px;
    overflow: hidden;
    border-bottom: 1px solid var(--pr-line);
    background: var(--pr-panel);
}

.mublo-production-request .production-market-head__identity {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    padding: 29px 32px 28px;
}

.mublo-production-request .production-market-head__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 11px;
    color: var(--pr-accent);
    font-size: 8px;
    font-weight: 820;
    line-height: 1;
    letter-spacing: .18em;
}

.mublo-production-request .production-market-head__eyebrow > span {
    width: 19px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
}

.mublo-production-request .production-market-head h1 {
    margin: 0;
    color: var(--pr-ink);
    font-size: clamp(30px, 4.5cqi, 40px);
    font-weight: 810;
    line-height: 1.04;
    letter-spacing: -.055em;
    overflow-wrap: anywhere;
}

.mublo-production-request .production-market-head__identity > p:last-child {
    max-width: 500px;
    margin: 12px 0 0;
    color: var(--pr-copy);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.65;
    letter-spacing: -.012em;
}

.mublo-production-request .production-market-head__art {
    position: relative;
    min-width: 0;
    min-height: 136px;
    overflow: hidden;
    margin-block: 14px;
    border: 1px solid var(--pr-line-soft);
    border-radius: 12px;
    background: var(--pr-panel-soft);
    isolation: isolate;
}

.mublo-production-request .production-market-head__art::before {
    position: absolute;
    z-index: 2;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--pr-panel) 24%, transparent);
    content: "";
    pointer-events: none;
}

.mublo-production-request .production-market-head__art::after {
    position: absolute;
    z-index: 1;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 52%, color-mix(in srgb, var(--pr-panel) 68%, transparent)),
        linear-gradient(90deg, color-mix(in srgb, var(--pr-panel) 18%, transparent), transparent 44%);
    content: "";
    pointer-events: none;
}

.mublo-production-request .production-market-head__image {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% 52%;
    transform: scale(1.03);
    user-select: none;
}

.mublo-production-request .production-market-head__image--dark { display: none; }

.mublo-production-request .production-market-head__art-label {
    position: absolute;
    z-index: 3;
    right: 11px;
    bottom: 9px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 7px;
    color: var(--pr-copy);
    border: 1px solid color-mix(in srgb, var(--pr-line) 75%, transparent);
    border-radius: 99px;
    background: color-mix(in srgb, var(--pr-panel) 82%, transparent);
    backdrop-filter: blur(7px);
    font-size: 7px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .12em;
}

.mublo-production-request .production-market-head__art-label > i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--pr-complete);
}

.mublo-production-request .production-market-head__summary {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    min-width: 0;
    margin: 0 0 0 14px;
    border-left: 1px solid var(--pr-line);
    background: color-mix(in srgb, var(--pr-panel-soft) 48%, var(--pr-panel));
}

.mublo-production-request .production-market-head__summary > div {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 15px 20px;
}

.mublo-production-request .production-market-head__summary > div + div {
    border-top: 1px solid var(--pr-line);
}

.mublo-production-request .production-market-head__summary dt {
    color: var(--pr-muted);
    font-size: 9px;
    font-weight: 680;
    letter-spacing: .02em;
    white-space: nowrap;
}

.mublo-production-request .production-market-head__summary dd {
    margin: 0;
    color: var(--pr-ink);
    font-size: 27px;
    font-weight: 790;
    line-height: 1;
    letter-spacing: -.055em;
    font-variant-numeric: tabular-nums;
}

.mublo-production-request .production-market-head__summary small {
    margin-left: 3px;
    color: var(--pr-muted);
    font-size: 9px;
    font-weight: 640;
    letter-spacing: 0;
}

/* Search, action and status filters form one compact command surface. */
.mublo-production-request .production-market-controls {
    border-bottom: 1px solid var(--pr-line);
    background: var(--pr-panel);
}

.mublo-production-request .production-market-controls__top {
    display: grid;
    grid-template-columns: minmax(155px, .58fr) minmax(300px, 1.42fr) auto;
    align-items: center;
    gap: 14px;
    min-height: 74px;
    padding: 13px 24px;
}

.mublo-production-request .production-market-controls__heading {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 3px;
}

.mublo-production-request .production-market-controls__heading > strong {
    color: var(--pr-ink);
    font-size: 14px;
    font-weight: 760;
    letter-spacing: -.025em;
}

.mublo-production-request .production-market-controls__heading > span {
    overflow: hidden;
    color: var(--pr-muted);
    font-size: 9px;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mublo-production-request .production-market-controls .production-request-search {
    height: 44px;
    border-radius: 9px;
    background: color-mix(in srgb, var(--pr-panel-soft) 62%, var(--pr-panel));
    box-shadow: none;
}

.mublo-production-request .production-market-controls .production-request-write {
    min-width: 108px;
    height: 44px;
    border-radius: 9px;
    box-shadow: none;
}

.mublo-production-request .production-market-controls .production-request-write:hover {
    box-shadow: 0 6px 16px color-mix(in srgb, var(--pr-accent) 16%, transparent);
}

.mublo-production-request .production-market-controls .production-request-stage-filter {
    gap: 4px;
    padding: 9px 24px 11px;
    border-top: 1px solid var(--pr-line-soft);
    border-bottom: 0;
    background: color-mix(in srgb, var(--pr-panel-soft) 30%, var(--pr-panel));
}

.mublo-production-request .production-market-controls .production-request-stage-filter a {
    gap: 7px;
    min-height: 32px;
    padding-inline: 11px;
    border-radius: 7px;
    font-size: 10px;
}

.mublo-production-request .production-market-controls .production-request-stage-filter a > strong {
    display: inline-grid;
    place-items: center;
    min-width: 19px;
    height: 19px;
    padding-inline: 5px;
    color: var(--pr-muted);
    border-radius: 5px;
    background: color-mix(in srgb, currentColor 6%, var(--pr-panel));
    font-size: 8px;
    font-weight: 780;
    font-variant-numeric: tabular-nums;
}

.mublo-production-request .production-market-controls .production-request-stage-filter a.is-current {
    color: var(--pr-ink);
    border-color: var(--pr-line);
    background: var(--pr-panel);
    box-shadow: 0 1px 2px color-mix(in srgb, var(--pr-ink) 4%, transparent);
}

.mublo-production-request .production-market-controls .production-request-stage-filter a.is-current > strong {
    color: var(--pr-ink);
    background: var(--pr-panel-soft);
}

/* Ledger headings and records share exactly the same columns. */
.mublo-production-request .production-market-columns {
    display: grid;
    grid-template-columns: var(--market-columns);
    align-items: center;
    margin: 20px 24px 0;
    padding: 0 18px 9px 20px;
    color: var(--pr-muted);
    font-size: 8px;
    font-weight: 760;
    letter-spacing: .08em;
}

.mublo-production-request .production-market-columns > span:not(:first-child) {
    padding-left: 16px;
}

.mublo-production-request .production-request-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    overflow: hidden;
    margin: 0 24px 28px;
    padding: 0;
    border: 1px solid var(--pr-line);
    border-radius: 12px;
    background: var(--pr-panel);
}

.mublo-production-request .production-request-notices {
    display: grid;
    gap: 0;
    overflow: hidden;
    margin: 0 24px 12px;
    padding: 0;
    border: 1px solid color-mix(in srgb, var(--pr-accent) 24%, var(--pr-line));
    border-radius: 12px;
    background: var(--pr-panel);
}

.mublo-production-request .production-request-card.production-market-row {
    --pr-card-status: var(--pr-muted);
    display: block;
    min-height: 0;
    overflow: hidden;
    border: 0;
    border-bottom: 1px solid var(--pr-line-soft);
    border-radius: 0;
    background: var(--pr-panel);
    box-shadow: none;
    transform: none;
    transition: background-color .16s ease;
}

.mublo-production-request .production-market-row.production-request-card--pending { --pr-card-status: var(--pr-pending); }
.mublo-production-request .production-market-row.production-request-card--active { --pr-card-status: var(--pr-active); }
.mublo-production-request .production-market-row.production-request-card--complete { --pr-card-status: var(--pr-complete); }

.mublo-production-request .production-market-row:last-child { border-bottom: 0; }

.mublo-production-request .production-request-card.production-market-row::before {
    z-index: 2;
    top: 0;
    right: auto;
    bottom: 0;
    left: 0;
    width: 3px;
    height: auto;
    border-radius: 0;
    background: var(--pr-card-status);
    opacity: .38;
    transition: opacity .16s ease;
}

.mublo-production-request .production-request-card.production-market-row::after { display: none; }

.mublo-production-request .production-request-card.production-market-row:hover {
    border-color: var(--pr-line-soft);
    background: color-mix(in srgb, var(--pr-card-status) 3.2%, var(--pr-panel));
    box-shadow: none;
    transform: none;
}

.mublo-production-request .production-request-card.production-market-row:hover::before { opacity: .9; }

.mublo-production-request .production-market-row__link {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: var(--market-columns);
    align-items: stretch;
    min-height: 132px;
    padding: 0 18px 0 20px;
    color: inherit;
    text-decoration: none;
}

.mublo-production-request .production-market-row__link:hover {
    color: inherit;
    text-decoration: none;
}

.mublo-production-request .production-market-row__project {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    padding: 16px 20px 16px 0;
}

.mublo-production-request .production-market-row__flags {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 6px;
}

.mublo-production-request .production-market-row__flags .production-request-status {
    min-height: 22px;
    padding-inline: 8px;
    border-radius: 6px;
    font-size: 8px;
}

.mublo-production-request .production-market-row__flags .production-request-badge {
    min-height: 22px;
    padding-inline: 7px;
    border-radius: 6px;
    font-size: 8px;
}

.mublo-production-request .production-market-row__flags .production-request-badge--new {
    min-height: 18px;
    padding-inline: 2px;
}

.mublo-production-request .production-market-row__code {
    margin-left: auto;
    color: var(--pr-muted);
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
    font-size: 7px;
    font-weight: 720;
    letter-spacing: .08em;
}

.mublo-production-request .production-market-row__title {
    display: -webkit-box;
    overflow: hidden;
    margin: 9px 0 0;
    color: var(--pr-ink);
    font-size: 17px;
    font-weight: 750;
    line-height: 1.34;
    letter-spacing: -.03em;
    overflow-wrap: anywhere;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    transition: color .16s ease;
}

.mublo-production-request .production-market-row:hover .production-market-row__title { color: var(--pr-card-status); }

.mublo-production-request .production-market-row__excerpt {
    overflow: hidden;
    margin: 6px 0 0;
    color: var(--pr-copy);
    font-size: 11px;
    font-weight: 480;
    line-height: 1.45;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mublo-production-request .production-market-row__owner {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 7px;
    margin-top: 9px;
    color: var(--pr-muted);
    font-size: 8px;
    line-height: 1;
}

.mublo-production-request .production-market-row__owner strong {
    overflow: hidden;
    max-width: 128px;
    color: var(--pr-copy);
    font-size: 9px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mublo-production-request .production-market-row__owner > i {
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: var(--pr-muted);
    opacity: .7;
}

.mublo-production-request .production-market-row__owner > span {
    padding-left: 7px;
    border-left: 1px solid var(--pr-line);
}

.mublo-production-request .production-market-row__metric {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
    padding: 16px;
    border-left: 1px solid var(--pr-line-soft);
}

.mublo-production-request .production-market-row__metric > span {
    display: none;
    color: var(--pr-muted);
    font-size: 8px;
    font-weight: 670;
}

.mublo-production-request .production-market-row__metric > strong {
    display: block;
    overflow: hidden;
    max-width: 100%;
    color: var(--pr-ink);
    font-size: 12px;
    font-weight: 740;
    line-height: 1.35;
    letter-spacing: -.018em;
    text-overflow: ellipsis;
}

.mublo-production-request .production-market-row__budget > strong {
    font-size: 15px;
    font-weight: 790;
    letter-spacing: -.04em;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.mublo-production-request .production-market-row__applicants { align-items: center; }

.mublo-production-request .production-market-row__applicants > strong {
    color: var(--pr-card-status);
    font-size: 22px;
    font-weight: 790;
    line-height: 1;
    letter-spacing: -.045em;
    font-variant-numeric: tabular-nums;
}

.mublo-production-request .production-market-row__applicants small {
    margin-left: 2px;
    color: var(--pr-muted);
    font-size: 8px;
    font-weight: 640;
    letter-spacing: 0;
}

.mublo-production-request .production-market-row__assignment > strong {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.mublo-production-request .production-market-row__assignment.is-open > strong {
    color: var(--pr-muted);
    font-weight: 640;
}

.mublo-production-request .production-market-row__open {
    display: grid;
    place-items: center;
    align-self: stretch;
    color: var(--pr-muted);
}

.mublo-production-request .production-market-row__open svg {
    width: 15px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
    transition: color .16s ease, transform .16s ease;
}

.mublo-production-request .production-market-row:hover .production-market-row__open svg {
    color: var(--pr-card-status);
    transform: translateX(2px);
}

.mublo-production-request .production-market-row__link:focus-visible {
    z-index: 4;
    outline: 2px solid var(--pr-accent);
    outline-offset: -3px;
}

.mublo-production-request .production-request-grid > .production-request-empty {
    min-height: 290px;
}

:is(html.dark, html[data-theme="dark"], html[data-bs-theme="dark"]) .mublo-production-request .production-market-head__image--light { display: none; }
:is(html.dark, html[data-theme="dark"], html[data-bs-theme="dark"]) .mublo-production-request .production-market-head__image--dark { display: block; }
:is(html.dark, html[data-theme="dark"], html[data-bs-theme="dark"]) .mublo-production-request .production-market-head__art::after {
    background:
        linear-gradient(180deg, transparent 44%, color-mix(in srgb, var(--pr-panel) 78%, transparent)),
        linear-gradient(90deg, color-mix(in srgb, var(--pr-panel) 21%, transparent), transparent 46%);
}

@container (max-width: 840px) {
    .mublo-production-request-list { --market-columns: minmax(0, 1fr) 108px 64px 112px 32px; }
    .mublo-production-request .production-market-head { grid-template-columns: minmax(250px, 1fr) 190px 144px; }
    .mublo-production-request .production-market-head__identity { padding-inline: 26px; }
    .mublo-production-request .production-market-head__summary { margin-left: 10px; }
    .mublo-production-request .production-market-head__summary > div { padding-inline: 15px; }
    .mublo-production-request .production-market-controls__top { grid-template-columns: minmax(135px, .45fr) minmax(280px, 1.55fr) auto; padding-inline: 20px; }
    .mublo-production-request .production-market-controls .production-request-stage-filter { padding-inline: 20px; }
    .mublo-production-request .production-market-columns { margin-inline: 20px; }
    .mublo-production-request .production-request-grid,
    .mublo-production-request .production-request-notices { margin-inline: 20px; }
    .mublo-production-request .production-market-row__link { padding-right: 14px; }
    .mublo-production-request .production-market-row__metric { padding-inline: 12px; }
}

@container (max-width: 700px) {
    .mublo-production-request-list { --market-columns: minmax(0, 1fr) 108px 88px 30px; }
    .mublo-production-request .production-market-head {
        grid-template-columns: minmax(0, 1fr) 170px;
        grid-template-rows: minmax(138px, auto) 63px;
    }
    .mublo-production-request .production-market-head__identity { padding: 25px 24px 22px; }
    .mublo-production-request .production-market-head__art { min-height: 112px; margin: 13px 13px 13px 0; }
    .mublo-production-request .production-market-head__summary {
        grid-column: 1 / -1;
        grid-row: 2;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 1fr;
        margin: 0;
        border-top: 1px solid var(--pr-line);
        border-left: 0;
    }
    .mublo-production-request .production-market-head__summary > div { padding: 11px 24px; }
    .mublo-production-request .production-market-head__summary > div + div { border-top: 0; border-left: 1px solid var(--pr-line); }
    .mublo-production-request .production-market-head__summary dd { font-size: 23px; }
    .mublo-production-request .production-market-controls__top {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 10px;
        padding: 14px 18px;
    }
    .mublo-production-request .production-market-controls__heading { grid-column: 1 / -1; }
    .mublo-production-request .production-market-controls__heading > span { display: none; }
    .mublo-production-request .production-market-controls .production-request-stage-filter { padding-inline: 18px; }
    .mublo-production-request .production-market-columns {
        grid-template-columns: var(--market-columns);
        margin: 18px 18px 0;
        padding-inline: 17px 13px;
    }
    .mublo-production-request .production-market-columns > span:nth-child(4) { display: none; }
    .mublo-production-request .production-market-columns > span:not(:first-child) { padding-left: 12px; }
    .mublo-production-request .production-request-grid,
    .mublo-production-request .production-request-notices { margin-inline: 18px; }
    .mublo-production-request .production-market-row__link { grid-template-columns: var(--market-columns); padding-inline: 17px 13px; }
    .mublo-production-request .production-market-row__assignment { display: none; }
    .mublo-production-request .production-market-row__project { padding-right: 16px; }
}

@container (max-width: 520px) {
    .mublo-production-request-list {
        --market-columns: minmax(0, 1fr) auto;
        overflow: visible;
        border-right: 0;
        border-left: 0;
        border-radius: 0;
        box-shadow: none;
    }
    .mublo-production-request .production-market-head {
        grid-template-columns: 1fr;
        grid-template-rows: auto 62px;
        min-height: 0;
    }
    .mublo-production-request .production-market-head__identity { padding: 25px 18px 22px; }
    .mublo-production-request .production-market-head h1 { font-size: 32px; }
    .mublo-production-request .production-market-head__identity > p:last-child { max-width: 360px; font-size: 11px; }
    .mublo-production-request .production-market-head__art { display: none; }
    .mublo-production-request .production-market-head__summary { grid-row: 2; }
    .mublo-production-request .production-market-head__summary > div { padding-inline: 18px; }
    .mublo-production-request .production-market-head__summary dt { font-size: 8px; }
    .mublo-production-request .production-market-head__summary dd { font-size: 21px; }
    .mublo-production-request .production-market-controls__top {
        grid-template-columns: 1fr;
        padding: 14px 15px 12px;
    }
    .mublo-production-request .production-market-controls__heading { grid-column: 1; }
    .mublo-production-request .production-market-controls .production-request-search {
        grid-template-columns: 76px minmax(0, 1fr) 42px;
        width: 100%;
    }
    .mublo-production-request .production-market-controls .production-request-search button { min-width: 42px; padding: 0; }
    .mublo-production-request .production-market-controls .production-request-search button > span { display: none; }
    .mublo-production-request .production-market-controls .production-request-write {
        width: 100%;
        min-width: 0;
        padding: 0 17px;
        font-size: 12px;
    }
    .mublo-production-request .production-market-controls .production-request-stage-filter { padding: 8px 15px 10px; }
    .mublo-production-request .production-market-columns { display: none; }
    .mublo-production-request .production-request-grid,
    .mublo-production-request .production-request-notices {
        overflow: visible;
        margin: 0;
        border: 0;
        border-radius: 0;
    }
    .mublo-production-request .production-request-notices { border-bottom: 6px solid var(--pr-panel-soft); }
    .mublo-production-request .production-request-card.production-market-row { border-bottom: 1px solid var(--pr-line); }
    .mublo-production-request .production-request-card.production-market-row:last-child { border-bottom: 1px solid var(--pr-line); }
    .mublo-production-request .production-request-card.production-market-row::before {
        top: 17px;
        bottom: auto;
        left: 15px;
        width: 3px;
        height: 22px;
        border-radius: 2px;
        opacity: .75;
    }
    .mublo-production-request .production-market-row__link {
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-areas:
            "project budget"
            "application application";
        min-height: 0;
        padding: 0 16px 0 22px;
    }
    .mublo-production-request .production-market-row__project {
        grid-area: project;
        padding: 17px 14px 15px 0;
    }
    .mublo-production-request .production-market-row__flags { padding-left: 4px; }
    .mublo-production-request .production-market-row__code { display: none; }
    .mublo-production-request .production-market-row__title {
        margin-top: 10px;
        font-size: 16px;
        line-height: 1.4;
        -webkit-line-clamp: 2;
    }
    .mublo-production-request .production-market-row__excerpt { display: none; }
    .mublo-production-request .production-market-row__owner { margin-top: 10px; }
    .mublo-production-request .production-market-row__owner > span { display: none; }
    .mublo-production-request .production-market-row__metric { border-left: 0; }
    .mublo-production-request .production-market-row__metric > span { display: block; }
    .mublo-production-request .production-market-row__budget {
        grid-area: budget;
        align-self: start;
        align-items: flex-end;
        gap: 5px;
        padding: 18px 0 0 8px;
    }
    .mublo-production-request .production-market-row__budget > strong { font-size: 14px; }
    .mublo-production-request .production-market-row__applicants {
        grid-area: application;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 7px;
        padding: 10px 0 13px;
        border-top: 1px solid var(--pr-line-soft);
    }
    .mublo-production-request .production-market-row__applicants > span::after { content: "자"; }
    .mublo-production-request .production-market-row__applicants > strong { font-size: 15px; }
    .mublo-production-request .production-market-row__assignment {
        grid-area: application;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        gap: 7px;
        padding: 10px 0 13px;
        border-top: 1px solid var(--pr-line-soft);
        pointer-events: none;
    }
    .mublo-production-request .production-market-row__assignment > span { display: none; }
    .mublo-production-request .production-market-row__assignment > strong { max-width: 45%; font-size: 10px; white-space: nowrap; }
    .mublo-production-request .production-market-row__assignment.is-open > strong::before { content: "매칭 · "; }
    .mublo-production-request .production-market-row__open { display: none; }
    .mublo-production-request .production-request-grid > .production-request-empty { min-height: 280px; }
}

/* Project workspace: detail and author controls use the same flat ledger grammar. */
.mublo-production-request-view,
.mublo-production-request-write {
    --pr-accent: #246bfe;
    --pr-active: #246bfe;
    --pr-accent-soft: color-mix(in srgb, var(--pr-accent) 9%, var(--pr-panel));
    --pr-active-soft: color-mix(in srgb, var(--pr-active) 9%, var(--pr-panel));
}

.mublo-production-request-view .board-view__board-header {
    min-height: 88px;
    padding: 21px 0 19px;
    border-top-width: 1px;
}

.mublo-production-request-view .board-view__board-header::after { display: none; }
.mublo-production-request-view .board-view__header { padding-block: 31px 25px; }

.mublo-production-request-view__overview {
    position: relative;
    border-radius: 12px;
    background: var(--pr-panel);
    box-shadow: none;
}

.mublo-production-request-view__overview::before,
.mublo-production-request-view__overview::after { display: none; }

.mublo-production-request-view__overview-main {
    min-height: 92px;
    padding: 20px 23px;
    background: color-mix(in srgb, var(--pr-panel-soft) 34%, var(--pr-panel));
}

.mublo-production-request-view__state { gap: 9px; }
.mublo-production-request-view__file-code { font-size: 7px; letter-spacing: .11em; }
.mublo-production-request-view__amount strong { font-size: clamp(24px, 3.2cqi, 30px); }
.mublo-production-request-view__summary-grid { background: var(--pr-panel); }

.mublo-production-request-view__summary-item {
    min-height: 69px;
    padding: 16px 23px;
}

.mublo-production-request-view__summary-item::before { display: none; }
.mublo-production-request-view__timeline { padding: 19px 23px 21px; background: color-mix(in srgb, var(--pr-panel-soft) 45%, var(--pr-panel)); }
.mublo-production-request-view__timeline-marker { border-radius: 7px; box-shadow: none !important; }

.mublo-production-request-view__content-label {
    gap: 8px;
    padding-bottom: 10px;
}

.mublo-production-request-view .mublo-production-request-view__content {
    min-height: 180px;
    padding-top: 27px;
}

.mublo-production-request-manager {
    border-color: var(--pr-line);
    border-radius: 12px;
    box-shadow: none;
}

.mublo-production-request-manager__header {
    min-height: 91px;
    padding: 21px 23px 19px;
    background: color-mix(in srgb, var(--pr-panel-soft) 44%, var(--pr-panel));
}

.mublo-production-request-manager__header::after { display: none; }
.mublo-production-request-manager__header-side { max-width: 430px; }
.mublo-production-request-manager__access { font-size: 7px; }
.mublo-production-request-manager__section { padding: 20px 23px 22px; }
.mublo-production-request-manager__status-option { min-height: 48px; padding: 0 14px; border-radius: 8px; }
.mublo-production-request-manager__status-option::after { display: none; }
.mublo-production-request-manager__applicant { min-height: 72px; border-radius: 8px; }
.mublo-production-request-manager__applicant-avatar { border-radius: 8px; }
.mublo-production-request-manager__applicant.is-selected { box-shadow: inset 3px 0 0 var(--pr-accent); }
.mublo-production-request-manager__footer { padding: 15px 23px; }
.mublo-production-request-manager__save { min-height: 42px; border-radius: 8px; box-shadow: none; }

.mublo-production-request-view .mublo-production-request-view__application {
    border-radius: 9px;
    background: color-mix(in srgb, var(--pr-panel-soft) 62%, var(--pr-panel));
}

.mublo-production-request-write .board-write__header {
    min-height: 0;
    padding: 24px 26px 22px;
    border: 1px solid var(--pr-line);
    border-top: 2px solid var(--pr-accent);
    border-radius: 12px;
    background: var(--pr-panel);
}

.mublo-production-request-write .board-write__header::after { display: none; }
.mublo-production-request-write .board-write__board-name { font-size: 25px; }
.mublo-production-request-write__map { margin-top: 22px; }

.mublo-production-request-write > form {
    margin-top: 14px;
    padding: 26px 27px 21px;
    border-radius: 12px;
    box-shadow: none;
}

.production-request-write__workflow {
    min-height: 56px;
    border: 1px solid var(--pr-line-soft);
    border-radius: 8px;
    background: color-mix(in srgb, var(--pr-panel-soft) 58%, var(--pr-panel));
}

.production-request-write__workflow::after { display: none; }
.production-request-write__amount-control { height: 58px; border-radius: 8px; }
.mublo-production-request-write .production-request-write__amount-input { min-height: 56px; font-size: 20px; }

@container (max-width: 560px) {
    .mublo-production-request-view .board-view__board-header { min-height: 0; padding-inline: 16px; }
    .mublo-production-request-view .board-view__header { padding: 25px 16px 22px; }
    .mublo-production-request-view__overview { border-right: 0; border-left: 0; border-radius: 0; }
    .mublo-production-request-view__overview-main { padding-inline: 17px; }
    .mublo-production-request-view__summary-item { padding: 15px 17px; }
    .mublo-production-request-view__timeline { padding-inline: 17px; }
    .mublo-production-request-manager { border-right: 0; border-left: 0; border-radius: 0; }
    .mublo-production-request-manager__header,
    .mublo-production-request-manager__section,
    .mublo-production-request-manager__footer { padding-inline: 17px; }
    .mublo-production-request-write .board-write__header {
        padding: 24px 18px 21px;
        border-right: 0;
        border-left: 0;
        border-radius: 0;
    }
    .mublo-production-request-write > form { padding: 22px 16px 18px; }
}

/* No-image market masthead -------------------------------------------------
   A high-contrast live index replaces decorative hero artwork. */
.mublo-production-request .production-market-head {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 38%);
    grid-template-rows: 1fr;
    min-height: 184px;
    background:
        radial-gradient(circle at 61% 8%, color-mix(in srgb, var(--pr-accent) 6%, transparent), transparent 27%),
        var(--pr-panel);
}

.mublo-production-request .production-market-head__identity {
    position: relative;
    z-index: 1;
    padding: 30px 34px 28px;
}

.mublo-production-request .production-market-head__identity::after {
    position: absolute;
    right: 0;
    bottom: 24px;
    width: 72px;
    height: 1px;
    opacity: .7;
    background: repeating-linear-gradient(90deg, var(--pr-line) 0 1px, transparent 1px 7px);
    content: "";
    pointer-events: none;
}

.mublo-production-request .production-market-head__identity > p:last-of-type {
    max-width: 470px;
}

.mublo-production-request .production-market-head__signals {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px 15px;
    margin-top: 16px;
    color: var(--pr-muted);
    font-size: 8px;
    font-weight: 630;
}

.mublo-production-request .production-market-head__signals > span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

.mublo-production-request .production-market-head__signals > span + span {
    padding-left: 15px;
    border-left: 1px solid var(--pr-line);
}

.mublo-production-request .production-market-head__signals i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--pr-accent);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--pr-accent) 10%, transparent);
}

.mublo-production-request .production-market-head__snapshot {
    --snapshot-bg: #11141a;
    --snapshot-text: #f6f7f9;
    --snapshot-muted: #8f96a3;
    --snapshot-line: rgba(255, 255, 255, .11);
    position: relative;
    z-index: 2;
    min-width: 0;
    margin: 14px 16px 14px 0;
    padding: 17px 18px 15px;
    overflow: hidden;
    color: var(--snapshot-text);
    border: 1px solid color-mix(in srgb, var(--snapshot-bg) 87%, var(--pr-line));
    border-radius: 13px;
    background:
        radial-gradient(circle at 92% -10%, rgba(36, 107, 254, .24), transparent 38%),
        linear-gradient(145deg, color-mix(in srgb, var(--snapshot-bg) 93%, #fff), var(--snapshot-bg));
    box-shadow: 0 13px 30px color-mix(in srgb, var(--pr-ink) 10%, transparent);
}

.mublo-production-request .production-market-head__snapshot::before {
    position: absolute;
    top: -41px;
    right: -31px;
    width: 126px;
    height: 126px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 50%;
    box-shadow: 0 0 0 19px rgba(255, 255, 255, .018);
    content: "";
    pointer-events: none;
}

.mublo-production-request .production-market-head__snapshot::after {
    position: absolute;
    right: 18px;
    bottom: 15px;
    width: 32px;
    height: 32px;
    opacity: .28;
    background:
        linear-gradient(var(--snapshot-text), var(--snapshot-text)) 0 0 / 9px 1px no-repeat,
        linear-gradient(var(--snapshot-text), var(--snapshot-text)) 0 0 / 1px 9px no-repeat,
        linear-gradient(var(--snapshot-text), var(--snapshot-text)) 100% 100% / 9px 1px no-repeat,
        linear-gradient(var(--snapshot-text), var(--snapshot-text)) 100% 100% / 1px 9px no-repeat;
    content: "";
    pointer-events: none;
}

.mublo-production-request .production-market-head__snapshot > * {
    position: relative;
    z-index: 1;
}

.mublo-production-request .production-market-head__snapshot-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--snapshot-muted);
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
    font-size: 6px;
    font-weight: 760;
    line-height: 1;
    letter-spacing: .14em;
}

.mublo-production-request .production-market-head__snapshot-top > strong {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #70a0ff;
    font-size: 6px;
    font-weight: 800;
}

.mublo-production-request .production-market-head__snapshot-top i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #4f87ff;
    box-shadow: 0 0 0 4px rgba(79, 135, 255, .12);
}

.mublo-production-request .production-market-head__snapshot-total {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-top: 18px;
}

.mublo-production-request .production-market-head__snapshot-total > span {
    padding-bottom: 5px;
    color: var(--snapshot-muted);
    font-size: 8px;
    font-weight: 650;
}

.mublo-production-request .production-market-head__snapshot-total > strong {
    color: var(--snapshot-text);
    font-size: 39px;
    font-weight: 780;
    line-height: .86;
    letter-spacing: -.065em;
    font-variant-numeric: tabular-nums;
}

.mublo-production-request .production-market-head__snapshot-total small {
    margin-left: 4px;
    color: var(--snapshot-muted);
    font-size: 8px;
    font-weight: 640;
    letter-spacing: 0;
}

.mublo-production-request .production-market-head__snapshot-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 16px 0 0;
    padding-top: 12px;
    border-top: 1px solid var(--snapshot-line);
}

.mublo-production-request .production-market-head__snapshot-metrics > div {
    display: flex;
    min-width: 0;
    align-items: baseline;
    gap: 6px;
}

.mublo-production-request .production-market-head__snapshot-metrics > div + div {
    padding-left: 12px;
    border-left: 1px solid var(--snapshot-line);
}

.mublo-production-request .production-market-head__snapshot-metrics dt {
    color: var(--snapshot-muted);
    font-size: 7px;
    font-weight: 620;
}

.mublo-production-request .production-market-head__snapshot-metrics dd {
    margin: 0;
    color: var(--snapshot-text);
    font-size: 15px;
    font-weight: 750;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.mublo-production-request .production-market-head__distribution {
    display: flex;
    gap: 3px;
    width: calc(100% - 48px);
    height: 3px;
    margin-top: 13px;
}

.mublo-production-request .production-market-head__distribution > i {
    flex-grow: var(--market-share, 1);
    flex-basis: 0;
    min-width: 7px;
    border-radius: 99px;
    background: var(--snapshot-muted);
}

.mublo-production-request .production-market-head__distribution > .is-pending { background: #d99a43; }
.mublo-production-request .production-market-head__distribution > .is-active { background: #4f87ff; }
.mublo-production-request .production-market-head__distribution > .is-complete { background: #37a98f; }
.mublo-production-request .production-market-head__distribution > .is-empty { opacity: .22; }

:is(html.dark, html[data-theme="dark"], html[data-bs-theme="dark"]) .mublo-production-request .production-market-head__snapshot {
    --snapshot-bg: #1b1d22;
    --snapshot-text: #f2f4f7;
    --snapshot-muted: #9299a5;
    --snapshot-line: rgba(255, 255, 255, .09);
    border-color: color-mix(in srgb, var(--pr-line) 82%, transparent);
    box-shadow: none;
}

@container (max-width: 700px) {
    .mublo-production-request .production-market-head {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }
    .mublo-production-request .production-market-head__identity {
        grid-column: 1;
        grid-row: 1;
        padding: 26px 24px 22px;
    }
    .mublo-production-request .production-market-head__identity::after { display: none; }
    .mublo-production-request .production-market-head__snapshot {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(220px, .85fr);
        grid-template-rows: auto auto auto;
        margin: 0 20px 20px;
        padding: 16px 18px 14px;
    }
    .mublo-production-request .production-market-head__snapshot-top { grid-column: 1; grid-row: 1; }
    .mublo-production-request .production-market-head__snapshot-total { grid-column: 1; grid-row: 2; margin-top: 15px; justify-content: flex-start; }
    .mublo-production-request .production-market-head__snapshot-total > strong { order: -1; }
    .mublo-production-request .production-market-head__snapshot-metrics {
        grid-column: 2;
        grid-row: 1 / 4;
        align-items: center;
        margin: 0 0 0 18px;
        padding: 0 0 0 18px;
        border-top: 0;
        border-left: 1px solid var(--snapshot-line);
    }
    .mublo-production-request .production-market-head__snapshot-metrics > div { flex-direction: column; gap: 5px; }
    .mublo-production-request .production-market-head__snapshot-metrics > div + div { padding-left: 11px; border-left: 1px solid var(--snapshot-line); }
    .mublo-production-request .production-market-head__distribution { grid-column: 1; grid-row: 3; margin-top: 11px; }
}

@container (max-width: 520px) {
    .mublo-production-request .production-market-head {
        grid-template-rows: auto auto;
    }
    .mublo-production-request .production-market-head__identity { padding: 25px 18px 20px; }
    .mublo-production-request .production-market-head__signals { margin-top: 14px; }
    .mublo-production-request .production-market-head__signals > span + span { display: none; }
    .mublo-production-request .production-market-head__snapshot {
        display: block;
        margin: 0 15px 15px;
        padding: 15px 16px 14px;
        border-radius: 11px;
    }
    .mublo-production-request .production-market-head__snapshot-total {
        justify-content: space-between;
        margin-top: 16px;
    }
    .mublo-production-request .production-market-head__snapshot-total > strong { order: 0; font-size: 34px; }
    .mublo-production-request .production-market-head__snapshot-metrics {
        margin: 14px 0 0;
        padding: 11px 0 0;
        border-top: 1px solid var(--snapshot-line);
        border-left: 0;
    }
    .mublo-production-request .production-market-head__snapshot-metrics > div { flex-direction: row; }
    .mublo-production-request .production-market-head__distribution { width: calc(100% - 43px); margin-top: 12px; }
}

/* Integrated project-desk masthead ----------------------------------------
   Status navigation belongs to the banner; no duplicated filter row. */
.mublo-production-request .production-market-head {
    grid-template-columns: minmax(0, 1fr) minmax(250px, 33%);
    grid-template-rows: minmax(172px, auto);
    min-height: 172px;
    background:
        linear-gradient(108deg, var(--pr-panel) 0 58%, color-mix(in srgb, var(--pr-accent) 3.5%, var(--pr-panel)) 100%);
}

.mublo-production-request .production-market-head:has(> .production-market-head__stages) {
    grid-template-rows: minmax(172px, auto) 62px;
}

.mublo-production-request .production-market-head__identity {
    grid-column: 1;
    grid-row: 1;
    padding: 31px 35px 29px;
}

.mublo-production-request .production-market-head__identity::after {
    right: 27px;
    bottom: 26px;
    width: 64px;
}

.mublo-production-request .production-market-head__eyebrow {
    gap: 8px;
    margin-bottom: 13px;
}

.mublo-production-request .production-market-head__eyebrow > em {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-left: 5px;
    padding-left: 12px;
    color: var(--pr-muted);
    border-left: 1px solid var(--pr-line);
    font-size: 6px;
    font-style: normal;
    font-weight: 760;
    letter-spacing: .13em;
}

.mublo-production-request .production-market-head__eyebrow > em > i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--pr-complete);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--pr-complete) 10%, transparent);
}

.mublo-production-request .production-market-head h1 {
    font-size: clamp(34px, 5cqi, 44px);
}

.mublo-production-request .production-market-head__identity > p:last-of-type {
    max-width: 500px;
    margin-top: 13px;
    font-size: 12px;
    line-height: 1.62;
}

.mublo-production-request .production-market-head__index {
    position: relative;
    z-index: 1;
    grid-column: 2;
    grid-row: 1;
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding: 25px 27px 23px;
    border-left: 1px solid var(--pr-line);
    background:
        radial-gradient(circle at 100% 0, color-mix(in srgb, var(--pr-accent) 12%, transparent), transparent 45%),
        color-mix(in srgb, var(--pr-panel-soft) 43%, var(--pr-panel));
}

.mublo-production-request .production-market-head__index::before {
    position: absolute;
    top: -62px;
    right: -62px;
    width: 176px;
    height: 176px;
    border: 1px solid color-mix(in srgb, var(--pr-accent) 10%, transparent);
    border-radius: 50%;
    box-shadow:
        0 0 0 23px color-mix(in srgb, var(--pr-accent) 2.2%, transparent),
        0 0 0 24px color-mix(in srgb, var(--pr-accent) 7%, transparent);
    content: "";
    pointer-events: none;
}

.mublo-production-request .production-market-head__index::after {
    position: absolute;
    right: 24px;
    bottom: 21px;
    width: 48px;
    height: 1px;
    opacity: .75;
    background: repeating-linear-gradient(90deg, var(--pr-line) 0 1px, transparent 1px 6px);
    content: "";
    pointer-events: none;
}

.mublo-production-request .production-market-head__index > * {
    position: relative;
    z-index: 1;
}

.mublo-production-request .production-market-head__index-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: var(--pr-muted);
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
    font-size: 6px;
    font-weight: 760;
    line-height: 1;
    letter-spacing: .14em;
}

.mublo-production-request .production-market-head__index-label small {
    color: var(--pr-accent);
    font-size: inherit;
    font-weight: 780;
}

.mublo-production-request .production-market-head__index-total {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    margin-top: 17px;
}

.mublo-production-request .production-market-head__index-total > strong {
    color: var(--pr-ink);
    font-size: clamp(47px, 7cqi, 63px);
    font-weight: 790;
    line-height: .78;
    letter-spacing: -.075em;
    font-variant-numeric: tabular-nums;
}

.mublo-production-request .production-market-head__index-total > span {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding-bottom: 2px;
}

.mublo-production-request .production-market-head__index-total b {
    color: var(--pr-ink);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .06em;
}

.mublo-production-request .production-market-head__index-total small {
    color: var(--pr-muted);
    font-size: 8px;
    font-weight: 620;
}

.mublo-production-request .production-market-head__index-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 20px 0 0;
    padding-top: 13px;
    border-top: 1px solid var(--pr-line);
}

.mublo-production-request .production-market-head__index-meta > div {
    display: flex;
    min-width: 0;
    align-items: baseline;
    justify-content: space-between;
    gap: 7px;
}

.mublo-production-request .production-market-head__index-meta > div + div {
    margin-left: 13px;
    padding-left: 13px;
    border-left: 1px solid var(--pr-line);
}

.mublo-production-request .production-market-head__index-meta dt {
    overflow: hidden;
    color: var(--pr-muted);
    font-size: 7px;
    font-weight: 630;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mublo-production-request .production-market-head__index-meta dd {
    margin: 0;
    color: var(--pr-ink);
    font-size: 16px;
    font-weight: 770;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.mublo-production-request .production-market-head__stages {
    z-index: 2;
    grid-column: 1 / -1;
    grid-row: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    min-width: 0;
    border-top: 1px solid var(--pr-line);
    background: color-mix(in srgb, var(--pr-panel-soft) 31%, var(--pr-panel));
}

.mublo-production-request .production-market-head__stages > a {
    --stage-color: var(--pr-muted);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 9px;
    min-width: 0;
    padding: 0 21px;
    color: var(--pr-copy);
    border-bottom: 2px solid transparent;
    text-decoration: none;
    transition: color .16s ease, background-color .16s ease, border-color .16s ease;
}

.mublo-production-request .production-market-head__stages > a + a {
    border-left: 1px solid var(--pr-line);
}

.mublo-production-request .production-market-head__stages > a.is-pending { --stage-color: var(--pr-pending); }
.mublo-production-request .production-market-head__stages > a.is-active { --stage-color: var(--pr-active); }
.mublo-production-request .production-market-head__stages > a.is-complete { --stage-color: var(--pr-complete); }

.mublo-production-request .production-market-head__stages > a:hover {
    color: var(--pr-ink);
    background: color-mix(in srgb, var(--stage-color) 4%, var(--pr-panel));
}

.mublo-production-request .production-market-head__stages > a.is-current {
    color: var(--pr-ink);
    border-bottom-color: var(--stage-color);
    background: color-mix(in srgb, var(--stage-color) 5.5%, var(--pr-panel));
}

.mublo-production-request .production-market-head__stages span {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    gap: 8px;
    overflow: hidden;
    font-size: 10px;
    font-weight: 680;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mublo-production-request .production-market-head__stages span > i {
    flex: 0 0 auto;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--stage-color);
}

.mublo-production-request .production-market-head__stages strong {
    color: var(--stage-color);
    font-size: 17px;
    font-weight: 780;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.mublo-production-request .production-market-controls__top {
    min-height: 72px;
}

:is(html.dark, html[data-theme="dark"], html[data-bs-theme="dark"]) .mublo-production-request .production-market-head__index {
    background:
        radial-gradient(circle at 100% 0, color-mix(in srgb, var(--pr-accent) 9%, transparent), transparent 45%),
        color-mix(in srgb, var(--pr-panel-soft) 62%, var(--pr-panel));
}

@container (max-width: 700px) {
    .mublo-production-request .production-market-head {
        grid-template-columns: minmax(0, 1fr) 205px;
        grid-template-rows: minmax(156px, auto);
    }
    .mublo-production-request .production-market-head:has(> .production-market-head__stages) {
        grid-template-rows: minmax(156px, auto) 58px;
    }
    .mublo-production-request .production-market-head__identity {
        grid-column: 1;
        grid-row: 1;
        padding: 27px 24px 24px;
    }
    .mublo-production-request .production-market-head__identity::after { display: none; }
    .mublo-production-request .production-market-head__index {
        grid-column: 2;
        grid-row: 1;
        margin: 0;
        padding: 23px 20px 20px;
        border-radius: 0;
    }
    .mublo-production-request .production-market-head__index-meta { margin-top: 17px; }
    .mublo-production-request .production-market-head__stages { grid-row: 2; }
    .mublo-production-request .production-market-head__stages > a { padding-inline: 15px; }
}

@container (max-width: 520px) {
    .mublo-production-request .production-market-head {
        grid-template-columns: minmax(0, 1fr) 105px;
        grid-template-rows: minmax(148px, auto);
    }
    .mublo-production-request .production-market-head:has(> .production-market-head__stages) {
        grid-template-rows: minmax(148px, auto) 56px;
    }
    .mublo-production-request .production-market-head__identity { padding: 24px 16px 21px; }
    .mublo-production-request .production-market-head__eyebrow {
        margin-bottom: 11px;
        font-size: 7px;
        letter-spacing: .13em;
    }
    .mublo-production-request .production-market-head__eyebrow > span { width: 14px; }
    .mublo-production-request .production-market-head__eyebrow > em { display: none; }
    .mublo-production-request .production-market-head h1 { font-size: 30px; }
    .mublo-production-request .production-market-head__identity > p:last-of-type {
        margin-top: 10px;
        font-size: 10px;
        line-height: 1.58;
    }
    .mublo-production-request .production-market-head__index {
        padding: 24px 12px 20px;
        text-align: right;
    }
    .mublo-production-request .production-market-head__index::before {
        top: -66px;
        right: -74px;
    }
    .mublo-production-request .production-market-head__index::after { display: none; }
    .mublo-production-request .production-market-head__index-label { justify-content: flex-end; }
    .mublo-production-request .production-market-head__index-label > span,
    .mublo-production-request .production-market-head__index-label > small { display: none; }
    .mublo-production-request .production-market-head__index-label::after {
        color: var(--pr-muted);
        font-size: 6px;
        content: "OPEN";
    }
    .mublo-production-request .production-market-head__index-total {
        align-items: flex-end;
        justify-content: flex-end;
        margin-top: 15px;
    }
    .mublo-production-request .production-market-head__index-total > strong { font-size: 46px; }
    .mublo-production-request .production-market-head__index-total > span { display: none; }
    .mublo-production-request .production-market-head__index-meta {
        display: block;
        margin-top: 17px;
        padding-top: 10px;
    }
    .mublo-production-request .production-market-head__index-meta > div {
        justify-content: flex-end;
        gap: 6px;
    }
    .mublo-production-request .production-market-head__index-meta > div + div { display: none; }
    .mublo-production-request .production-market-head__index-meta dt { font-size: 6px; }
    .mublo-production-request .production-market-head__index-meta dd { font-size: 13px; }
    .mublo-production-request .production-market-head__stages {
        overflow-x: auto;
        grid-template-columns: repeat(4, minmax(84px, 1fr));
        scrollbar-width: none;
    }
    .mublo-production-request .production-market-head__stages::-webkit-scrollbar { display: none; }
    .mublo-production-request .production-market-head__stages > a { gap: 5px; padding: 0 11px; }
    .mublo-production-request .production-market-head__stages span { gap: 5px; font-size: 9px; }
    .mublo-production-request .production-market-head__stages strong { font-size: 13px; }
}

/* Project pipeline masthead v2 --------------------------------------------
   The former category strip is removed. A compact, read-only project-flow
   summary now occupies the masthead without duplicating filter controls. */
.mublo-production-request .production-market-head,
.mublo-production-request .production-market-head:has(> .production-market-head__stages) {
    grid-template-columns: minmax(0, 1fr) minmax(355px, 44%);
    grid-template-rows: minmax(206px, auto);
    min-height: 206px;
    background: var(--pr-panel);
}

.mublo-production-request .production-market-head::before {
    position: absolute;
    z-index: 0;
    left: 34px;
    bottom: 25px;
    width: 118px;
    height: 1px;
    opacity: .65;
    background: repeating-linear-gradient(90deg, var(--pr-line) 0 2px, transparent 2px 7px);
    content: "";
    pointer-events: none;
}

.mublo-production-request .production-market-head__identity {
    position: relative;
    z-index: 1;
    grid-column: 1;
    grid-row: 1;
    justify-content: center;
    padding: 35px 37px 37px;
}

.mublo-production-request .production-market-head__identity::after {
    display: none;
}

.mublo-production-request .production-market-head__eyebrow {
    gap: 9px;
    margin-bottom: 15px;
    font-size: 8px;
    letter-spacing: .17em;
}

.mublo-production-request .production-market-head__eyebrow > em {
    margin-left: 7px;
    padding-left: 14px;
    font-size: 6px;
}

.mublo-production-request .production-market-head h1 {
    max-width: 100%;
    font-size: clamp(38px, 5.2cqi, 48px);
    line-height: .98;
    letter-spacing: -.065em;
}

.mublo-production-request .production-market-head__identity > p:last-of-type {
    max-width: 450px;
    margin-top: 17px;
    padding-right: 12px;
    font-size: 12px;
    font-weight: 520;
    line-height: 1.65;
}

.mublo-production-request .production-market-head__index {
    position: relative;
    z-index: 1;
    grid-column: 2;
    grid-row: 1;
    display: grid;
    grid-template-rows: auto minmax(62px, 1fr) auto;
    min-width: 0;
    overflow: hidden;
    padding: 25px 28px 20px;
    border-left: 1px solid var(--pr-line);
    background:
        linear-gradient(color-mix(in srgb, var(--pr-line) 25%, transparent) 1px, transparent 1px) 0 0 / 24px 24px,
        linear-gradient(90deg, color-mix(in srgb, var(--pr-line) 25%, transparent) 1px, transparent 1px) 0 0 / 24px 24px,
        radial-gradient(circle at 92% 4%, color-mix(in srgb, var(--pr-accent) 11%, transparent), transparent 43%),
        color-mix(in srgb, var(--pr-panel-soft) 54%, var(--pr-panel));
}

.mublo-production-request .production-market-head__index::before {
    top: -74px;
    right: -55px;
    width: 188px;
    height: 188px;
    opacity: .9;
    border-color: color-mix(in srgb, var(--pr-accent) 12%, transparent);
    box-shadow:
        0 0 0 25px color-mix(in srgb, var(--pr-accent) 2.5%, transparent),
        0 0 0 26px color-mix(in srgb, var(--pr-accent) 8%, transparent);
}

.mublo-production-request .production-market-head__index::after {
    right: 18px;
    bottom: 17px;
    width: 8px;
    height: 8px;
    opacity: .8;
    border-right: 1px solid var(--pr-accent);
    border-bottom: 1px solid var(--pr-accent);
    background: none;
}

.mublo-production-request .production-market-head__index-top,
.mublo-production-request .production-market-head__stages,
.mublo-production-request .production-market-head__index-meta {
    position: relative;
    z-index: 2;
}

.mublo-production-request .production-market-head__index-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--pr-muted);
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
    font-size: 8px;
    font-weight: 780;
    line-height: 1;
    letter-spacing: .15em;
}

.mublo-production-request .production-market-head__index-label small {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--pr-copy);
    font-size: 7px;
    font-weight: 760;
    letter-spacing: .12em;
}

.mublo-production-request .production-market-head__index-label small > i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--pr-complete);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--pr-complete) 11%, transparent);
}

.mublo-production-request .production-market-head__index-total {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 10px;
    margin-top: 14px;
    padding: 0 0 15px;
    color: var(--pr-ink);
    border-bottom: 1px solid var(--pr-line);
}

.mublo-production-request .production-market-head__index-total.has-reset {
    grid-template-columns: minmax(0, 1fr) auto auto;
}

.mublo-production-request .production-market-head__index-total > span {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 2px;
}

.mublo-production-request .production-market-head__index-total b {
    color: var(--pr-ink);
    font-size: 12px;
    font-weight: 760;
    letter-spacing: -.02em;
}

.mublo-production-request .production-market-head__index-total small {
    color: var(--pr-muted);
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: .12em;
}

.mublo-production-request .production-market-head__index-total > strong {
    color: var(--pr-ink);
    font-size: 37px;
    font-weight: 800;
    line-height: .75;
    letter-spacing: -.07em;
    font-variant-numeric: tabular-nums;
}

.mublo-production-request .production-market-head__index-total > span::before {
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 42px;
    height: 2px;
    border-radius: 99px;
    background: var(--pr-accent);
    content: "";
}

.mublo-production-request .production-market-head__reset {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    align-self: end;
    padding-bottom: 1px;
    color: var(--pr-accent);
    font-size: 8px;
    font-weight: 720;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}

.mublo-production-request .production-market-head__reset > svg {
    width: 12px;
    height: 12px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
    transition: transform .16s ease;
}

.mublo-production-request .production-market-head__reset:hover > svg {
    transform: translateX(2px);
}

.mublo-production-request .production-market-head__stages {
    grid-column: auto;
    grid-row: auto;
    display: grid;
    overflow: visible;
    grid-auto-flow: column;
    grid-auto-columns: minmax(72px, 1fr);
    align-items: end;
    min-width: 0;
    margin: 15px 0 0;
    border: 0;
    background: none;
}

.mublo-production-request .production-market-head__stages::before {
    position: absolute;
    z-index: 0;
    top: 13px;
    right: 12%;
    left: 12%;
    height: 1px;
    background: var(--pr-line);
    content: "";
    pointer-events: none;
}

.mublo-production-request .production-market-head__stages > div {
    --stage-color: var(--pr-muted);
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: 25px auto;
    align-items: end;
    gap: 0 7px;
    min-width: 0;
    padding: 0 7px;
    color: var(--pr-copy);
    border: 0;
    background: none;
}

.mublo-production-request .production-market-head__stages > div + div {
    border-left: 0;
}

.mublo-production-request .production-market-head__stages > div.is-pending { --stage-color: var(--pr-pending); }
.mublo-production-request .production-market-head__stages > div.is-active { --stage-color: var(--pr-active); }
.mublo-production-request .production-market-head__stages > div.is-complete { --stage-color: var(--pr-complete); }

.mublo-production-request .production-market-head__stage-mark {
    grid-column: 1 / -1;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    overflow: visible;
    color: var(--pr-muted);
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
    font-size: 7px;
    font-weight: 740;
    line-height: 1;
    letter-spacing: .08em;
}

.mublo-production-request .production-market-head__stage-mark > i {
    position: relative;
    display: block;
    flex: 0 0 auto;
    width: 8px;
    height: 8px;
    border: 2px solid var(--pr-panel);
    border-radius: 50%;
    background: var(--stage-color);
    box-shadow: 0 0 0 1px color-mix(in srgb, var(--stage-color) 34%, var(--pr-line));
}

.mublo-production-request .production-market-head__stages > div > strong {
    color: var(--pr-ink);
    font-size: 22px;
    font-weight: 790;
    line-height: .9;
    letter-spacing: -.045em;
    font-variant-numeric: tabular-nums;
}

.mublo-production-request .production-market-head__stages > div > small {
    overflow: hidden;
    align-self: end;
    padding-bottom: 1px;
    color: var(--pr-copy);
    font-size: 10px;
    font-weight: 690;
    line-height: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mublo-production-request .production-market-head__index-meta {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 16px;
    margin: 13px 0 0;
    padding: 11px 0 0;
    color: var(--pr-muted);
    border-top: 1px solid var(--pr-line);
    font-size: 8px;
    font-weight: 640;
}

.mublo-production-request .production-market-head__index-meta > span {
    display: inline-flex;
    align-items: baseline;
    gap: 5px;
    white-space: nowrap;
}

.mublo-production-request .production-market-head__index-meta strong {
    color: var(--pr-ink);
    font-size: 11px;
    font-weight: 780;
    font-variant-numeric: tabular-nums;
}

.mublo-production-request .production-market-head__index-meta > em {
    margin-left: auto;
    color: var(--pr-accent);
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
    font-size: 7px;
    font-style: normal;
    font-weight: 760;
    letter-spacing: .1em;
    white-space: nowrap;
}

:is(html.dark, html[data-theme="dark"], html[data-bs-theme="dark"]) .mublo-production-request .production-market-head__index {
    background:
        linear-gradient(color-mix(in srgb, var(--pr-line) 35%, transparent) 1px, transparent 1px) 0 0 / 24px 24px,
        linear-gradient(90deg, color-mix(in srgb, var(--pr-line) 35%, transparent) 1px, transparent 1px) 0 0 / 24px 24px,
        radial-gradient(circle at 92% 4%, color-mix(in srgb, var(--pr-accent) 8%, transparent), transparent 43%),
        color-mix(in srgb, var(--pr-panel-soft) 62%, var(--pr-panel));
}

@container (max-width: 700px) {
    .mublo-production-request .production-market-head,
    .mublo-production-request .production-market-head:has(> .production-market-head__stages) {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 43%);
        grid-template-rows: minmax(196px, auto);
        min-height: 196px;
    }
    .mublo-production-request .production-market-head__identity {
        grid-column: 1;
        grid-row: 1;
        padding: 31px 27px 33px;
    }
    .mublo-production-request .production-market-head h1 { font-size: 38px; }
    .mublo-production-request .production-market-head__identity > p:last-of-type { max-width: 360px; }
    .mublo-production-request .production-market-head__index {
        grid-column: 2;
        grid-row: 1;
        margin: 0;
        padding: 23px 21px 18px;
        border-top: 0;
        border-left: 1px solid var(--pr-line);
        border-radius: 0;
    }
    .mublo-production-request .production-market-head__stages { margin-top: 13px; }
    .mublo-production-request .production-market-head__stages > div { padding-inline: 5px; }
    .mublo-production-request .production-market-head__index-meta { gap: 10px; }
    .mublo-production-request .production-market-head__index-meta > em { display: none; }
}

@container (max-width: 620px) {
    .mublo-production-request .production-market-head,
    .mublo-production-request .production-market-head:has(> .production-market-head__stages) {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        min-height: 0;
    }
    .mublo-production-request .production-market-head::before { display: none; }
    .mublo-production-request .production-market-head__identity {
        grid-column: 1;
        grid-row: 1;
        min-height: 142px;
        padding: 25px 22px 24px;
    }
    .mublo-production-request .production-market-head__identity > p:last-of-type { max-width: 480px; }
    .mublo-production-request .production-market-head__index {
        grid-column: 1;
        grid-row: 2;
        min-height: 124px;
        padding: 17px 22px 15px;
        border-top: 1px solid var(--pr-line);
        border-left: 0;
    }
    .mublo-production-request .production-market-head__index-top {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: end;
        gap: 15px;
    }
    .mublo-production-request .production-market-head__index-total {
        grid-template-columns: auto auto;
        gap: 8px;
        margin: 0;
        padding: 0;
        border-bottom: 0;
    }
    .mublo-production-request .production-market-head__index-total.has-reset {
        grid-template-columns: auto auto auto;
    }
    .mublo-production-request .production-market-head__index-total > span { align-items: flex-end; }
    .mublo-production-request .production-market-head__index-total > strong { font-size: 31px; }
    .mublo-production-request .production-market-head__index-total > span::before { display: none; }
    .mublo-production-request .production-market-head__stages { margin-top: 15px; }
    .mublo-production-request .production-market-head__index-meta { display: none; }
}

@container (max-width: 520px) {
    .mublo-production-request .production-market-head__identity {
        min-height: 137px;
        padding: 24px 17px 22px;
    }
    .mublo-production-request .production-market-head__eyebrow {
        margin-bottom: 12px;
        font-size: 7px;
    }
    .mublo-production-request .production-market-head__eyebrow > em { display: none; }
    .mublo-production-request .production-market-head h1 { font-size: 31px; }
    .mublo-production-request .production-market-head__identity > p:last-of-type {
        margin-top: 11px;
        padding-right: 0;
        font-size: 10px;
        line-height: 1.58;
    }
    .mublo-production-request .production-market-head__index {
        min-height: 119px;
        padding: 15px 16px 14px;
        text-align: left;
    }
    .mublo-production-request .production-market-head__index::before {
        top: -84px;
        right: -74px;
    }
    .mublo-production-request .production-market-head__index::after { display: none; }
    .mublo-production-request .production-market-head__index-label { justify-content: flex-start; }
    .mublo-production-request .production-market-head__index-label > span,
    .mublo-production-request .production-market-head__index-label > small { display: inline-flex; }
    .mublo-production-request .production-market-head__index-label::after { content: none; }
    .mublo-production-request .production-market-head__index-label > small { display: none; }
    .mublo-production-request .production-market-head__index-total > span { display: none; }
    .mublo-production-request .production-market-head__index-total > strong { font-size: 30px; }
    .mublo-production-request .production-market-head__stages {
        grid-template-columns: none;
        overflow-x: auto;
        grid-auto-columns: minmax(78px, 1fr);
        margin-top: 14px;
        scrollbar-width: none;
    }
    .mublo-production-request .production-market-head__stages::-webkit-scrollbar { display: none; }
    .mublo-production-request .production-market-head__stages::before { right: 13%; left: 13%; }
    .mublo-production-request .production-market-head__stages > div {
        grid-template-rows: 22px auto;
        gap: 0 5px;
        padding-inline: 4px;
    }
    .mublo-production-request .production-market-head__stages > div > strong { font-size: 19px; }
    .mublo-production-request .production-market-head__stages > div > small { font-size: 10px; }
    .mublo-production-request .production-market-head__reset { font-size: 8px; }
}

/* Full-width pipeline masthead --------------------------------------------
   The board identity is available to assistive tech, while the visible
   surface is reserved for the project pipeline and its live page summary. */
.mublo-production-request .production-market-head,
.mublo-production-request .production-market-head:has(> .production-market-head__stages) {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(214px, auto);
    min-height: 214px;
}

.mublo-production-request .production-market-head::before {
    display: none;
}

.mublo-production-request .production-market-head__index {
    grid-column: 1;
    grid-row: 1;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto minmax(76px, 1fr) auto;
    justify-content: stretch;
    padding: 24px 34px 19px;
    border-left: 0;
    background:
        linear-gradient(color-mix(in srgb, var(--pr-line) 25%, transparent) 1px, transparent 1px) 0 0 / 28px 28px,
        linear-gradient(90deg, color-mix(in srgb, var(--pr-line) 25%, transparent) 1px, transparent 1px) 0 0 / 28px 28px,
        radial-gradient(circle at 96% -5%, color-mix(in srgb, var(--pr-accent) 12%, transparent), transparent 31%),
        linear-gradient(110deg, var(--pr-panel) 0 26%, color-mix(in srgb, var(--pr-panel-soft) 57%, var(--pr-panel)) 74% 100%);
}

.mublo-production-request .production-market-head__index::before {
    top: -122px;
    right: -50px;
    width: 286px;
    height: 286px;
}

.mublo-production-request .production-market-head__index-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 40px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--pr-line);
}

.mublo-production-request .production-market-head__index-label {
    justify-content: flex-start;
    gap: 18px;
    font-size: 11px;
}

.mublo-production-request .production-market-head__index-label small {
    padding-left: 18px;
    border-left: 1px solid var(--pr-line);
    font-size: 9px;
}

.mublo-production-request .production-market-head__index-total,
.mublo-production-request .production-market-head__index-total.has-reset {
    grid-template-columns: auto auto;
    gap: 16px;
    margin: 0;
    padding: 0;
    border-bottom: 0;
}

.mublo-production-request .production-market-head__index-total.has-reset {
    grid-template-columns: auto auto auto;
}

.mublo-production-request .production-market-head__index-total > span {
    align-items: flex-end;
    padding-bottom: 0;
}

.mublo-production-request .production-market-head__index-total > strong {
    font-size: 48px;
}

.mublo-production-request .production-market-head__index-total > span::before {
    display: none;
}

.mublo-production-request .production-market-head__reset {
    align-self: center;
}

.mublo-production-request .production-market-head__stages {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-flow: row;
    grid-auto-columns: auto;
    align-items: center;
    margin: 16px 0 0;
    padding: 0 2px 16px;
    border-bottom: 1px solid var(--pr-line);
}

.mublo-production-request .production-market-head__stages::before {
    top: 15px;
    right: 9%;
    left: 9%;
}

.mublo-production-request .production-market-head__stages > div {
    grid-template-rows: 29px auto;
    gap: 0 10px;
    padding-inline: 12px;
}

.mublo-production-request .production-market-head__stage-mark {
    gap: 7px;
    font-size: 8px;
}

.mublo-production-request .production-market-head__stage-mark > i {
    width: 9px;
    height: 9px;
}

.mublo-production-request .production-market-head__stages > div > strong {
    font-size: 30px;
}

.mublo-production-request .production-market-head__stages > div > small {
    padding-bottom: 2px;
    font-size: 12px;
}

.mublo-production-request .production-market-head__index-meta {
    gap: 24px;
    margin: 0;
    padding: 11px 2px 0;
    border-top: 0;
    font-size: 9px;
}

.mublo-production-request .production-market-head__index-meta strong {
    font-size: 13px;
}

.mublo-production-request .production-market-head__index-meta > em {
    font-size: 8px;
}

:is(html.dark, html[data-theme="dark"], html[data-bs-theme="dark"]) .mublo-production-request .production-market-head__index {
    background:
        linear-gradient(color-mix(in srgb, var(--pr-line) 35%, transparent) 1px, transparent 1px) 0 0 / 28px 28px,
        linear-gradient(90deg, color-mix(in srgb, var(--pr-line) 35%, transparent) 1px, transparent 1px) 0 0 / 28px 28px,
        radial-gradient(circle at 96% -5%, color-mix(in srgb, var(--pr-accent) 9%, transparent), transparent 31%),
        linear-gradient(110deg, var(--pr-panel) 0 26%, color-mix(in srgb, var(--pr-panel-soft) 64%, var(--pr-panel)) 74% 100%);
}

@container (max-width: 700px) {
    .mublo-production-request .production-market-head,
    .mublo-production-request .production-market-head:has(> .production-market-head__stages) {
        grid-template-columns: 1fr;
        grid-template-rows: minmax(206px, auto);
        min-height: 206px;
    }
    .mublo-production-request .production-market-head__index {
        grid-column: 1;
        grid-row: 1;
        padding: 21px 24px 17px;
        border-top: 0;
        border-left: 0;
    }
    .mublo-production-request .production-market-head__stages > div { padding-inline: 8px; }
    .mublo-production-request .production-market-head__index-meta > em { display: inline-block; }
}

@container (max-width: 620px) {
    .mublo-production-request .production-market-head,
    .mublo-production-request .production-market-head:has(> .production-market-head__stages) {
        grid-template-rows: minmax(202px, auto);
    }
    .mublo-production-request .production-market-head__index {
        grid-column: 1;
        grid-row: 1;
        min-height: 202px;
        padding: 18px 20px 15px;
        border-top: 0;
    }
    .mublo-production-request .production-market-head__index-top {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 18px;
    }
    .mublo-production-request .production-market-head__index-total,
    .mublo-production-request .production-market-head__index-total.has-reset {
        margin: 0;
        padding: 0;
    }
    .mublo-production-request .production-market-head__index-meta {
        display: flex;
    }
}

@container (max-width: 520px) {
    .mublo-production-request .production-market-head,
    .mublo-production-request .production-market-head:has(> .production-market-head__stages) {
        grid-template-rows: minmax(204px, auto);
        min-height: 204px;
    }
    .mublo-production-request .production-market-head__index {
        min-height: 204px;
        padding: 16px 15px 14px;
    }
    .mublo-production-request .production-market-head__index-label {
        gap: 9px;
        font-size: 8px;
    }
    .mublo-production-request .production-market-head__index-label > small {
        display: inline-flex;
        padding-left: 9px;
        font-size: 7px;
    }
    .mublo-production-request .production-market-head__index-total > span {
        display: flex;
    }
    .mublo-production-request .production-market-head__index-total > strong {
        font-size: 35px;
    }
    .mublo-production-request .production-market-head__index-total.has-reset {
        gap: 7px;
    }
    .mublo-production-request .production-market-head__stages {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        overflow: hidden;
        grid-auto-columns: auto;
        margin-top: 14px;
        padding-bottom: 14px;
    }
    .mublo-production-request .production-market-head__stages > div {
        grid-template-rows: 25px auto;
        gap: 0 6px;
        padding-inline: 3px;
    }
    .mublo-production-request .production-market-head__stages > div > strong { font-size: 24px; }
    .mublo-production-request .production-market-head__stages > div > small { font-size: 10px; }
    .mublo-production-request .production-market-head__index-meta {
        justify-content: space-between;
        gap: 8px;
        padding-inline: 0;
        font-size: 7px;
    }
    .mublo-production-request .production-market-head__index-meta strong { font-size: 10px; }
    .mublo-production-request .production-market-head__index-meta > em { font-size: 7px; }
}

/* Operations rail masthead -------------------------------------------------
   A single aligned surface replaces the scattered dashboard composition.
   Total requests and the three workflow stages now share one reading axis. */
.mublo-production-request .production-market-head,
.mublo-production-request .production-market-head:has(> .production-market-head__stages) {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: minmax(178px, auto);
    min-height: 178px;
    background: var(--pr-panel);
}

.mublo-production-request .production-market-head::before {
    display: none;
}

.mublo-production-request .production-market-head__index {
    grid-column: 1;
    grid-row: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: 28px minmax(108px, 1fr);
    min-height: 178px;
    padding: 20px 30px 22px;
    border: 0;
    background:
        linear-gradient(90deg, color-mix(in srgb, var(--pr-accent) 5%, transparent), transparent 24%),
        linear-gradient(180deg, color-mix(in srgb, var(--pr-panel-soft) 44%, var(--pr-panel)), var(--pr-panel));
}

.mublo-production-request .production-market-head__index::before,
.mublo-production-request .production-market-head__index::after {
    display: none;
}

.mublo-production-request .production-market-head__index-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    min-width: 0;
    padding: 0;
    border: 0;
}

.mublo-production-request .production-market-head__index-label {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 13px;
    color: var(--pr-ink);
    font-size: 11px;
    font-weight: 820;
    letter-spacing: .17em;
}

.mublo-production-request .production-market-head__index-label::before {
    width: 20px;
    height: 2px;
    border-radius: 99px;
    background: var(--pr-accent);
    content: "";
}

.mublo-production-request .production-market-head__index-label small {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 0 0 13px;
    color: var(--pr-muted);
    border: 0;
    border-left: 1px solid var(--pr-line);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
}

.mublo-production-request .production-market-head__index-label small > i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--pr-complete);
    box-shadow: none;
}

.mublo-production-request .production-market-head__page {
    align-self: center;
    margin: 0;
    color: var(--pr-muted);
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
    font-size: 9px;
    font-style: normal;
    font-weight: 720;
    line-height: 1;
    letter-spacing: .13em;
    white-space: nowrap;
}

.mublo-production-request .production-market-head__operations {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(188px, 1.2fr) minmax(0, 3fr);
    min-width: 0;
    min-height: 108px;
    overflow: hidden;
    border-top: 1px solid var(--pr-line);
    border-bottom: 1px solid var(--pr-line);
    background: color-mix(in srgb, var(--pr-panel) 92%, transparent);
}

.mublo-production-request .production-market-head__index-total,
.mublo-production-request .production-market-head__index-total.has-reset {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0 10px;
    min-width: 0;
    min-height: 106px;
    margin: 0;
    padding: 14px 20px 13px;
    border: 0;
    border-right: 1px solid var(--pr-line);
    background: color-mix(in srgb, var(--pr-panel-soft) 42%, var(--pr-panel));
}

.mublo-production-request .production-market-head__index-total.has-reset {
    grid-template-columns: auto minmax(0, 1fr);
}

.mublo-production-request .production-market-head__index-total > span {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    align-items: flex-start;
    gap: 3px;
    min-width: 0;
    padding: 0;
}

.mublo-production-request .production-market-head__index-total > span::before {
    display: none;
}

.mublo-production-request .production-market-head__index-total b {
    color: var(--pr-ink);
    font-size: 14px;
    font-weight: 780;
    line-height: 1.1;
    letter-spacing: -.025em;
}

.mublo-production-request .production-market-head__index-total small {
    color: var(--pr-muted);
    font-size: 7px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .13em;
}

.mublo-production-request .production-market-head__index-total > strong {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    color: var(--pr-ink);
    font-size: clamp(42px, 5.2cqi, 50px);
    font-weight: 800;
    line-height: .82;
    letter-spacing: -.075em;
}

.mublo-production-request .production-market-head__total-meta {
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    align-items: center;
    gap: 13px;
    color: var(--pr-muted);
    font-size: 9px;
    font-weight: 630;
    line-height: 1;
}

.mublo-production-request .production-market-head__index-total.has-reset .production-market-head__total-meta {
    padding-right: 58px;
}

.mublo-production-request .production-market-head__total-meta > span {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    white-space: nowrap;
}

.mublo-production-request .production-market-head__total-meta > span + span {
    padding-left: 13px;
    border-left: 1px solid var(--pr-line);
}

.mublo-production-request .production-market-head__total-meta b {
    color: var(--pr-ink);
    font-size: 11px;
    font-weight: 780;
    font-variant-numeric: tabular-nums;
}

.mublo-production-request .production-market-head__reset {
    position: absolute;
    right: 19px;
    bottom: 12px;
    z-index: 2;
    align-self: auto;
    padding: 0;
    font-size: 8px;
}

.mublo-production-request .production-market-head__stages {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-flow: row;
    grid-auto-columns: auto;
    align-items: stretch;
    min-width: 0;
    min-height: 106px;
    overflow: hidden;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
}

.mublo-production-request .production-market-head__stages::before {
    display: none;
}

.mublo-production-request .production-market-head__stages > div {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto 1fr auto;
    align-items: center;
    gap: 0;
    min-width: 0;
    min-height: 106px;
    padding: 14px 18px 13px;
    border: 0;
    background: transparent;
}

.mublo-production-request .production-market-head__stages > div + div {
    border-left: 1px solid var(--pr-line);
}

.mublo-production-request .production-market-head__stage-mark {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--pr-muted);
    font-size: 8px;
    font-weight: 730;
    letter-spacing: .11em;
}

.mublo-production-request .production-market-head__stage-mark > i {
    width: 7px;
    height: 7px;
    border: 0;
    border-radius: 50%;
    background: var(--stage-color);
    box-shadow: none;
}

.mublo-production-request .production-market-head__stages > div > strong {
    grid-column: 1;
    grid-row: 2;
    align-self: center;
    color: var(--pr-ink);
    font-size: clamp(31px, 4cqi, 38px);
    font-weight: 790;
    line-height: .82;
    letter-spacing: -.065em;
}

.mublo-production-request .production-market-head__stages > div > small {
    grid-column: 1;
    grid-row: 3;
    align-self: end;
    padding: 0;
    color: var(--pr-copy);
    font-size: 12px;
    font-weight: 710;
    line-height: 1;
    letter-spacing: -.015em;
}

:is(html.dark, html[data-theme="dark"], html[data-bs-theme="dark"]) .mublo-production-request .production-market-head__index {
    background:
        linear-gradient(90deg, color-mix(in srgb, var(--pr-accent) 4%, transparent), transparent 24%),
        linear-gradient(180deg, color-mix(in srgb, var(--pr-panel-soft) 58%, var(--pr-panel)), var(--pr-panel));
}

:is(html.dark, html[data-theme="dark"], html[data-bs-theme="dark"]) .mublo-production-request .production-market-head__index-total {
    background: color-mix(in srgb, var(--pr-panel-soft) 54%, var(--pr-panel));
}

@container (max-width: 700px) {
    .mublo-production-request .production-market-head,
    .mublo-production-request .production-market-head:has(> .production-market-head__stages) {
        grid-template-rows: minmax(172px, auto);
        min-height: 172px;
    }

    .mublo-production-request .production-market-head__index {
        grid-template-rows: 27px minmax(104px, 1fr);
        min-height: 172px;
        padding: 18px 21px 20px;
    }

    .mublo-production-request .production-market-head__operations {
        grid-template-columns: minmax(155px, 1.12fr) minmax(0, 3fr);
        min-height: 104px;
    }

    .mublo-production-request .production-market-head__index-total,
    .mublo-production-request .production-market-head__index-total.has-reset,
    .mublo-production-request .production-market-head__stages,
    .mublo-production-request .production-market-head__stages > div {
        min-height: 102px;
    }

    .mublo-production-request .production-market-head__index-total,
    .mublo-production-request .production-market-head__index-total.has-reset {
        padding: 12px 15px 11px;
    }

    .mublo-production-request .production-market-head__index-total > strong {
        font-size: 39px;
    }

    .mublo-production-request .production-market-head__total-meta {
        gap: 9px;
        font-size: 8px;
    }

    .mublo-production-request .production-market-head__total-meta > span + span {
        padding-left: 9px;
    }

    .mublo-production-request .production-market-head__stages > div {
        padding: 12px 13px 11px;
    }

    .mublo-production-request .production-market-head__stages > div > strong {
        font-size: 29px;
    }

    .mublo-production-request .production-market-head__stages > div > small {
        font-size: 11px;
    }
}

@container (max-width: 520px) {
    .mublo-production-request .production-market-head,
    .mublo-production-request .production-market-head:has(> .production-market-head__stages) {
        grid-template-rows: minmax(207px, auto);
        min-height: 207px;
    }

    .mublo-production-request .production-market-head__index {
        grid-template-rows: 29px minmax(142px, 1fr);
        min-height: 207px;
        padding: 16px 14px 20px;
    }

    .mublo-production-request .production-market-head__index-label {
        gap: 8px;
        font-size: 9px;
    }

    .mublo-production-request .production-market-head__index-label::before {
        width: 14px;
    }

    .mublo-production-request .production-market-head__index-label small {
        display: none;
    }

    .mublo-production-request .production-market-head__page {
        font-size: 8px;
    }

    .mublo-production-request .production-market-head__operations {
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: 58px 84px;
        min-height: 142px;
    }

    .mublo-production-request .production-market-head__index-total,
    .mublo-production-request .production-market-head__index-total.has-reset {
        grid-template-columns: auto minmax(0, 1fr) auto;
        grid-template-rows: 1fr;
        min-height: 57px;
        padding: 10px 13px;
        border-right: 0;
        border-bottom: 1px solid var(--pr-line);
    }

    .mublo-production-request .production-market-head__index-total > span {
        grid-column: 2;
        grid-row: 1;
        align-self: center;
    }

    .mublo-production-request .production-market-head__index-total > strong {
        grid-column: 1;
        grid-row: 1;
        font-size: 31px;
    }

    .mublo-production-request .production-market-head__total-meta {
        grid-column: 3;
        grid-row: 1;
        align-self: center;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        padding-left: 14px;
        border-left: 1px solid var(--pr-line);
        font-size: 8px;
    }

    .mublo-production-request .production-market-head__total-meta > span + span {
        padding-left: 0;
        border-left: 0;
    }

    .mublo-production-request .production-market-head__total-meta b {
        font-size: 10px;
    }

    .mublo-production-request .production-market-head__index-total.has-reset .production-market-head__total-meta {
        padding-right: 0;
    }

    .mublo-production-request .production-market-head__reset {
        right: auto;
        bottom: 5px;
        left: 13px;
        font-size: 7px;
    }

    .mublo-production-request .production-market-head__stages,
    .mublo-production-request .production-market-head__stages > div {
        min-height: 83px;
    }

    .mublo-production-request .production-market-head__stages {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        overflow: hidden;
        margin: 0;
        padding: 0;
    }

    .mublo-production-request .production-market-head__stages > div {
        grid-template-rows: auto 1fr auto;
        gap: 0;
        padding: 9px 10px 10px;
    }

    .mublo-production-request .production-market-head__stage-mark {
        gap: 5px;
        font-size: 7px;
    }

    .mublo-production-request .production-market-head__stage-mark > i {
        width: 6px;
        height: 6px;
    }

    .mublo-production-request .production-market-head__stages > div > strong {
        font-size: 25px;
    }

    .mublo-production-request .production-market-head__stages > div > small {
        font-size: 10px;
    }
}

/* Brief routing desk -------------------------------------------------------
   Visual layer for a project-request workflow: a real brief ticket feeds
   into three connected production stages. All artwork is skin-owned. */
.mublo-production-request .production-market-head,
.mublo-production-request .production-market-head:has(> .production-market-head__stages) {
    grid-template-rows: minmax(224px, auto);
    min-height: 224px;
    background: var(--pr-panel);
}

.mublo-production-request .production-market-head__index {
    position: relative;
    grid-template-rows: 46px minmax(132px, 1fr);
    gap: 10px;
    min-height: 224px;
    overflow: hidden;
    padding: 20px 28px 16px;
    background:
        radial-gradient(circle at 84% -18%, color-mix(in srgb, var(--pr-accent) 7%, transparent), transparent 34%),
        linear-gradient(118deg, color-mix(in srgb, var(--pr-panel-soft) 46%, var(--pr-panel)) 0%, var(--pr-panel) 48%, color-mix(in srgb, var(--pr-accent) 1.8%, var(--pr-panel)) 100%);
    isolation: isolate;
}

.mublo-production-request .production-market-head__index::before,
.mublo-production-request .production-market-head__index::after {
    display: none;
    border: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
}

.mublo-production-request .production-market-head__decor,
.mublo-production-request .production-market-head__decor > * {
    position: absolute;
    pointer-events: none;
}

.mublo-production-request .production-market-head__decor {
    z-index: 0;
    inset: 0;
    overflow: hidden;
}

.mublo-production-request .production-market-head__decor-grid {
    top: 0;
    right: 0;
    width: 48%;
    height: 100%;
    opacity: .24;
    background: radial-gradient(circle, color-mix(in srgb, var(--pr-accent) 15%, transparent) 1px, transparent 1.2px) 0 0 / 14px 14px;
    mask-image: linear-gradient(90deg, transparent, #000 48%, #000 88%, transparent);
}

.mublo-production-request .production-market-head__decor-glow {
    top: -108px;
    right: 2%;
    width: 330px;
    height: 260px;
    border-radius: 50%;
    opacity: .8;
    background: radial-gradient(circle, color-mix(in srgb, var(--pr-accent) 14%, transparent), transparent 67%);
    filter: blur(7px);
}

.mublo-production-request .production-market-head__decor-route {
    right: -8px;
    bottom: -13px;
    width: 73%;
    height: 186px;
    overflow: visible;
    opacity: .2;
    fill: var(--pr-panel);
    stroke: color-mix(in srgb, var(--pr-accent) 62%, var(--pr-line));
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.2;
}

.mublo-production-request .production-market-head__decor-route path {
    fill: none;
    stroke-dasharray: 7 8;
    animation: production-brief-route 12s linear infinite;
}

.mublo-production-request .production-market-head__decor-route circle {
    stroke-width: 1.5;
}

.mublo-production-request .production-market-head__decor-code,
.mublo-production-request .production-market-head__decor-coord {
    color: color-mix(in srgb, var(--pr-muted) 58%, transparent);
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
    font-size: 6px;
    font-weight: 680;
    letter-spacing: .15em;
}

.mublo-production-request .production-market-head__decor-code {
    right: 31px;
    bottom: 5px;
}

.mublo-production-request .production-market-head__decor-coord {
    top: 8px;
    right: 43%;
}

.mublo-production-request .production-market-head__index-top {
    z-index: 3;
    align-items: center;
}

.mublo-production-request .production-market-head__brand {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 10px;
}

.mublo-production-request .production-market-head__brand::before {
    width: 22px;
    height: 2px;
    flex: 0 0 22px;
    border-radius: 99px;
    background: color-mix(in srgb, var(--pr-accent) 78%, #315a9d);
    content: "";
}

.mublo-production-request .production-market-head__brand-mark {
    position: relative;
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    place-items: center;
    overflow: hidden;
    color: var(--pr-accent);
    border: 1px solid color-mix(in srgb, var(--pr-accent) 23%, var(--pr-line));
    border-radius: 11px;
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--pr-accent) 12%, var(--pr-panel)), color-mix(in srgb, var(--pr-accent) 3%, var(--pr-panel)));
    box-shadow:
        inset 0 1px 0 color-mix(in srgb, #fff 54%, transparent),
        0 8px 22px color-mix(in srgb, var(--pr-accent) 10%, transparent);
}

.mublo-production-request .production-market-head__brand-mark::after {
    position: absolute;
    top: -13px;
    right: -13px;
    width: 25px;
    height: 25px;
    border: 1px solid color-mix(in srgb, var(--pr-accent) 20%, transparent);
    border-radius: 50%;
    content: "";
}

.mublo-production-request .production-market-head__brand-mark svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.45;
}

.mublo-production-request .production-market-head__index-label {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    font-size: 12px;
    line-height: 1;
    letter-spacing: .15em;
}

.mublo-production-request .production-market-head__index-label::before {
    display: none;
}

.mublo-production-request .production-market-head__index-label small {
    gap: 5px;
    padding: 0;
    border: 0;
    font-size: 7px;
    letter-spacing: .13em;
}

.mublo-production-request .production-market-head__index-tools {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mublo-production-request .production-market-head__live,
.mublo-production-request .production-market-head__page {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    border: 1px solid color-mix(in srgb, var(--pr-line) 88%, transparent);
    border-radius: 99px;
    background: color-mix(in srgb, var(--pr-panel) 76%, transparent);
    box-shadow: inset 0 1px 0 color-mix(in srgb, #fff 48%, transparent);
    backdrop-filter: blur(7px);
}

.mublo-production-request .production-market-head__live {
    gap: 6px;
    padding: 0 10px;
    color: var(--pr-copy);
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
    font-size: 7px;
    font-weight: 740;
    letter-spacing: .11em;
}

.mublo-production-request .production-market-head__live > i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--pr-complete);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--pr-complete) 10%, transparent);
    animation: production-brief-live 2.4s ease-in-out infinite;
}

.mublo-production-request .production-market-head__page {
    padding: 0 11px;
    color: var(--pr-ink);
    font-size: 8px;
}

.mublo-production-request .production-market-head__operations {
    z-index: 2;
    grid-template-columns: minmax(208px, 1.06fr) minmax(0, 3fr);
    gap: 13px;
    min-height: 132px;
    overflow: visible;
    border: 0;
    background: transparent;
}

/* The total is a project brief ticket, not a fourth statistic card. */
.mublo-production-request .production-market-head__index-total,
.mublo-production-request .production-market-head__index-total.has-reset {
    position: relative;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr) auto;
    min-height: 132px;
    overflow: hidden;
    padding: 21px 20px 17px;
    color: #fff;
    border: 0;
    border-radius: 15px 3px 15px 15px;
    background:
        radial-gradient(circle at 8% 6%, rgba(255, 255, 255, .15), transparent 32%),
        linear-gradient(138deg, #244987 0%, #315fae 52%, #284f92 100%);
    box-shadow:
        0 11px 25px rgba(29, 55, 103, .16),
        inset 0 1px 0 rgba(255, 255, 255, .2),
        inset 0 -1px 0 rgba(7, 29, 82, .22);
    clip-path: polygon(0 0, calc(100% - 17px) 0, 100% 17px, 100% 100%, 0 100%);
}

.mublo-production-request .production-market-head__index-total::before {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    width: 17px;
    height: 17px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .56), rgba(255, 255, 255, .13));
    box-shadow: -1px 1px 0 rgba(255, 255, 255, .24);
    content: "";
}

.mublo-production-request .production-market-head__index-total::after {
    position: absolute;
    right: 17px;
    bottom: 15px;
    width: 39px;
    height: 18px;
    opacity: .56;
    background: repeating-linear-gradient(90deg, rgba(255, 255, 255, .95) 0 1px, transparent 1px 3px, rgba(255, 255, 255, .95) 3px 5px, transparent 5px 8px);
    content: "";
}

.mublo-production-request .production-market-head__index-total > span:not(.production-market-head__total-signal),
.mublo-production-request .production-market-head__index-total > strong,
.mublo-production-request .production-market-head__total-meta,
.mublo-production-request .production-market-head__reset {
    position: relative;
    z-index: 2;
}

.mublo-production-request .production-market-head__index-total > span:not(.production-market-head__total-signal) {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
}

.mublo-production-request .production-market-head__index-total b,
.mublo-production-request .production-market-head__index-total > strong,
.mublo-production-request .production-market-head__total-meta b {
    color: #fff;
}

.mublo-production-request .production-market-head__index-total b {
    font-size: 15px;
    font-weight: 760;
}

.mublo-production-request .production-market-head__index-total small {
    color: rgba(255, 255, 255, .65);
    font-size: 7px;
}

.mublo-production-request .production-market-head__index-total > strong {
    grid-column: 1;
    grid-row: 1;
    font-size: clamp(49px, 6cqi, 59px);
    font-weight: 790;
    text-shadow: 0 1px 0 rgba(0, 0, 0, .14);
}

.mublo-production-request .production-market-head__total-meta {
    grid-column: 1 / -1;
    grid-row: 2;
    width: calc(100% - 52px);
    gap: 11px;
    padding-top: 11px;
    color: rgba(255, 255, 255, .7);
    border-top: 1px dashed rgba(255, 255, 255, .3);
    font-size: 8px;
}

.mublo-production-request .production-market-head__total-meta > span + span {
    padding-left: 11px;
    border-left-color: rgba(255, 255, 255, .28);
}

.mublo-production-request .production-market-head__total-meta b {
    font-size: 11px;
}

.mublo-production-request .production-market-head__total-signal {
    position: absolute;
    z-index: 2;
    top: 15px;
    right: 24px;
    display: flex;
    grid-column: auto;
    grid-row: auto;
    align-items: end;
    gap: 3px;
    padding: 0;
}

.mublo-production-request .production-market-head__total-signal > i {
    display: block;
    width: 2px;
    border-radius: 99px;
    background: rgba(255, 255, 255, .8);
    animation: production-brief-meter 1.8s ease-in-out infinite;
}

.mublo-production-request .production-market-head__total-signal > i:nth-child(1) { height: 6px; }
.mublo-production-request .production-market-head__total-signal > i:nth-child(2) { height: 11px; animation-delay: -.45s; }
.mublo-production-request .production-market-head__total-signal > i:nth-child(3) { height: 8px; animation-delay: -.9s; }

.mublo-production-request .production-market-head__reset {
    right: 17px;
    bottom: 43px;
    color: #fff;
    font-size: 8px;
}

/* Three workflow stages share one connected production route. */
.mublo-production-request .production-market-head__stages {
    min-height: 132px;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--pr-line) 94%, transparent);
    border-radius: 15px;
    background: color-mix(in srgb, var(--pr-panel) 88%, transparent);
    box-shadow:
        0 12px 30px color-mix(in srgb, var(--pr-ink) 6%, transparent),
        inset 0 1px 0 color-mix(in srgb, #fff 55%, transparent);
    backdrop-filter: blur(8px);
}

.mublo-production-request .production-market-head__stages::before {
    display: none;
}

.mublo-production-request .production-market-head__stages::after {
    display: none;
    animation: none;
}

.mublo-production-request .production-market-head__stages > div {
    z-index: 2;
    grid-template-rows: auto 1fr auto;
    min-height: 130px;
    padding: 20px 20px 17px;
    background: linear-gradient(148deg, color-mix(in srgb, var(--stage-color) 4.5%, transparent), transparent 58%);
}

.mublo-production-request .production-market-head__stages > div + div {
    border-left-color: color-mix(in srgb, var(--pr-line) 82%, transparent);
}

.mublo-production-request .production-market-head__stages > div::after {
    position: absolute;
    right: 20px;
    bottom: 0;
    left: 20px;
    height: 2px;
    opacity: .55;
    border-radius: 99px 99px 0 0;
    background: linear-gradient(90deg, var(--stage-color), transparent 72%);
    content: "";
}

.mublo-production-request .production-market-head__stage-mark {
    position: relative;
    z-index: 4;
    gap: 8px;
    color: color-mix(in srgb, var(--pr-copy) 72%, var(--stage-color));
    font-size: 8px;
}

.mublo-production-request .production-market-head__stages .production-market-head__stage-mark > i {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border: 0;
    border-radius: 50%;
    background: var(--stage-color);
    box-shadow:
        0 0 0 2px var(--pr-panel),
        0 0 0 3px color-mix(in srgb, var(--stage-color) 38%, var(--pr-line));
}

.mublo-production-request .production-market-head__stage-line {
    display: none;
}

.mublo-production-request .production-market-head__stages > div > strong {
    align-self: end;
    padding-top: 12px;
    font-size: clamp(37px, 4.7cqi, 44px);
    font-weight: 790;
}

.mublo-production-request .production-market-head__stages > div > small {
    display: inline-flex;
    width: max-content;
    min-height: 23px;
    align-items: center;
    margin-top: 7px;
    padding: 0 9px;
    color: color-mix(in srgb, var(--pr-ink) 84%, var(--stage-color));
    border: 1px solid color-mix(in srgb, var(--stage-color) 19%, var(--pr-line));
    border-radius: 99px;
    background: color-mix(in srgb, var(--stage-color) 6%, var(--pr-panel));
    font-size: 11px;
    font-weight: 720;
}

:is(html.dark, html[data-theme="dark"], html[data-bs-theme="dark"]) .mublo-production-request .production-market-head__index {
    background:
        radial-gradient(circle at 84% -18%, color-mix(in srgb, var(--pr-accent) 6%, transparent), transparent 34%),
        linear-gradient(118deg, color-mix(in srgb, var(--pr-panel-soft) 54%, var(--pr-panel)) 0%, var(--pr-panel) 52%, color-mix(in srgb, var(--pr-accent) 1.8%, var(--pr-panel)) 100%);
}

:is(html.dark, html[data-theme="dark"], html[data-bs-theme="dark"]) .mublo-production-request .production-market-head__brand-mark,
:is(html.dark, html[data-theme="dark"], html[data-bs-theme="dark"]) .mublo-production-request .production-market-head__live,
:is(html.dark, html[data-theme="dark"], html[data-bs-theme="dark"]) .mublo-production-request .production-market-head__page,
:is(html.dark, html[data-theme="dark"], html[data-bs-theme="dark"]) .mublo-production-request .production-market-head__stages {
    box-shadow: none;
}

:is(html.dark, html[data-theme="dark"], html[data-bs-theme="dark"]) .mublo-production-request .production-market-head__index-total {
    background:
        radial-gradient(circle at 8% 6%, rgba(255, 255, 255, .11), transparent 32%),
        linear-gradient(138deg, #203d72 0%, #2a5092 52%, #203e72 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .13);
}

@keyframes production-brief-route {
    to { stroke-dashoffset: -120; }
}

@keyframes production-brief-scan {
    0%, 12% { background-position: -42% 0; opacity: 0; }
    22% { opacity: .75; }
    72% { opacity: .75; }
    88%, 100% { background-position: 142% 0; opacity: 0; }
}

@keyframes production-brief-live {
    0%, 100% { opacity: .62; transform: scale(.86); }
    50% { opacity: 1; transform: scale(1); }
}

@keyframes production-brief-meter {
    0%, 100% { opacity: .38; transform: scaleY(.72); transform-origin: bottom; }
    50% { opacity: 1; transform: scaleY(1); transform-origin: bottom; }
}

@container (max-width: 700px) {
    .mublo-production-request .production-market-head,
    .mublo-production-request .production-market-head:has(> .production-market-head__stages) {
        grid-template-rows: minmax(212px, auto);
        min-height: 212px;
    }

    .mublo-production-request .production-market-head__index {
        grid-template-rows: 43px minmax(126px, 1fr);
        gap: 9px;
        min-height: 212px;
        padding: 18px 20px 16px;
    }

    .mublo-production-request .production-market-head__brand-mark {
        width: 35px;
        height: 35px;
        flex-basis: 35px;
        border-radius: 10px;
    }

    .mublo-production-request .production-market-head__index-label {
        font-size: 11px;
    }

    .mublo-production-request .production-market-head__live {
        display: none;
    }

    .mublo-production-request .production-market-head__operations {
        grid-template-columns: minmax(180px, 1.02fr) minmax(0, 3fr);
        gap: 10px;
        min-height: 126px;
    }

    .mublo-production-request .production-market-head__index-total,
    .mublo-production-request .production-market-head__index-total.has-reset,
    .mublo-production-request .production-market-head__stages,
    .mublo-production-request .production-market-head__stages > div {
        min-height: 126px;
    }

    .mublo-production-request .production-market-head__index-total,
    .mublo-production-request .production-market-head__index-total.has-reset {
        padding: 18px 16px 15px;
    }

    .mublo-production-request .production-market-head__index-total > strong {
        font-size: 48px;
    }

    .mublo-production-request .production-market-head__stages > div {
        padding: 18px 14px 15px;
    }

    .mublo-production-request .production-market-head__stages > div > strong {
        font-size: 35px;
    }
}

@container (max-width: 520px) {
    .mublo-production-request .production-market-head,
    .mublo-production-request .production-market-head:has(> .production-market-head__stages) {
        grid-template-rows: minmax(246px, auto);
        min-height: 246px;
    }

    .mublo-production-request .production-market-head__index {
        grid-template-rows: 43px minmax(171px, 1fr);
        gap: 8px;
        min-height: 246px;
        padding: 14px 13px 16px;
    }

    .mublo-production-request .production-market-head__index::before,
    .mublo-production-request .production-market-head__index::after,
    .mublo-production-request .production-market-head__decor-route,
    .mublo-production-request .production-market-head__decor-code,
    .mublo-production-request .production-market-head__decor-coord {
        display: none;
    }

    .mublo-production-request .production-market-head__decor-grid {
        width: 66%;
        opacity: .26;
    }

    .mublo-production-request .production-market-head__brand {
        gap: 8px;
    }

    .mublo-production-request .production-market-head__brand-mark {
        width: 33px;
        height: 33px;
        flex-basis: 33px;
        border-radius: 9px;
    }

    .mublo-production-request .production-market-head__brand-mark svg {
        width: 19px;
        height: 19px;
    }

    .mublo-production-request .production-market-head__index-label {
        gap: 0;
        font-size: 9px;
        letter-spacing: .11em;
    }

    .mublo-production-request .production-market-head__index-label small {
        display: none;
    }

    .mublo-production-request .production-market-head__page {
        min-height: 25px;
        padding: 0 8px;
        font-size: 7px;
    }

    .mublo-production-request .production-market-head__operations {
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: 72px 91px;
        gap: 8px;
        min-height: 171px;
    }

    .mublo-production-request .production-market-head__index-total,
    .mublo-production-request .production-market-head__index-total.has-reset {
        grid-template-columns: auto minmax(0, 1fr) auto;
        grid-template-rows: 1fr;
        min-height: 72px;
        padding: 12px 14px;
        border: 0;
        border-radius: 12px 3px 12px 12px;
        clip-path: polygon(0 0, calc(100% - 13px) 0, 100% 13px, 100% 100%, 0 100%);
    }

    .mublo-production-request .production-market-head__index-total::before {
        width: 13px;
        height: 13px;
    }

    .mublo-production-request .production-market-head__index-total::after,
    .mublo-production-request .production-market-head__total-signal {
        display: none;
    }

    .mublo-production-request .production-market-head__index-total > strong {
        grid-column: 1;
        grid-row: 1;
        font-size: 34px;
    }

    .mublo-production-request .production-market-head__index-total > span:not(.production-market-head__total-signal) {
        grid-column: 2;
        grid-row: 1;
    }

    .mublo-production-request .production-market-head__index-total b {
        font-size: 13px;
    }

    .mublo-production-request .production-market-head__total-meta {
        grid-column: 3;
        grid-row: 1;
        width: auto;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        padding: 0 0 0 12px;
        border-top: 0;
        border-left: 1px dashed rgba(255, 255, 255, .3);
        font-size: 8px;
    }

    .mublo-production-request .production-market-head__total-meta > span + span {
        padding-left: 0;
        border-left: 0;
    }

    .mublo-production-request .production-market-head__index-total.has-reset .production-market-head__total-meta {
        padding-right: 0;
    }

    .mublo-production-request .production-market-head__reset {
        right: auto;
        bottom: 6px;
        left: 57px;
        color: #fff;
        font-size: 7px;
    }

    .mublo-production-request .production-market-head__stages,
    .mublo-production-request .production-market-head__stages > div {
        min-height: 91px;
    }

    .mublo-production-request .production-market-head__stages {
        border-radius: 12px;
    }

    .mublo-production-request .production-market-head__stages::before {
        top: 22px;
        right: 11%;
        left: 11%;
    }

    .mublo-production-request .production-market-head__stages::after {
        top: 21px;
        right: 11%;
        left: 11%;
    }

    .mublo-production-request .production-market-head__stages > div {
        padding: 13px 10px 11px;
    }

    .mublo-production-request .production-market-head__stages > div::after {
        right: 10px;
        left: 10px;
    }

    .mublo-production-request .production-market-head__stage-mark {
        gap: 5px;
        font-size: 7px;
    }

    .mublo-production-request .production-market-head__stages .production-market-head__stage-mark > i {
        width: 7px;
        height: 7px;
        flex-basis: 7px;
        border: 0;
        box-shadow: 0 0 0 1px color-mix(in srgb, var(--stage-color) 38%, var(--pr-line));
    }

    .mublo-production-request .production-market-head__stages > div > strong {
        padding-top: 8px;
        font-size: 27px;
    }

    .mublo-production-request .production-market-head__stages > div > small {
        min-height: 20px;
        margin-top: 4px;
        padding: 0 7px;
        font-size: 10px;
    }
}

/* Calm project board -------------------------------------------------------
   One visual language from board identity to the request ledger. */
.mublo-production-request .production-market-head,
.mublo-production-request .production-market-head:has(> .production-market-head__stages) {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: minmax(214px, auto);
    min-height: 214px;
    background: var(--pr-panel);
}

.mublo-production-request .production-market-head__index {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: minmax(132px, auto) 82px;
    gap: 0;
    min-height: 214px;
    overflow: hidden;
    padding: 0;
    background:
        radial-gradient(circle at 92% 0%, color-mix(in srgb, var(--pr-accent) 5%, transparent), transparent 30%),
        linear-gradient(116deg, color-mix(in srgb, var(--pr-panel-soft) 48%, var(--pr-panel)), var(--pr-panel) 54%);
    isolation: isolate;
}

.mublo-production-request .production-market-head__index::before,
.mublo-production-request .production-market-head__index::after,
.mublo-production-request .production-market-head__decor,
.mublo-production-request .production-market-head__total-signal {
    display: none;
}

.mublo-production-request .production-market-head__index-top {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 34px;
    min-width: 0;
    padding: 25px 30px 23px;
    border: 0;
}

.mublo-production-request .production-market-head__intro {
    min-width: 0;
}

.mublo-production-request .production-market-head__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 10px;
    color: var(--pr-accent);
    font-size: 9px;
    font-weight: 780;
    line-height: 1;
    letter-spacing: .04em;
}

.mublo-production-request .production-market-head__eyebrow > i {
    width: 19px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
}

.mublo-production-request .production-market-head__intro h1 {
    max-width: 560px;
    margin: 0;
    color: var(--pr-ink);
    font-size: clamp(29px, 4.2cqi, 37px);
    font-weight: 790;
    line-height: 1.06;
    letter-spacing: -.052em;
    overflow-wrap: anywhere;
}

.mublo-production-request .production-market-head__intro p {
    max-width: 560px;
    margin: 11px 0 0;
    color: var(--pr-copy);
    font-size: 11px;
    font-weight: 500;
    line-height: 1.55;
    letter-spacing: -.01em;
}

.mublo-production-request .production-market-head__summary {
    display: flex;
    grid-column: auto;
    grid-row: auto;
    grid-template-columns: none;
    grid-template-rows: none;
    min-width: 190px;
    align-items: flex-end;
    flex-direction: column;
    gap: 14px;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
}

.mublo-production-request .production-market-head__page {
    display: inline-flex;
    min-height: 0;
    align-items: center;
    padding: 0;
    color: var(--pr-muted);
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    font-family: inherit;
    font-size: 9px;
    font-style: normal;
    font-weight: 650;
    line-height: 1;
    letter-spacing: 0;
}

.mublo-production-request .production-market-head__summary > .production-market-head__summary-metrics {
    display: grid;
    grid-template-columns: repeat(2, auto);
    align-items: end;
    gap: 0;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
}

.mublo-production-request .production-market-head__summary-metrics > span {
    display: flex;
    min-width: 92px;
    flex-direction: column;
    gap: 5px;
    padding: 0 17px;
    color: var(--pr-muted);
    border-left: 1px solid var(--pr-line);
    font-size: 9px;
    font-weight: 570;
    line-height: 1;
    white-space: nowrap;
}

.mublo-production-request .production-market-head__summary-metrics > span:last-child {
    padding-right: 0;
}

.mublo-production-request .production-market-head__summary-metrics b {
    color: var(--pr-ink);
    font-size: 22px;
    font-weight: 770;
    line-height: .9;
    letter-spacing: -.045em;
    font-variant-numeric: tabular-nums;
}

.mublo-production-request .production-market-head__operations {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(180px, 1.08fr) minmax(0, 3fr);
    gap: 0;
    min-width: 0;
    min-height: 82px;
    overflow: hidden;
    border-top: 1px solid var(--pr-line);
    border-bottom: 0;
    background: color-mix(in srgb, var(--pr-panel) 94%, var(--pr-panel-soft));
}

.mublo-production-request .production-market-head__operations:not(:has(.production-market-head__stages)) {
    grid-template-columns: minmax(0, 1fr);
}

.mublo-production-request .production-market-head__index-total,
.mublo-production-request .production-market-head__index-total.has-reset {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    grid-template-rows: 1fr;
    align-items: center;
    gap: 7px;
    min-width: 0;
    min-height: 81px;
    overflow: visible;
    padding: 15px 23px;
    color: var(--pr-ink);
    border: 0;
    border-right: 1px solid var(--pr-line);
    border-radius: 0;
    background: color-mix(in srgb, var(--pr-accent) 3.2%, var(--pr-panel));
    box-shadow: none;
    clip-path: none;
}

.mublo-production-request .production-market-head__index-total::before,
.mublo-production-request .production-market-head__index-total::after {
    display: none;
}

.mublo-production-request .production-market-head__index-total > span:not(.production-market-head__total-signal) {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-rows: auto auto;
    grid-column: 1;
    grid-row: 1;
    align-items: center;
    align-self: center;
    gap: 3px 8px;
    min-width: 0;
}

.mublo-production-request .production-market-head__index-total > span > i {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--pr-accent);
}

.mublo-production-request .production-market-head__index-total b {
    grid-column: 2;
    grid-row: 1;
    color: var(--pr-ink);
    font-size: 12px;
    font-weight: 720;
    line-height: 1;
}

.mublo-production-request .production-market-head__index-total small {
    grid-column: 2;
    grid-row: 2;
    color: var(--pr-muted);
    font-size: 8px;
    font-weight: 530;
    line-height: 1;
    letter-spacing: 0;
}

.mublo-production-request .production-market-head__index-total > strong {
    position: static;
    z-index: auto;
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    color: var(--pr-accent);
    font-size: 30px;
    font-weight: 760;
    line-height: .86;
    letter-spacing: -.055em;
    text-shadow: none;
}

.mublo-production-request .production-market-head__count-unit {
    grid-column: 3 !important;
    grid-row: 1 !important;
    align-self: end;
    padding-bottom: 4px;
    color: var(--pr-muted) !important;
    font-size: 9px !important;
    font-weight: 560 !important;
    line-height: 1 !important;
}

.mublo-production-request .production-market-head__reset {
    right: auto;
    bottom: 8px;
    left: 38px;
    color: var(--pr-accent);
    font-size: 8px;
}

.mublo-production-request .production-market-head__stages {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    min-width: 0;
    min-height: 81px;
    overflow: hidden;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.mublo-production-request .production-market-head__stages::before,
.mublo-production-request .production-market-head__stages::after {
    display: none;
}

.mublo-production-request .production-market-head__stages > div {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    grid-template-rows: 1fr;
    align-items: center;
    gap: 6px;
    min-width: 0;
    min-height: 81px;
    padding: 15px 21px;
    border: 0;
    background: transparent;
}

.mublo-production-request .production-market-head__stages > div + div {
    border-left: 1px solid var(--pr-line);
}

.mublo-production-request .production-market-head__stages > div::after {
    display: none;
}

.mublo-production-request .production-market-head__stage-mark {
    position: static;
    z-index: auto;
    display: inline-flex;
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    align-items: center;
    gap: 7px;
    color: var(--pr-copy);
    font-family: inherit;
    font-size: 11px;
    font-weight: 650;
    line-height: 1;
    letter-spacing: -.01em;
    white-space: nowrap;
}

.mublo-production-request .production-market-head__stages .production-market-head__stage-mark > i {
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border: 0;
    border-radius: 50%;
    background: var(--stage-color);
    box-shadow: none;
}

.mublo-production-request .production-market-head__stages > div > strong {
    position: static;
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    padding: 0;
    color: var(--pr-ink);
    font-size: 28px;
    font-weight: 750;
    line-height: .86;
    letter-spacing: -.05em;
}

.mublo-production-request .production-market-head__stages > div.is-active > strong {
    color: var(--pr-accent);
}

.mublo-production-request .production-market-head__stages > div > small {
    display: block;
    grid-column: 3;
    grid-row: 1;
    width: auto;
    min-height: 0;
    align-self: end;
    margin: 0;
    padding: 0 0 4px;
    color: var(--pr-muted);
    border: 0;
    border-radius: 0;
    background: transparent;
    font-size: 9px;
    font-weight: 540;
    line-height: 1;
}

:is(html.dark, html[data-theme="dark"], html[data-bs-theme="dark"]) .mublo-production-request .production-market-head__index {
    background:
        radial-gradient(circle at 92% 0%, color-mix(in srgb, var(--pr-accent) 3.8%, transparent), transparent 30%),
        linear-gradient(116deg, color-mix(in srgb, var(--pr-panel-soft) 48%, var(--pr-panel)), var(--pr-panel) 58%);
}

:is(html.dark, html[data-theme="dark"], html[data-bs-theme="dark"]) .mublo-production-request .production-market-head__index-total {
    color: var(--pr-ink);
    background: color-mix(in srgb, var(--pr-accent) 4.6%, var(--pr-panel));
    box-shadow: none;
}

@container (max-width: 700px) {
    .mublo-production-request .production-market-head,
    .mublo-production-request .production-market-head:has(> .production-market-head__stages) {
        grid-template-rows: minmax(206px, auto);
        min-height: 206px;
    }

    .mublo-production-request .production-market-head__index {
        grid-template-rows: minmax(126px, auto) 80px;
        min-height: 206px;
        padding: 0;
    }

    .mublo-production-request .production-market-head__index-top {
        gap: 20px;
        padding: 22px 22px 20px;
    }

    .mublo-production-request .production-market-head__intro h1 {
        font-size: 29px;
    }

    .mublo-production-request .production-market-head__summary {
        min-width: 166px;
    }

    .mublo-production-request .production-market-head__summary-metrics > span {
        min-width: 80px;
        padding-inline: 13px;
    }

    .mublo-production-request .production-market-head__operations {
        grid-template-columns: minmax(150px, 1.02fr) minmax(0, 3fr);
        min-height: 80px;
    }

    .mublo-production-request .production-market-head__index-total,
    .mublo-production-request .production-market-head__index-total.has-reset,
    .mublo-production-request .production-market-head__stages,
    .mublo-production-request .production-market-head__stages > div {
        min-height: 79px;
    }

    .mublo-production-request .production-market-head__index-total,
    .mublo-production-request .production-market-head__index-total.has-reset {
        padding-inline: 17px;
    }

    .mublo-production-request .production-market-head__stages > div {
        padding-inline: 14px;
    }

    .mublo-production-request .production-market-head__stage-mark {
        font-size: 10px;
    }

    .mublo-production-request .production-market-head__stages > div > strong {
        font-size: 25px;
    }
}

@container (max-width: 520px) {
    .mublo-production-request .production-market-head,
    .mublo-production-request .production-market-head:has(> .production-market-head__stages) {
        grid-template-rows: minmax(230px, auto);
        min-height: 230px;
    }

    .mublo-production-request .production-market-head__index {
        grid-template-rows: minmax(150px, auto) 80px;
        min-height: 230px;
    }

    .mublo-production-request .production-market-head__index-top {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: start;
        gap: 12px;
        padding: 19px 15px 17px;
    }

    .mublo-production-request .production-market-head__eyebrow {
        margin-bottom: 9px;
        font-size: 8px;
    }

    .mublo-production-request .production-market-head__eyebrow > i {
        width: 14px;
    }

    .mublo-production-request .production-market-head__intro h1 {
        font-size: 25px;
    }

    .mublo-production-request .production-market-head__intro p {
        max-width: 220px;
        margin-top: 9px;
        font-size: 10px;
        line-height: 1.48;
    }

    .mublo-production-request .production-market-head__summary {
        min-width: 68px;
        gap: 15px;
    }

    .mublo-production-request .production-market-head__page {
        font-size: 8px;
        white-space: nowrap;
    }

    .mublo-production-request .production-market-head__summary > .production-market-head__summary-metrics {
        grid-template-columns: minmax(0, 1fr);
        gap: 9px;
        padding: 0;
        border: 0;
        background: transparent;
    }

    .mublo-production-request .production-market-head__summary-metrics > span {
        min-width: 0;
        gap: 3px;
        padding: 0 0 0 10px;
        font-size: 7px;
    }

    .mublo-production-request .production-market-head__summary-metrics b {
        font-size: 17px;
    }

    .mublo-production-request .production-market-head__operations {
        grid-template-columns: minmax(74px, .92fr) minmax(0, 3fr);
        min-height: 80px;
    }

    .mublo-production-request .production-market-head__index-total,
    .mublo-production-request .production-market-head__index-total.has-reset {
        grid-template-columns: minmax(0, 1fr) auto auto;
        grid-template-rows: auto auto;
        align-content: center;
        gap: 5px 3px;
        min-height: 79px;
        padding: 12px 10px;
    }

    .mublo-production-request .production-market-head__index-total > span:not(.production-market-head__total-signal) {
        grid-column: 1 / -1;
        grid-row: 1;
        gap: 0 6px;
    }

    .mublo-production-request .production-market-head__index-total > span > i {
        width: 6px;
        height: 6px;
    }

    .mublo-production-request .production-market-head__index-total b {
        font-size: 9px;
    }

    .mublo-production-request .production-market-head__index-total > span small {
        display: none;
    }

    .mublo-production-request .production-market-head__index-total > strong {
        grid-column: 1;
        grid-row: 2;
        justify-self: start;
        font-size: 24px;
    }

    .mublo-production-request .production-market-head__count-unit {
        grid-column: 2 !important;
        grid-row: 2 !important;
        justify-self: start;
        padding-bottom: 3px;
        font-size: 8px !important;
    }

    .mublo-production-request .production-market-head__reset {
        bottom: 4px;
        left: 16px;
        font-size: 7px;
    }

    .mublo-production-request .production-market-head__stages,
    .mublo-production-request .production-market-head__stages > div {
        min-height: 79px;
    }

    .mublo-production-request .production-market-head__stages > div {
        grid-template-columns: minmax(0, 1fr) auto auto;
        grid-template-rows: auto auto;
        align-content: center;
        gap: 6px 3px;
        padding: 12px 8px;
    }

    .mublo-production-request .production-market-head__stage-mark {
        grid-column: 1 / -1;
        grid-row: 1;
        gap: 5px;
        font-size: 9px;
    }

    .mublo-production-request .production-market-head__stages .production-market-head__stage-mark > i {
        width: 6px;
        height: 6px;
        flex-basis: 6px;
    }

    .mublo-production-request .production-market-head__stages > div > strong {
        grid-column: 1;
        grid-row: 2;
        justify-self: start;
        font-size: 23px;
    }

    .mublo-production-request .production-market-head__stages > div > small {
        grid-column: 2;
        grid-row: 2;
        justify-self: start;
        padding-bottom: 3px;
        font-size: 8px;
    }
}

/* Readability and ambient light -------------------------------------------
   Keep every functional label legible; motion stays as one soft light field. */
.mublo-production-request-list {
    --pr-copy: color-mix(in srgb, var(--pr-ink) 82%, var(--muted-foreground, #6d7480));
    --pr-muted: color-mix(in srgb, var(--pr-ink) 58%, var(--muted-foreground, #6d7480));
}

.mublo-production-request .production-market-head__index::after {
    position: absolute;
    z-index: 0;
    top: 16px;
    right: 48px;
    display: block;
    width: 310px;
    height: 112px;
    opacity: .86;
    border: 0;
    border-radius: 50%;
    background: radial-gradient(ellipse, color-mix(in srgb, var(--pr-accent) 14%, transparent) 0%, color-mix(in srgb, var(--pr-accent) 5%, transparent) 43%, transparent 74%);
    box-shadow: none;
    filter: blur(12px);
    content: "";
    animation: production-market-ambient 11s ease-in-out infinite alternate;
    pointer-events: none;
    will-change: transform, opacity;
}

.mublo-production-request .production-market-head__eyebrow {
    font-size: 10px;
    font-weight: 780;
}

.mublo-production-request .production-market-head__intro h1 {
    font-size: clamp(32px, 4.5cqi, 39px);
    font-weight: 800;
}

.mublo-production-request .production-market-head__intro p {
    margin-top: 12px;
    color: var(--pr-copy);
    font-size: 13px;
    font-weight: 560;
    line-height: 1.58;
}

.mublo-production-request .production-market-head__page {
    color: var(--pr-copy);
    font-size: 10px;
    font-weight: 650;
}

.mublo-production-request .production-market-head__summary-metrics > span {
    color: var(--pr-copy);
    font-size: 10px;
    font-weight: 620;
}

.mublo-production-request .production-market-head__summary-metrics b {
    font-size: 24px;
    font-weight: 790;
}

.mublo-production-request .production-market-head__index-total b {
    font-size: 13px;
    font-weight: 720;
}

.mublo-production-request .production-market-head__index-total small {
    color: var(--pr-muted);
    font-size: 9.5px;
    font-weight: 600;
}

.mublo-production-request .production-market-head__index-total > strong {
    font-size: 32px;
    font-weight: 780;
}

.mublo-production-request .production-market-head__count-unit {
    color: var(--pr-copy) !important;
    font-size: 10px !important;
    font-weight: 620 !important;
}

.mublo-production-request .production-market-head__stage-mark {
    color: var(--pr-copy);
    font-size: 12px;
    font-weight: 680;
}

.mublo-production-request .production-market-head__stages > div > strong {
    font-size: 30px;
    font-weight: 780;
}

.mublo-production-request .production-market-head__stages > div > small {
    color: var(--pr-copy);
    font-size: 10px;
    font-weight: 620;
}

.mublo-production-request .production-market-head__stage-hit {
    position: absolute;
    z-index: 2;
    inset: 0;
    display: block;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: transparent;
    text-decoration: none;
}

.mublo-production-request .production-market-head__stages > div {
    transition: background-color 160ms ease;
}

.mublo-production-request .production-market-head__stages > div:has(.production-market-head__stage-hit:hover) {
    background: color-mix(in srgb, var(--stage-color) 5%, transparent);
}

.mublo-production-request .production-market-head__stage-hit:focus-visible {
    outline: 2px solid var(--pr-accent);
    outline-offset: -4px;
}

.mublo-production-request .production-market-controls__heading > strong {
    font-size: 15px;
    font-weight: 780;
}

.mublo-production-request .production-market-controls__heading > span {
    color: var(--pr-copy);
    font-size: 10.5px;
    font-weight: 550;
    line-height: 1.4;
}

.mublo-production-request .production-market-controls .production-request-search select,
.mublo-production-request .production-market-controls .production-request-search input,
.mublo-production-request .production-market-controls .production-request-search button,
.mublo-production-request .production-market-controls .production-request-write {
    font-size: 12px;
    font-weight: 620;
}

.mublo-production-request .production-market-columns {
    color: var(--pr-copy);
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: .03em;
}

.mublo-production-request .production-market-row__flags .production-request-status {
    font-size: 9px;
    font-weight: 680;
}

.mublo-production-request .production-market-row__flags .production-request-badge {
    font-size: 9px;
    font-weight: 700;
}

.mublo-production-request .production-market-row__code {
    color: var(--pr-copy);
    font-size: 8.5px;
    font-weight: 690;
}

.mublo-production-request .production-market-row__title {
    font-size: 18px;
    font-weight: 770;
    line-height: 1.36;
}

.mublo-production-request .production-market-row__excerpt {
    color: var(--pr-copy);
    font-size: 12.5px;
    font-weight: 530;
    line-height: 1.5;
}

.mublo-production-request .production-market-row__owner {
    color: var(--pr-muted);
    font-size: 9.5px;
    font-weight: 550;
}

.mublo-production-request .production-market-row__owner strong {
    color: var(--pr-copy);
    font-size: 10px;
    font-weight: 720;
}

.mublo-production-request .production-market-row__metric > span {
    color: var(--pr-copy);
    font-size: 9.5px;
    font-weight: 650;
}

.mublo-production-request .production-market-row__metric > strong {
    font-size: 13.5px;
    font-weight: 740;
}

.mublo-production-request .production-market-row__budget > strong {
    font-size: 16px;
    font-weight: 790;
}

.mublo-production-request .production-market-row__applicants > strong {
    font-size: 23px;
}

.mublo-production-request .production-market-row__applicants small {
    color: var(--pr-copy);
    font-size: 9.5px;
    font-weight: 620;
}

.mublo-production-request .production-market-row__assignment.is-open > strong {
    color: var(--pr-muted);
    font-weight: 650;
}

:is(html.dark, html[data-theme="dark"], html[data-bs-theme="dark"]) .mublo-production-request .production-market-head__index::after {
    opacity: .8;
    background: radial-gradient(ellipse, rgba(77, 104, 151, .24) 0%, rgba(59, 79, 116, .1) 43%, transparent 74%);
}

@keyframes production-market-ambient {
    0% { opacity: .58; transform: translate3d(-22px, 2px, 0) scale(.96); }
    52% { opacity: .9; transform: translate3d(4px, 10px, 0) scale(1.04); }
    100% { opacity: .7; transform: translate3d(24px, -2px, 0) scale(1); }
}

@container (max-width: 520px) {
    .mublo-production-request .production-market-head__index-total,
    .mublo-production-request .production-market-head__index-total.has-reset,
    .mublo-production-request .production-market-head__stages > div {
        grid-template-columns: auto auto minmax(0, 1fr);
    }

    .mublo-production-request .production-market-head__index::after {
        top: 20px;
        right: 16px;
        width: 190px;
        height: 82px;
        opacity: .72;
        filter: blur(10px);
    }

    .mublo-production-request .production-market-head__eyebrow {
        font-size: 9px;
    }

    .mublo-production-request .production-market-head__intro h1 {
        font-size: 27px;
    }

    .mublo-production-request .production-market-head__intro p {
        max-width: 218px;
        margin-top: 10px;
        font-size: 11.5px;
        font-weight: 570;
        line-height: 1.5;
    }

    .mublo-production-request .production-market-head__page {
        font-size: 9px;
    }

    .mublo-production-request .production-market-head__summary-metrics > span {
        align-items: baseline;
        flex-direction: row;
        gap: 4px;
        font-size: 9px;
        font-weight: 620;
    }

    .mublo-production-request .production-market-head__summary-metrics b {
        font-size: 17px;
    }

    .mublo-production-request .production-market-head__index-total b,
    .mublo-production-request .production-market-head__stage-mark {
        font-size: 10px;
    }

    .mublo-production-request .production-market-head__index-total > strong,
    .mublo-production-request .production-market-head__stages > div > strong {
        font-size: 24px;
    }

    .mublo-production-request .production-market-head__count-unit,
    .mublo-production-request .production-market-head__stages > div > small {
        font-size: 9px !important;
    }

    .mublo-production-request .production-market-controls__heading > strong {
        font-size: 15px;
    }

    .mublo-production-request .production-market-controls .production-request-search select,
    .mublo-production-request .production-market-controls .production-request-search input,
    .mublo-production-request .production-market-controls .production-request-search button,
    .mublo-production-request .production-market-controls .production-request-write {
        font-size: 12.5px;
    }

    .mublo-production-request .production-market-row__flags .production-request-status,
    .mublo-production-request .production-market-row__flags .production-request-badge {
        font-size: 9px;
    }

    .mublo-production-request .production-market-row__title {
        font-size: 17px;
        font-weight: 770;
        line-height: 1.38;
    }

    .mublo-production-request .production-market-row__owner,
    .mublo-production-request .production-market-row__owner strong {
        font-size: 9.5px;
    }

    .mublo-production-request .production-market-row__metric > span {
        font-size: 9.5px;
    }

    .mublo-production-request .production-market-row__budget > strong {
        font-size: 15px;
    }

    .mublo-production-request .production-market-row__applicants > strong {
        font-size: 16px;
    }

    .mublo-production-request .production-market-row__assignment > strong,
    .mublo-production-request .production-market-row__assignment.is-open > strong {
        font-size: 11px;
        font-weight: 650;
    }
}

/* Small-copy legibility ---------------------------------------------------
   Prevent Korean labels from sitting in a line box that is too tight, and
   reserve enough width for the overview label before the numeric columns. */
.mublo-production-request .production-market-head__operations {
    grid-template-columns: minmax(210px, 1.16fr) minmax(0, 3fr);
}

.mublo-production-request .production-market-head__index-total > span:not(.production-market-head__total-signal) {
    grid-template-columns: auto minmax(max-content, 1fr);
    gap: 4px 8px;
    overflow: visible;
}

.mublo-production-request .production-market-head__eyebrow {
    font-size: 11px;
}

.mublo-production-request .production-market-head__page,
.mublo-production-request .production-market-head__summary-metrics > span {
    font-size: 11px;
    line-height: 1.25;
}

.mublo-production-request .production-market-head__index-total b {
    min-width: max-content;
    font-size: 14px;
    line-height: 1.25;
    white-space: nowrap;
}

.mublo-production-request .production-market-head__index-total small {
    min-width: max-content;
    font-size: 11px;
    line-height: 1.3;
    white-space: nowrap;
}

.mublo-production-request .production-market-head__stages .production-market-head__stage-mark {
    overflow: visible;
    color: var(--pr-copy);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
}

.mublo-production-request .production-market-head__count-unit,
.mublo-production-request .production-market-head__stages > div > small {
    font-size: 11px !important;
    font-weight: 650 !important;
    line-height: 1.2 !important;
}

.mublo-production-request .production-market-controls__heading > span {
    overflow: visible;
    color: var(--pr-copy);
    font-size: 11.5px;
    font-weight: 590;
    line-height: 1.4;
    text-overflow: clip;
    white-space: normal;
}

.mublo-production-request .production-market-columns {
    font-size: 10.5px;
    font-weight: 730;
    letter-spacing: .02em;
}

.mublo-production-request .production-market-row__flags .production-request-status,
.mublo-production-request .production-market-row__flags .production-request-badge {
    font-size: 10px;
}

.mublo-production-request .production-market-row__code {
    color: var(--pr-copy);
    font-size: 9.5px;
    line-height: 1.35;
}

.mublo-production-request .production-market-row__owner,
.mublo-production-request .production-market-row__owner strong {
    font-size: 10.5px;
    line-height: 1.25;
}

.mublo-production-request .production-market-row__metric > span,
.mublo-production-request .production-market-row__applicants small {
    font-size: 10.5px;
    line-height: 1.25;
}

@container (min-width: 701px) and (max-width: 840px) {
    .mublo-production-request .production-market-controls__top {
        grid-template-columns: minmax(205px, .62fr) minmax(0, 1.38fr) auto;
    }

    .mublo-production-request .production-market-controls__heading > span {
        white-space: nowrap;
    }
}

@container (max-width: 520px) {
    .mublo-production-request .production-market-head__operations {
        grid-template-columns: minmax(74px, .92fr) minmax(0, 3fr);
    }

    .mublo-production-request .production-market-head__eyebrow,
    .mublo-production-request .production-market-head__page,
    .mublo-production-request .production-market-head__summary-metrics > span {
        font-size: 10px;
    }

    .mublo-production-request .production-market-head__index-total b {
        font-size: 10px;
        line-height: 1.25;
    }

    .mublo-production-request .production-market-head__stages .production-market-head__stage-mark {
        gap: 5px;
        font-size: 10.5px;
        line-height: 1.25;
    }

    .mublo-production-request .production-market-head__count-unit,
    .mublo-production-request .production-market-head__stages > div > small {
        font-size: 9.5px !important;
    }

    .mublo-production-request .production-market-row__flags .production-request-status,
    .mublo-production-request .production-market-row__flags .production-request-badge {
        font-size: 9.5px;
    }

    .mublo-production-request .production-market-row__owner,
    .mublo-production-request .production-market-row__owner strong,
    .mublo-production-request .production-market-row__metric > span,
    .mublo-production-request .production-market-row__applicants small {
        font-size: 10px;
    }
}

/* Unified overview counts -------------------------------------------------
   Every status uses the same number/unit group and baseline. */
.mublo-production-request .production-market-head__index-top {
    grid-template-columns: minmax(0, 1fr);
}

.mublo-production-request .production-market-head__operations {
    grid-template-columns: minmax(0, 1fr) minmax(0, 3fr);
}

.mublo-production-request .production-market-head__index-total,
.mublo-production-request .production-market-head__index-total.has-reset {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: 1fr;
    column-gap: 14px;
}

.mublo-production-request .production-market-head__index-total > span:not(.production-market-head__total-signal) {
    display: inline-flex;
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    align-items: center;
    flex-direction: row;
    gap: 8px;
    overflow: visible;
}

.mublo-production-request .production-market-head__index-total > span > i,
.mublo-production-request .production-market-head__index-total b {
    grid-column: auto;
    grid-row: auto;
}

.mublo-production-request .production-market-head__index-total > span > i {
    flex: 0 0 7px;
}

.mublo-production-request .production-market-head__stages > div {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: 1fr;
    column-gap: 12px;
}

.mublo-production-request .production-market-head__count {
    display: inline-flex;
    grid-column: 2;
    grid-row: 1;
    align-items: baseline;
    justify-self: end;
    gap: 4px;
    min-width: max-content;
    color: var(--pr-ink);
    white-space: nowrap;
}

.mublo-production-request .production-market-head__count > strong {
    color: var(--pr-ink);
    font-size: clamp(28px, 3.75cqi, 32px);
    font-weight: 780;
    line-height: 1;
    letter-spacing: -.05em;
    font-variant-numeric: tabular-nums;
}

.mublo-production-request .production-market-head__index-total .production-market-head__count > strong,
.mublo-production-request .production-market-head__stages > div.is-active .production-market-head__count > strong {
    color: var(--pr-accent);
}

.mublo-production-request .production-market-head__count > small {
    margin: 0;
    padding: 0;
    color: var(--pr-copy);
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -.01em;
}

@container (max-width: 520px) {
    .mublo-production-request .production-market-head__index-total,
    .mublo-production-request .production-market-head__index-total.has-reset,
    .mublo-production-request .production-market-head__stages > div {
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: auto auto;
        align-content: center;
        gap: 6px;
    }

    .mublo-production-request .production-market-head__index-total > span:not(.production-market-head__total-signal),
    .mublo-production-request .production-market-head__stage-mark {
        grid-column: 1;
        grid-row: 1;
    }

    .mublo-production-request .production-market-head__count {
        grid-column: 1;
        grid-row: 2;
        justify-self: start;
        gap: 3px;
    }

    .mublo-production-request .production-market-head__count > strong {
        font-size: 23px;
    }

    .mublo-production-request .production-market-head__count > small {
        font-size: 10px;
        line-height: 1.25;
    }

    .mublo-production-request .production-market-head__intro p {
        max-width: none;
    }
}

@container (min-width: 521px) and (max-width: 700px) {
    .mublo-production-request .production-market-head__operations {
        grid-template-columns: minmax(190px, 1.08fr) minmax(0, 3fr);
    }
}

/* Live project conversation ------------------------------------------------
   The selected total remains unmistakable while a quiet, SNS-like exchange
   gives the open half of the banner a purpose. */
.mublo-production-request .production-market-head__index-top {
    grid-template-columns: minmax(0, 1fr) minmax(286px, 318px);
    gap: clamp(24px, 4cqi, 42px);
}

.mublo-production-request .production-market-head__intro {
    position: relative;
    z-index: 2;
}

.mublo-production-request .production-market-head__chat {
    position: relative;
    z-index: 2;
    display: grid;
    width: 100%;
    max-width: 318px;
    min-width: 0;
    grid-template-rows: auto minmax(0, 1fr);
    align-self: center;
    justify-self: end;
    gap: 7px;
    pointer-events: none;
}

.mublo-production-request .production-market-head__chat-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-inline: 4px 7px;
    color: var(--pr-muted);
    font-size: 8.5px;
    font-weight: 720;
    line-height: 1;
    letter-spacing: .055em;
    white-space: nowrap;
}

.mublo-production-request .production-market-head__chat-label > span,
.mublo-production-request .production-market-head__chat-label > b {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.mublo-production-request .production-market-head__chat-label > span > i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--pr-accent);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--pr-accent) 10%, transparent);
}

.mublo-production-request .production-market-head__chat-label > b {
    color: var(--pr-copy);
    font-size: 9px;
    font-weight: 680;
    letter-spacing: -.01em;
}

.mublo-production-request .production-market-head__chat-window {
    position: relative;
    height: 104px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 13%, #000 86%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, #000 13%, #000 86%, transparent 100%);
}

.mublo-production-request .production-market-head__chat-track {
    display: flex;
    min-width: 0;
    flex-direction: column;
    will-change: transform;
    animation: production-market-chat-flow 20s linear infinite;
}

.mublo-production-request .production-market-head__chat-group {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    gap: 7px;
    padding: 4px 0 11px;
}

.mublo-production-request .production-market-head__chat-message {
    display: inline-flex;
    width: max-content;
    max-width: 88%;
    min-height: 29px;
    align-items: center;
    gap: 9px;
    padding: 7px 11px;
    color: var(--pr-copy);
    border: 1px solid color-mix(in srgb, var(--pr-line) 86%, transparent);
    border-radius: 13px 13px 13px 4px;
    background: color-mix(in srgb, var(--pr-panel-soft) 76%, var(--pr-panel));
    box-shadow: 0 6px 18px color-mix(in srgb, var(--pr-ink) 4.5%, transparent);
    font-size: 10.5px;
    font-weight: 620;
    line-height: 1.25;
    letter-spacing: -.015em;
    white-space: nowrap;
}

.mublo-production-request .production-market-head__chat-message.is-maker {
    align-self: flex-end;
    color: var(--pr-ink);
    border-color: color-mix(in srgb, var(--pr-accent) 17%, var(--pr-line));
    border-radius: 13px 13px 4px 13px;
    background: color-mix(in srgb, var(--pr-accent) 8.5%, var(--pr-panel));
}

.mublo-production-request .production-market-head__chat-message.is-client {
    align-self: flex-start;
}

.mublo-production-request .production-market-head__chat-message > small {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 4px;
    color: var(--pr-muted);
    font-size: 8.5px;
    font-weight: 760;
    line-height: 1;
}

.mublo-production-request .production-market-head__chat-message > small > i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: currentColor;
}

.mublo-production-request .production-market-head__chat-message.is-maker > small {
    color: var(--pr-accent);
}

.mublo-production-request .production-market-head__chat-message > span {
    overflow: hidden;
    text-overflow: ellipsis;
}

.mublo-production-request .production-market-head__index-total,
.mublo-production-request .production-market-head__index-total.has-reset {
    background: color-mix(in srgb, var(--pr-accent) 4.8%, var(--pr-panel));
    box-shadow: inset 3px 0 0 color-mix(in srgb, var(--pr-accent) 84%, transparent);
}

.mublo-production-request .production-market-head__index-total b {
    color: var(--pr-ink);
    font-size: 14.5px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -.025em;
    opacity: 1;
}

.mublo-production-request .production-market-head__index-total > span > i {
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--pr-accent) 10%, transparent);
}

.mublo-production-request .production-market-head__index::after {
    animation: production-market-ambient-calm 24s ease-in-out infinite alternate;
}

@keyframes production-market-chat-flow {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(0, -50%, 0); }
}

@keyframes production-market-ambient-calm {
    from { opacity: .68; transform: translate3d(-4px, 1px, 0) scale(.99); }
    to { opacity: .84; transform: translate3d(5px, -2px, 0) scale(1.015); }
}

:is(html.dark, html[data-theme="dark"], html[data-bs-theme="dark"]) .mublo-production-request .production-market-head__chat-message {
    border-color: color-mix(in srgb, var(--pr-line) 92%, transparent);
    background: color-mix(in srgb, var(--pr-panel-soft) 72%, var(--pr-panel));
    box-shadow: 0 7px 20px rgba(0, 0, 0, .12);
}

:is(html.dark, html[data-theme="dark"], html[data-bs-theme="dark"]) .mublo-production-request .production-market-head__chat-message.is-maker {
    border-color: color-mix(in srgb, var(--pr-accent) 21%, var(--pr-line));
    background: color-mix(in srgb, var(--pr-accent) 11%, var(--pr-panel));
}

:is(html.dark, html[data-theme="dark"], html[data-bs-theme="dark"]) .mublo-production-request .production-market-head__index-total {
    background: color-mix(in srgb, var(--pr-accent) 7%, var(--pr-panel));
}

@container (max-width: 700px) {
    .mublo-production-request .production-market-head__index-top {
        grid-template-columns: minmax(0, 1fr);
    }

    .mublo-production-request .production-market-head__chat {
        display: none;
    }
}

@container (max-width: 520px) {
    .mublo-production-request .production-market-head__index-total b {
        font-size: 10.5px;
        font-weight: 800;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mublo-production-request .production-market-head__chat-track {
        transform: translate3d(0, -70px, 0);
        animation: none !important;
    }

    .mublo-production-request .production-market-head__index::after {
        animation: none !important;
    }
}

/* Overview filter selection ------------------------------------------------
   Only the currently viewed status receives the blue selection treatment. */
.mublo-production-request .production-market-head__index-total,
.mublo-production-request .production-market-head__index-total.has-reset {
    background: transparent;
    box-shadow: none;
    transition: background-color 160ms ease, box-shadow 160ms ease;
}

.mublo-production-request .production-market-head__total-hit {
    position: absolute;
    z-index: 3;
    inset: 0;
    display: block;
    border: 0;
    background: transparent;
    color: transparent;
    text-decoration: none;
}

.mublo-production-request .production-market-head__total-hit:focus-visible,
.mublo-production-request .production-market-head__stage-hit:focus-visible {
    outline: 2px solid var(--pr-accent);
    outline-offset: -4px;
}

.mublo-production-request .production-market-head__index-total:has(.production-market-head__total-hit:hover) {
    background: color-mix(in srgb, var(--pr-accent) 3%, transparent);
}

.mublo-production-request .production-market-head__index-total.is-selected,
.mublo-production-request .production-market-head__index-total.is-selected:has(.production-market-head__total-hit:hover),
.mublo-production-request .production-market-head__stages > div.is-selected,
.mublo-production-request .production-market-head__stages > div.is-selected:has(.production-market-head__stage-hit:hover) {
    background: color-mix(in srgb, var(--pr-accent) 4.8%, var(--pr-panel));
    box-shadow: inset 3px 0 0 color-mix(in srgb, var(--pr-accent) 84%, transparent);
}

.mublo-production-request .production-market-head__index-total .production-market-head__count > strong,
.mublo-production-request .production-market-head__stages > div.is-active .production-market-head__count > strong {
    color: var(--pr-ink);
}

.mublo-production-request .production-market-head__index-total.is-selected .production-market-head__count > strong,
.mublo-production-request .production-market-head__stages > div.is-selected .production-market-head__count > strong {
    color: var(--pr-accent);
}

.mublo-production-request .production-market-head__stages > div.is-selected .production-market-head__stage-mark {
    color: var(--pr-ink);
}

:is(html.dark, html[data-theme="dark"], html[data-bs-theme="dark"]) .mublo-production-request .production-market-head__index-total {
    background: transparent;
}

:is(html.dark, html[data-theme="dark"], html[data-bs-theme="dark"]) .mublo-production-request .production-market-head__index-total.is-selected,
:is(html.dark, html[data-theme="dark"], html[data-bs-theme="dark"]) .mublo-production-request .production-market-head__index-total.is-selected:has(.production-market-head__total-hit:hover),
:is(html.dark, html[data-theme="dark"], html[data-bs-theme="dark"]) .mublo-production-request .production-market-head__stages > div.is-selected,
:is(html.dark, html[data-theme="dark"], html[data-bs-theme="dark"]) .mublo-production-request .production-market-head__stages > div.is-selected:has(.production-market-head__stage-hit:hover) {
    background: color-mix(in srgb, var(--pr-accent) 7%, var(--pr-panel));
}

/* Stable result area and unified overview labels ---------------------------
   Keep the board frame stable without stretching a single result row. */
.mublo-production-request-list {
    min-height: 692px;
}

.mublo-production-request .production-market-head__index-total b,
.mublo-production-request .production-market-head__stages .production-market-head__stage-mark {
    color: var(--pr-ink);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: .01em;
}

@container (max-width: 520px) {
    .mublo-production-request-list {
        min-height: 671px;
    }

    .mublo-production-request .production-market-head__index-total b,
    .mublo-production-request .production-market-head__stages .production-market-head__stage-mark {
        font-size: 11.5px;
        font-weight: 700;
        line-height: 1.35;
        letter-spacing: 0;
    }
}

/* Board title lead ---------------------------------------------------------
   The short rule now belongs to the board title instead of a separate label. */
.mublo-production-request .production-market-head__title-row {
    display: flex;
    min-width: 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
}

.mublo-production-request .production-market-head__title-row > i {
    width: 34px;
    height: 2px;
    flex: none;
    border-radius: 99px;
    background: var(--pr-accent);
}

.mublo-production-request .production-market-head__title-row > h1 {
    min-width: 0;
}

.mublo-production-request .production-market-head__title-row + p {
    margin-left: 0;
}

@container (max-width: 520px) {
    .mublo-production-request .production-market-head__title-row {
        gap: 7px;
    }

    .mublo-production-request .production-market-head__title-row > i {
        width: 24px;
    }

    .mublo-production-request .production-market-head__title-row + p {
        margin-left: 0;
    }
}

/* Brief-to-conversation hero -----------------------------------------------
   Real request examples connect the board identity to the live project chat. */
.mublo-production-request .production-market-head__intro {
    isolation: isolate;
}

.mublo-production-request .production-market-head__intro::before {
    display: none;
    content: none;
}

.mublo-production-request .production-market-head__title-row > i {
    position: relative;
    width: 98px;
    overflow: hidden;
    background: color-mix(in srgb, var(--pr-accent) 10%, var(--pr-line));
}

.mublo-production-request .production-market-head__title-row > i::after {
    position: absolute;
    inset: 0 auto 0 0;
    width: 40px;
    border-radius: inherit;
    background: linear-gradient(90deg, transparent 0%, color-mix(in srgb, var(--pr-accent) 56%, transparent) 24%, var(--pr-accent) 58%, transparent 100%);
    content: "";
    animation: production-title-signal 3.6s linear infinite;
    will-change: transform, opacity;
}

.mublo-production-request .production-market-head__title-row > i::before {
    display: none;
}

.mublo-production-request .production-market-head__briefs {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
}

.mublo-production-request .production-market-head__brief-label {
    flex: 0 0 auto;
    color: var(--pr-muted);
    font-size: 9.5px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -.01em;
    white-space: nowrap;
}

.mublo-production-request .production-market-head__brief-options {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 6px;
}

.mublo-production-request .production-market-head__brief-options > button {
    appearance: none;
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    color: var(--pr-copy);
    border: 1px solid color-mix(in srgb, var(--pr-line) 92%, transparent);
    border-radius: 999px;
    outline: 0;
    background: color-mix(in srgb, var(--pr-panel-soft) 72%, var(--pr-panel));
    box-shadow: 0 1px 0 color-mix(in srgb, var(--pr-ink) 4%, transparent);
    font: inherit;
    font-size: 10.5px;
    font-weight: 650;
    line-height: 1;
    letter-spacing: -.015em;
    white-space: nowrap;
    cursor: pointer;
    transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.mublo-production-request .production-market-head__brief-options > button:hover {
    color: var(--pr-ink);
    border-color: color-mix(in srgb, var(--pr-accent) 24%, var(--pr-line));
    transform: translateY(-1px);
}

.mublo-production-request .production-market-head__brief-options > button[aria-pressed="true"] {
    color: var(--pr-accent);
    border-color: color-mix(in srgb, var(--pr-accent) 34%, var(--pr-line));
    background: color-mix(in srgb, var(--pr-accent) 7%, var(--pr-panel));
}

.mublo-production-request .production-market-head__brief-options > button:focus-visible {
    outline: 2px solid color-mix(in srgb, var(--pr-accent) 72%, transparent);
    outline-offset: 2px;
}

.mublo-production-request .production-market-head__chat-window.is-switching {
    animation: production-chat-scenario-swap 320ms ease both;
}

@keyframes production-title-signal {
    0% { opacity: 0; transform: translate3d(-110%, 0, 0); }
    12% { opacity: 1; }
    84% { opacity: 1; }
    100% { opacity: 0; transform: translate3d(350%, 0, 0); }
}

@keyframes production-chat-scenario-swap {
    0%, 100% { opacity: 1; transform: translateY(0); }
    48% { opacity: .42; transform: translateY(2px); }
}

:is(html.dark, html[data-theme="dark"], html[data-bs-theme="dark"]) .mublo-production-request .production-market-head__brief-options > button {
    border-color: color-mix(in srgb, var(--pr-line) 94%, transparent);
    background: color-mix(in srgb, var(--pr-panel-soft) 68%, var(--pr-panel));
    box-shadow: none;
}

:is(html.dark, html[data-theme="dark"], html[data-bs-theme="dark"]) .mublo-production-request .production-market-head__brief-options > button[aria-pressed="true"] {
    border-color: color-mix(in srgb, var(--pr-accent) 37%, var(--pr-line));
    background: color-mix(in srgb, var(--pr-accent) 13%, var(--pr-panel));
}

@container (max-width: 520px) {
    .mublo-production-request .production-market-head__title-row > i {
        width: 68px;
    }

    .mublo-production-request .production-market-head__briefs {
        display: grid;
        gap: 7px;
        margin-top: 12px;
    }

    .mublo-production-request .production-market-head__brief-label {
        font-size: 9px;
    }

    .mublo-production-request .production-market-head__brief-options {
        overflow-x: auto;
        margin-right: -17px;
        padding: 0 17px 2px 0;
        scrollbar-width: none;
    }

    .mublo-production-request .production-market-head__brief-options::-webkit-scrollbar {
        display: none;
    }

    .mublo-production-request .production-market-head__brief-options > button {
        flex: 0 0 auto;
        min-height: 27px;
        padding-inline: 9px;
        font-size: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mublo-production-request .production-market-head__title-row > i::after {
        width: 46%;
        opacity: 1;
        background: var(--pr-accent);
        transform: none;
        animation: none !important;
    }

    .mublo-production-request .production-market-head__chat-window.is-switching {
        animation: none !important;
    }
}

/* Search rail typography --------------------------------------------------
   Reuse the same Korean type rhythm as the request rows below. */
.mublo-production-request .production-market-controls__heading > strong {
    color: var(--pr-ink);
    font-size: 17px;
    font-weight: 770;
    line-height: 1.35;
    letter-spacing: -.025em;
}

.mublo-production-request .production-market-controls__heading > span {
    color: var(--pr-copy);
    font-size: 12.5px;
    font-weight: 530;
    line-height: 1.5;
    letter-spacing: -.012em;
}

.mublo-production-request .production-market-controls .production-request-search select,
.mublo-production-request .production-market-controls .production-request-search input,
.mublo-production-request .production-market-controls .production-request-search button,
.mublo-production-request .production-market-controls .production-request-write {
    color: var(--pr-ink);
    font-family: inherit;
    font-size: 13.5px;
    font-weight: 680;
    line-height: 1.35;
    letter-spacing: -.012em;
}

.mublo-production-request .production-market-controls .production-request-search input {
    color: var(--pr-copy);
    font-weight: 550;
}

.mublo-production-request .production-market-controls .production-request-search input::placeholder {
    color: var(--pr-muted);
    font-weight: 550;
    opacity: 1;
}

.mublo-production-request .production-market-controls .production-request-write.is-disabled {
    color: var(--pr-muted);
}

@container (max-width: 520px) {
    .mublo-production-request .production-market-controls__heading > strong {
        font-size: 15.5px;
    }

    .mublo-production-request .production-market-controls__heading > span {
        font-size: 11.5px;
    }

    .mublo-production-request .production-market-controls .production-request-search select,
    .mublo-production-request .production-market-controls .production-request-search input,
    .mublo-production-request .production-market-controls .production-request-search button,
    .mublo-production-request .production-market-controls .production-request-write {
        font-size: 12.5px;
    }
}

.mublo-production-request .production-market-controls .production-request-write:not(.is-disabled),
.mublo-production-request .production-market-controls .production-request-write:not(.is-disabled):visited,
.mublo-production-request .production-market-controls .production-request-write:not(.is-disabled):hover {
    color: var(--pr-accent-ink);
}

.mublo-production-request .production-market-controls .production-request-search select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 34px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='m3 4.5 3 3 3-3' fill='none' stroke='%236d7480' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 12px 12px;
}

/* Workflow palette --------------------------------------------------------
   "In progress" uses a neutral graphite tone; blue remains selection UI. */
.mublo-production-request {
    --pr-active: color-mix(in srgb, var(--pr-muted) 72%, var(--pr-panel));
}

.mublo-production-request-manager__status-option:nth-child(2):is(.is-selected, :has(input:checked)) {
    --pr-active-selected: color-mix(in srgb, var(--pr-active) 74%, var(--pr-ink));
    color: var(--pr-active-selected);
    border-color: var(--pr-active-selected);
    background: color-mix(in srgb, var(--pr-active) 15%, var(--pr-panel));
    box-shadow:
        inset 3px 0 0 var(--pr-active-selected),
        inset 0 0 0 1px color-mix(in srgb, var(--pr-active-selected) 16%, transparent);
    font-weight: 740;
}

.mublo-production-request-manager__status-option:nth-child(2):is(.is-selected, :has(input:checked)) .mublo-production-request-manager__status-icon {
    background: var(--pr-active-selected);
    box-shadow:
        inset 0 0 0 2px var(--pr-panel),
        0 0 0 4px color-mix(in srgb, var(--pr-active-selected) 16%, transparent);
}
