.video-production-create-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
}

.video-production-form-step {
    padding: 1.3rem 1.35rem;
}

.video-production-form-step--workflow {
    grid-row: span 2;
    border-right: 1px solid var(--vp-border);
}

.video-production-form-step--source {
    align-self: start;
}

.video-production-form-step--social {
    border-top: 1px solid var(--vp-border);
}

.video-production-step-heading {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.video-production-step-heading > span {
    display: grid;
    flex: 0 0 auto;
    width: 1.8rem;
    height: 1.8rem;
    place-items: center;
    border: 1px solid rgba(97, 192, 191, 0.4);
    border-radius: 50%;
    background: rgba(97, 192, 191, 0.11);
    color: var(--vp-teal);
    font-size: 0.78rem;
    font-weight: 800;
}

.video-production-step-heading h3 {
    margin: 0;
    color: var(--vp-text);
    font-size: 1.02rem;
}

.video-production-step-heading p {
    margin: 0.22rem 0 0;
    color: var(--vp-muted);
    font-size: 0.86rem;
    line-height: 1.45;
}

.video-production-workflow-groups {
    display: grid;
    gap: 1.05rem;
}

.video-production-workflow-group {
    display: grid;
    gap: 0.55rem;
}

.video-production-workflow-group__label {
    color: var(--vp-muted);
    font-size: 0.68rem;
    font-weight: 750;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.video-production-workflow-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
}

.video-production-workflow-card {
    display: grid;
    min-height: 7.3rem;
    align-content: start;
    gap: 0.42rem;
    border: 1px solid var(--vp-border);
    border-radius: 0.85rem;
    padding: 0.85rem;
    background: var(--vp-bg-soft);
    color: var(--vp-text);
    text-align: left;
    cursor: pointer;
    transition: border-color 150ms ease, background-color 150ms ease, transform 150ms ease;
}

.video-production-workflow-card:hover:not(:disabled) {
    border-color: rgba(97, 192, 191, 0.3);
    transform: translateY(-1px);
}

.video-production-workflow-card.is-selected {
    border-color: rgba(97, 192, 191, 0.72);
    background: linear-gradient(145deg, rgba(97, 192, 191, 0.16), rgba(97, 192, 191, 0.055));
    box-shadow: 0 0 0 1px rgba(97, 192, 191, 0.12) inset;
}

.video-production-workflow-card strong {
    color: var(--vp-text);
    font-size: 0.9rem;
}

.video-production-workflow-card span {
    color: var(--vp-muted);
    font-size: 0.77rem;
    line-height: 1.45;
}

.video-production-source-switch,
.video-production-filter-bar {
    display: flex;
    gap: 0.28rem;
    border: 1px solid var(--vp-border);
    border-radius: 0.75rem;
    padding: 0.25rem;
    background: rgba(0, 0, 0, 0.16);
}

.video-production-source-switch {
    margin-bottom: 0.8rem;
}

.video-production-source-switch button,
.video-production-filter-bar button {
    flex: 1;
    min-height: 2.15rem;
    border: 0;
    border-radius: 0.55rem;
    padding: 0.45rem 0.6rem;
    background: transparent;
    color: var(--vp-muted);
    font-weight: 700;
    cursor: pointer;
}

.video-production-source-switch button.is-selected,
.video-production-filter-bar button.is-selected {
    background: rgba(97, 192, 191, 0.15);
    color: #b9f1ee;
    box-shadow: 0 0 0 1px rgba(97, 192, 191, 0.18) inset;
}

.video-production-field {
    display: grid;
    gap: 0.42rem;
    color: var(--vp-text);
    font-size: 0.84rem;
    font-weight: 650;
}

.video-production-field > small,
.video-production-help {
    color: var(--vp-muted);
    font-size: 0.76rem;
    font-weight: 400;
    line-height: 1.45;
}

.video-production-help {
    margin: 0.55rem 0 0;
}

.video-production-page input,
.video-production-page select,
.video-production-page textarea {
    width: 100%;
    min-height: 2.65rem;
    border: 1px solid rgba(250, 227, 217, 0.17);
    border-radius: 0.68rem;
    padding: 0.68rem 0.78rem;
    background: rgba(5, 12, 19, 0.78);
    color: var(--vp-text);
    font: inherit;
    font-weight: 450;
    transition: border-color 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}

.video-production-page input::placeholder,
.video-production-page textarea::placeholder {
    color: rgba(232, 238, 239, 0.4);
}

.video-production-page input:focus,
.video-production-page select:focus,
.video-production-page textarea:focus {
    border-color: rgba(97, 192, 191, 0.66);
    background: rgba(7, 15, 23, 0.96);
    box-shadow: 0 0 0 3px rgba(97, 192, 191, 0.09);
}

.video-production-page textarea {
    min-height: 6.5rem;
    resize: vertical;
    line-height: 1.5;
}

.video-production-upload-zone {
    position: relative;
    display: grid;
    min-height: 10rem;
    place-content: center;
    justify-items: center;
    gap: 0.35rem;
    overflow: hidden;
    border: 1px dashed rgba(97, 192, 191, 0.38);
    border-radius: 0.9rem;
    padding: 1rem;
    background: rgba(97, 192, 191, 0.045);
    color: var(--vp-text);
    text-align: center;
    cursor: pointer;
    transition: border-color 150ms ease, background-color 150ms ease;
}

.video-production-upload-zone:hover,
.video-production-upload-zone.has-file {
    border-color: rgba(97, 192, 191, 0.72);
    background: rgba(97, 192, 191, 0.085);
}

.video-production-file-input {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.video-production-upload-zone__icon {
    display: grid;
    width: 2.4rem;
    height: 2.4rem;
    place-items: center;
    margin-bottom: 0.2rem;
    border-radius: 50%;
    background: rgba(97, 192, 191, 0.15);
    color: var(--vp-teal);
    font-size: 1.25rem;
    font-weight: 800;
}

.video-production-upload-zone strong {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.video-production-upload-zone small {
    max-width: 34ch;
    color: var(--vp-muted);
    line-height: 1.4;
}

.video-production-inline-note {
    display: grid;
    gap: 0.28rem;
    border: 1px solid rgba(240, 199, 117, 0.25);
    border-radius: 0.75rem;
    margin-top: 0.65rem;
    padding: 0.8rem;
    background: rgba(240, 199, 117, 0.07);
    color: #ffe4ad;
}

.video-production-inline-note span {
    color: var(--vp-muted);
    font-size: 0.8rem;
    line-height: 1.45;
}

.video-production-targets {
    min-width: 0;
    margin: 0;
    border: 0;
    padding: 0;
}

.video-production-targets legend {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.video-production-target-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
}

.video-production-target {
    position: relative;
    display: grid;
    gap: 0.12rem;
    border: 1px solid var(--vp-border);
    border-radius: 0.72rem;
    padding: 0.7rem;
    background: var(--vp-bg-soft);
    cursor: pointer;
}

.video-production-target.is-selected {
    border-color: rgba(97, 192, 191, 0.58);
    background: rgba(97, 192, 191, 0.11);
}

.video-production-target input {
    position: absolute;
    width: 1px;
    min-height: 1px;
    opacity: 0;
}

.video-production-target strong {
    color: var(--vp-text);
    font-size: 0.8rem;
}

.video-production-target span {
    color: var(--vp-muted);
    font-size: 0.7rem;
}

.video-production-options {
    margin-top: 0.8rem;
    border: 1px solid var(--vp-border);
    border-radius: 0.8rem;
    background: rgba(255, 255, 255, 0.02);
}

.video-production-options summary,
.video-production-support-details summary {
    cursor: pointer;
    list-style: none;
}

.video-production-options summary::-webkit-details-marker,
.video-production-support-details summary::-webkit-details-marker {
    display: none;
}

.video-production-options summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.78rem;
    color: var(--vp-text);
    font-size: 0.82rem;
    font-weight: 700;
}

.video-production-options summary::after,
.video-production-support-details summary::after {
    color: var(--vp-teal);
    content: "+";
    font-size: 1.15rem;
}

.video-production-options[open] summary::after,
.video-production-support-details[open] summary::after {
    content: "–";
}

.video-production-options summary small {
    margin-left: auto;
    color: var(--vp-muted);
    font-weight: 500;
}

.video-production-options__body {
    display: grid;
    gap: 0.8rem;
    border-top: 1px solid var(--vp-border);
    padding: 0.9rem;
}

.video-production-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
}

.video-production-approval-toggle {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    border: 1px solid var(--vp-border);
    border-radius: 0.72rem;
    padding: 0.75rem;
    background: var(--vp-bg-soft);
    cursor: pointer;
}

.video-production-approval-toggle input {
    width: 1rem;
    min-height: 1rem;
    margin-top: 0.12rem;
    accent-color: var(--vp-teal);
}

.video-production-approval-toggle span {
    display: grid;
    gap: 0.15rem;
}

.video-production-approval-toggle strong {
    color: var(--vp-text);
    font-size: 0.82rem;
}

.video-production-approval-toggle small {
    color: var(--vp-muted);
    font-size: 0.73rem;
    line-height: 1.4;
}

.video-production-upload-progress {
    display: grid;
    gap: 0.5rem;
    border-top: 1px solid var(--vp-border);
    padding: 1rem 1.35rem;
    background: rgba(97, 192, 191, 0.055);
}

.video-production-upload-progress > div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: var(--vp-text);
}

.video-production-upload-progress span,
.video-production-upload-progress small {
    color: var(--vp-muted);
}

.video-production-upload-progress progress {
    width: 100%;
    height: 0.55rem;
    border: 0;
    overflow: hidden;
    border-radius: 999px;
    accent-color: var(--vp-teal);
}

.video-production-create-panel__footer {
    border-top: 1px solid var(--vp-border);
    background: rgba(0, 0, 0, 0.12);
}

.video-production-create-panel__footer > div {
    display: grid;
    gap: 0.12rem;
}

.video-production-create-panel__footer span,
.video-production-create-panel__footer small {
    color: var(--vp-muted);
    font-size: 0.75rem;
}

.video-production-create-panel__footer strong {
    color: var(--vp-text);
}
