.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
}

.gallery-card img {
    display: block;
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: 50% 50%;
    transition: transform 0.5s ease;
    box-shadow: rgba(0, 0, 0, 0.826) 0px 5px 15px;
}

.gallery-card:hover img {
    transform: scale(1.025);
}