/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Jan 18 2026 | 08:26:52 */
/* =========================================
   FIX DEFINITIVO – BORDE AJUSTADO A IMAGEN
   ========================================= */

/* Reset total del figure */
figure.wp-block-image.image-style-2 {
    margin: 0 auto !important;
    padding: 0 !important;
    border: none !important; /* ← quitamos el borde del contenedor */
    box-sizing: border-box;
    width: auto !important;
}

/* Imagen = tamaño real + borde correcto */
figure.wp-block-image.image-style-2 img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;

    border: 3px solid #9aff00; /* ← borde AQUÍ */
    box-sizing: border-box;

    margin: 0 auto !important;
    padding: 0 !important;
}

/* Elimina block-gap solo para esta imagen */
.entry-content.is-layout-constrained
> figure.wp-block-image.image-style-2 {
    margin-block-start: 0 !important;
    margin-block-end: 12px !important;
}

/* Tablet / móvil */
@media (max-width: 1024px) {
    .entry-content.is-layout-constrained
    > figure.wp-block-image.image-style-2 {
        margin-block-start: 0 !important;
    }
}
