/**
 * FRhurt Brushstroke Effect Styles
 * Version: 2.0.1
 */

/* Wrapper SVG styling */
.brushstroke-wrapper {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Ensure replaced images don't show */
img[data-brushstroke-processed="true"] {
    display: none !important;
}

/* Class to disable effect on specific images */
.no-brush-edge,
.brush-edge-none {
    /* These will be skipped by JS */
}

/* Optional: Add subtle shadow to make edges feel more "painted" */
.brushstroke-wrapper {
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.15));
}

/* Responsive: ensure SVGs scale properly in containers */
.wp-block-image .brushstroke-wrapper,
.entry-content .brushstroke-wrapper,
article .brushstroke-wrapper {
    width: 100%;
    max-width: 100%;
}

/* Alignment classes */
.aligncenter .brushstroke-wrapper,
.brushstroke-wrapper.aligncenter {
    margin-left: auto;
    margin-right: auto;
}

.alignleft .brushstroke-wrapper,
.brushstroke-wrapper.alignleft {
    float: left;
    margin-right: 1.5em;
    margin-bottom: 1em;
}

.alignright .brushstroke-wrapper,
.brushstroke-wrapper.alignright {
    float: right;
    margin-left: 1.5em;
    margin-bottom: 1em;
}
