.artcurator-input-block {
	margin-top:20px;
    width: 100%;
    border: 1px solid #e4e4e7;
    border-radius: 12px;
    padding: 14px;
    background: #fafafa;
    box-sizing: border-box;
}

/* Top label */
.artcurator-input-block .block-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 10px;
	text-align:center;
}

/* Title input (primary) */
.artcurator-input {
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    padding: 20px 20px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    outline: none;
    margin-bottom: 8px;
}

/* References input (secondary) */
.artcurator-ref-input {
	
    width: 100%;
    font-size: 12.5px;
    padding: 7px 10px;
    border: 1px dashed #d1d5db;
    border-radius: 6px;
    background: #fafafa;
    color: #374151;
	
	font-weight: 400;
    letter-spacing: 0.02em;
}
.artcurator-ref-input::placeholder {
    color: #9ca3af;
    font-style: italic;
}

/* Focus polish */
.artcurator-input,
.artcurator-ref-input {
    transition: 
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.artcurator-input:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.18);
}

.artcurator-ref-input:focus {
    border-color: #a5b4fc;
    background: #fff;
    box-shadow: 0 0 0 2px rgba(165, 180, 252, 0.25);
}

/* Mobile tightening */
@media (max-width: 480px) {
    .artcurator-input {
        font-size: 15px;
        padding: 11px;
    }

    .artcurator-ref-input {
        font-size: 12px;
        padding: 7px 9px;
    }
}