/* Extracted from Class-Photos.html <style> id=prodogz-photo-gallery-fix on 2026-08-30. */
/* Prodogz responsive photo gallery fix */
.prodogz-photo-gallery-section{
    margin:34px 0 44px;
}
.prodogz-photo-gallery-section .gallery-intro{
    text-align:center;
    max-width:760px;
    margin:0 auto 28px;
}
.prodogz-photo-gallery-section .gallery-intro h2{
    border-left:0!important;
    padding-left:0!important;
    margin:0 0 10px!important;
    font-size:clamp(1.8rem,3vw,2.5rem);
    color:#111;
}
.prodogz-photo-gallery-section .gallery-intro p{
    color:#666;
    font-size:1.05rem;
    margin:0;
}
.prodogz-photo-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:22px;
}
.prodogz-photo-card{
    display:block;
    background:#fff;
    border:1px solid #eee;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 8px 24px rgba(0,0,0,.08);
    text-decoration:none!important;
    color:#111!important;
    transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.prodogz-photo-card:hover{
    transform:translateY(-4px);
    box-shadow:0 14px 32px rgba(0,0,0,.13);
    border-color:#b40000;
}
.prodogz-photo-card img{
    display:block;
    width:100%;
    height:230px;
    object-fit:cover;
    object-position:center;
    border-radius:0!important;
    margin:0!important;
}
.prodogz-photo-card span{
    display:block;
    padding:14px 16px 16px;
    font-weight:800;
    line-height:1.25;
    text-align:center;
}
@media(max-width:900px){
    .prodogz-photo-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
    .prodogz-photo-card img{height:220px;}
}
@media(max-width:560px){
    .prodogz-photo-grid{grid-template-columns:1fr;}
    .prodogz-photo-card img{height:240px;}
}
