.fcb-gallery-filter{
display:flex;
flex-wrap:wrap;
gap:12px;
justify-content:center;
margin-bottom:50px;
}

.fcb-gallery-filter button{
padding:10px 22px;
border:none;
border-radius:30px;
background:#f2f2f2;
cursor:pointer;
font-weight:600;
transition:.3s;
}

.fcb-gallery-filter button.active,
.fcb-gallery-filter button:hover{
background:#003893;
color:#fff;
}
.fcb-gallery-page{
max-width:1300px;
margin:60px auto;
padding:0 20px;
}

.fcb-gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:30px;
}

.fcb-album-card{
background:#fff;
border-radius:18px;
overflow:hidden;
box-shadow:0 12px 35px rgba(0,0,0,.08);
transition:.35s;
}

.fcb-album-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.fcb-album-image{
height:260px;
overflow:hidden;
}

.fcb-album-image img{
width:100%;
height:100%;
object-fit:cover;
transition:.5s;
}

.fcb-album-card:hover img{
transform:scale(1.08);
}

.fcb-album-content{
padding:24px;
}

.fcb-category{
display:inline-block;
padding:6px 14px;
background:#d71920;
color:#fff;
font-size:12px;
font-weight:700;
border-radius:30px;
margin-bottom:12px;
text-transform:uppercase;
}

.fcb-album-content h3{
margin:0;
font-size:24px;
font-weight:700;
color:#111;
}

.fcb-album-content p{
margin:10px 0 20px;
color:#666;
}

.fcb-view-album{
display:inline-flex;
align-items:center;
justify-content:center;
padding:12px 24px;
background:#003893;
color:#fff;
text-decoration:none;
border-radius:8px;
font-weight:600;
transition:.3s;
}

.fcb-view-album:hover{
background:#d71920;
color:#fff;
}

.fcb-album-page{
max-width:1300px;
margin:auto;
padding:60px 20px;
}

.fcb-back{
display:inline-block;
margin-bottom:25px;
text-decoration:none;
font-weight:700;
color:#003893;
}

.fcb-album-page h1{
font-size:42px;
margin-bottom:15px;
}

.fcb-album-page p{
max-width:800px;
color:#666;
line-height:1.8;
margin-bottom:40px;
}

.fcb-images-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:20px;
}

.fcb-images-grid a{
display:block;
overflow:hidden;
border-radius:14px;
}

.fcb-images-grid img{
width:100%;
height:260px;
object-fit:cover;
transition:.4s;
}

.fcb-images-grid img:hover{
transform:scale(1.08);
}

@media(max-width:768px){

.fcb-gallery-grid{
grid-template-columns:1fr;
}

.fcb-album-page h1{
font-size:30px;
}

}