.builder-success {
    margin-bottom: 18px;
    padding: 12px 15px;
    background: #e7f8d7;
    border: 1px solid #74a94f;
    color: #274d17;
    font-size: 13px;
    font-weight: 600;
}

.structure-lock {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: center;
    margin-bottom: 18px;
    padding: 15px 18px;
    background: #fff6cb;
    border: 1px solid #d4b700;
}

.structure-lock strong {
    background: #111216;
    color: #e9ff16;
    padding: 7px 10px;
    font-size: 11px;
}

.structure-lock span {
    font-size: 12px;
    line-height: 1.45;
}

.current-hero-preview {
    width: min(100%, 620px);
    aspect-ratio: 16 / 6;
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid #c8c9cc;
    background: #111;
}

.current-hero-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.remove-check {
    display: flex !important;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    font-weight: 500 !important;
}

.remove-check input {
    width: auto !important;
    box-shadow: none !important;
}

.edit-item-image-fields {
    display: grid;
    gap: 9px;
}

.edit-item-image-row {
    display: grid;
    grid-template-columns: 54px minmax(150px, 1fr) minmax(230px, 1.4fr);
    gap: 14px;
    align-items: center;
    padding: 9px 11px;
    border: 1px solid #d4d5d8;
    background: #fafafa;
}

.edit-image-preview {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #191a1d;
    color: #fff;
    font-weight: 700;
}

.edit-image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.edit-item-meta strong,
.edit-item-meta small {
    display: block;
}

.edit-item-meta strong {
    font-size: 13px;
}

.edit-item-meta small {
    margin-top: 2px;
    color: #777980;
    font-size: 10px;
}

.edit-item-image-row input[type="file"] {
    width: 100%;
}

.items-card textarea[readonly] {
    background: #ededeb;
    color: #696a70;
    cursor: not-allowed;
}

@media (max-width: 720px) {
    .structure-lock {
        grid-template-columns: 1fr;
    }

    .edit-item-image-row {
        grid-template-columns: 54px 1fr;
    }

    .edit-item-image-row input[type="file"] {
        grid-column: 1 / -1;
    }
}
