.photo-gallery {
    width: 100%;
    text-align: center;
    padding: 50px 20px;
    background: #fff;
}

.gallery-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.gallery-subtitle {
    color: #555;
    font-size: 20px;
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    justify-items: center;
    padding: 0 40px;
}

.gallery-card {
    width: 100%;
    max-width: 230px;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform .3s ease, box-shadow .3s ease;
}

.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
