

/* Styles spécifiques pour l'éditeur Gutenberg */
.hero-editor {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    flex-direction: row;
}

.hero-content-editor {
    flex: 1;
    min-width: 0;
}

.hero-image-editor {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-editor .components-base-control {
    margin-bottom: 20px;
}

.hero-editor .components-button {
    margin-top: 10px;
    width: 100%;
}

.hero-editor img {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 10px;
    display: block;
}

/* Responsive pour l'éditeur */
@media (max-width: 782px) {
    .hero-editor {
        flex-direction: column;
    }
    
    .hero-editor img {
        max-width: 100%;
    }
}

