.related-upload-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.related-upload-grid .file-drop {
    display: flex;
    flex-direction: column;
    gap: .65rem;
    text-align: left;
}

.related-upload-grid .file-drop strong {
    color: var(--text);
    font-size: .92rem;
}

.related-upload-grid .file-drop span,
.upload-notice p {
    color: var(--muted);
    line-height: 1.5;
}

.related-upload-grid .file-drop input {
    margin: .25rem 0;
}

.upload-notice {
    grid-column: 1 / -1;
    padding: 1rem;
    border-radius: 13px;
    background: #eef0ff;
    color: #3846b3;
}

.upload-notice p {
    margin: .35rem 0 0;
}

.related-upload-grid > .button {
    grid-column: 1 / -1;
    justify-self: start;
}

.export-list-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-profile .panel-head {
    margin-bottom: 0;
}

.profile-image {
    width: 92px;
    height: 92px;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: var(--surface-2);
}

.source-editor {
    border-left: 4px solid var(--primary);
}

.change-value {
    max-width: 320px;
    overflow-wrap: anywhere;
    white-space: normal;
}

@media (prefers-color-scheme: dark) {
    .upload-notice {
        background: #252d59;
        color: #cfd4ff;
    }
}

@media (max-width: 900px) {
    .related-upload-grid,
    .export-list-three {
        grid-template-columns: 1fr;
    }
}
