/* Gallery Container */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 4fr));
    gap: 10px;
    max-width: 900px;
    margin: auto;
}

/* Gallery Items */

.gallery-item {

    overflow: hidden;

    border-radius: 10px;

    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

    transition: transform 0.3s ease-in-out;

}

.gallery-item img {

    width: 100%;

    height: 271px;

    display: block;
	border-radius: 10px;

}

/* Responsive Design */

@media (max-width: 600px) {

    .gallery {

        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));

    }

}
.gallery-item div.desc {
  
  padding: 10px;
  font-family: Helvetica Neue,Helvetica,Arial,sans-serif; 
  line-height: 18px;
  font-size: 16px;
  text-rendering: optimizeLegibility;
  color: #333;
  font-weight: 400;
  text-align: justify;
   overflow-x: hidden;
}
