.gallery-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 48px 0 64px 0;
    width: 100%;
}

.gallery-title {
    text-align: center;
    font-size: 2.2em;
    color: #790502;
    margin-bottom: 32px;
    letter-spacing: 0.04em;
    font-weight: bold;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 260px));
    grid-template-rows: repeat(2, 180px);
    gap: 28px;
    justify-content: center;
    align-items: center;
}

.photo-item {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 6px 24px rgba(121,5,2,0.10);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.2s;
}

.photo-item:hover {
    box-shadow: 0 10px 32px rgba(121,5,2,0.18);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.photo-item:hover img {
    transform: scale(1.08);
}

/* Responsive: stack grid on small screens */
@media (max-width: 700px) {
    .photo-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        gap: 18px;
    }
    .photo-item {
        min-width: 0;
        min-height: 180px;
        height: 38vw;
        max-height: 220px;
    }
}