/* ============================================
   FOTO DE CAPA - PARTE 2
   ============================================ */
.artist-form-parte2-wrapper .field-image {
    margin-bottom: 32px;
}


#tab-parte2 .field-group {
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.artist-form-parte2-wrapper .image-cropper-wrapper {
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.artist-form-parte2-wrapper .image-cropper-wrapper .image-preview {
    width: 100%;
    height: auto;
    border: 3px dashed #d1d5db;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafc;
    transition: all 0.3s ease;
    aspect-ratio: 16 / 9;
}

.artist-form-parte2-wrapper .image-cropper-wrapper .image-preview:hover {
    border-color: #6c63ff;
    background: #f5f4ff;
}

.artist-form-parte2-wrapper .image-cropper-wrapper .image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-form-parte2-wrapper .image-cropper-wrapper .button {
    margin-right: 8px;
}

.artist-form-parte2-wrapper .image-cropper-wrapper .description {
    font-size: 13px;
    color: #8e8ea0;
    margin-top: 8px;
    font-style: italic;
}

/* ============================================
   CROPPER MODAL - CAPA
   ============================================ */
#cropper-modal-capa {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 99999;
    padding: 20px;
    overflow-y: auto;
}

#cropper-modal-capa > div {
    max-width: 800px;
    margin: 50px auto;
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

#cropper-modal-capa h3 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 16px 0;
    color: #1a1a2e;
}

#cropper-modal-capa .cropper-container {
    max-height: 500px;
}

#cropper-modal-capa #cropper-image-capa {
    display: block;
    max-width: 100%;
    max-height: 500px;
    margin: 0 auto;
}

#cropper-modal-capa .button-cancel {
    background: #f0f0f0;
    color: #333;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-family: 'Source Sans Pro', sans-serif;
    transition: all 0.2s ease;
}

#cropper-modal-capa .button-cancel:hover {
    background: #e0e0e0;
}