/* CMS Content Styles
   Ensures CMS-uploaded images and content match the site design */

/* Gallery images uploaded via CMS */
.photo-strip img[src^="/images/uploads/"] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* About section photo uploaded via CMS */
.about-image-wrap img[src^="/images/uploads/"] {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
}

/* Instagram images uploaded via CMS */
.instagram-post img[src^="/images/uploads/"] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
