/* Automatically adds a gallery frame and matte to all WordPress Gallery images */
.wp-block-gallery .wp-block-image img {
background-color: #ffffff; /* The inner white matte board */
padding: 15px; /* Width of the matte board around the art */
border: 1px solid #1a1a1a; /* The crisp, dark outer frame edge */
box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.12); /* Subtle shadow for museum depth */
box-sizing: border-box;
transition: transform 0.3s ease; /* Smooth motion if you want a hover effect */
}

/* Optional: Slight lift effect when someone hovers over a framed piece */
.wp-block-gallery .wp-block-image img:hover {
transform: translateY(-3px);
box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.18);
}