.page-gallery .gallery-card {
    overflow: hidden;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.page-gallery .gallery-card:hover {
    transform: translateY(-4px);
    border-color: #9fc3f4;
    box-shadow: 0 28px 70px rgba(11, 45, 102, .12);
}

.page-gallery .gallery-card img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.page-gallery .gallery-card .card-body {
    min-height: 86px;
    display: grid;
    align-content: center;
}

@media (max-width: 640px) {
    .page-gallery .section .container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .page-gallery .gallery-card .card-body {
        min-height: 72px;
        padding: 14px;
    }

    .page-gallery .gallery-card h3 {
        font-size: 14px;
        line-height: 1.25;
    }
}
