.social-wall-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 20px 0;
}
.social-wall-gallery img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s ease;
}
.social-wall-gallery img:hover {
    transform: scale(1.05);
    cursor: pointer;
}