.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.2rem;
    margin-bottom: 2rem;
    width: 100%;
    max-width: 100%;
}

#photography .gallery-grid a {
    text-decoration: none;
    transition: transform 0.3s ease, filter 0.3s ease;
    display: block;
    width: 100%;
}

#photography .gallery-grid a:hover {
    transform: scale(1.04);
    filter: brightness(1.08);
}

#photography .image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    overflow: hidden;
    padding: 3px;
}

#photography .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}