/* gallery.css - Gallery Page Styling */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}
.gallery .item {
    background: #eaf6ff;
    border: 3px solid #4dbcff;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding: 10px;
}
.gallery .item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 6px;
    background: #ddd;
}
