/* ===========================
          Gallery
=========================== */

.gallery-page{

    width:100%;

    max-width:1400px;

    margin:auto;

    display:flex;

    flex-direction:column;

    gap:3rem;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:2rem;

}

.gallery-grid a{

    display:block;

    overflow:hidden;

    border:3px solid var(--gold);

    border-radius:12px;

    background:#222;

    transition:.3s;

    box-shadow:0 10px 30px rgba(0,0,0,.4);

}

.gallery-grid a:hover{

    transform:translateY(-6px);

    box-shadow:0 20px 40px rgba(0,0,0,.6);

}

.gallery-grid img{

    width:100%;

    height:280px;

    object-fit:cover;

    display:block;

    transition:.4s;

}

.gallery-grid img:hover{

    transform:scale(1.08);

}