.v2-file-upload {
    display: grid;
    gap: var(--s-2);
}

.v2-file-dropzone {
    display: grid;
    place-items: center;
    min-height: 112px;
    padding: var(--s-5);
    border: 1px dashed var(--border-strong);
    border-radius: var(--r-lg);
    background: var(--bg-subtle);
    cursor: pointer;
    text-align: center;
    transition: border-color .16s ease, background .16s ease;
}

.v2-file-dropzone:hover,
.v2-file-dropzone.is-dragover {
    border-color: var(--accent);
    background: var(--accent-soft);
}

.v2-file-dropzone input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
}

.v2-file-dropzone-main {
    display: block;
    color: var(--text-primary);
    font-size: var(--text-md);
    font-weight: var(--weight-semibold);
}

.v2-file-dropzone-sub {
    display: block;
    margin-top: 4px;
    color: var(--text-secondary);
    font-size: var(--text-sm);
}

.v2-file-list {
    display: grid;
    gap: 4px;
    color: var(--text-secondary);
    font-size: var(--text-sm);
}

.v2-file-field-hint {
    margin: 5px 0 0;
    color: var(--text-tertiary);
    font-size: var(--text-xs);
}
