
/* Version 63 – Testing pass safeguards */

/* Prevent horizontal scroll on mobile */
body{
overflow-x:hidden;
}

/* Ensure images scale safely */
img{
max-width:100%;
height:auto;
}

/* Ensure gallery stays aligned */
.gallery{
align-items:center;
}

/* Prevent long text overflow */
p, h1, h2, h3, h4{
word-wrap:break-word;
}
