.esm-pg-overview{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:24px;
}
.esm-pg-card{
    background:rgba(0,0,0,0.25);
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 18px 40px rgba(0,0,0,0.45);
    transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    border:1px solid rgba(255,215,0,0.15);
}
.esm-pg-card-link{
    display:flex;
    flex-direction:column;
    height:100%;
    color:inherit;
    text-decoration:none;
}
.esm-pg-card-thumb img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}
.esm-pg-card-body{
    padding:16px 18px 18px;
}
.esm-pg-card-title{
    margin:0 0 6px;
    font-size:1.05rem;
    letter-spacing:.02em;
}
.esm-pg-card-meta{
    margin:0;
    font-size:.85rem;
    opacity:.85;
}
.esm-pg-card:hover{
    transform:translateY(-4px);
    box-shadow:0 26px 60px rgba(0,0,0,0.65);
    border-color:rgba(255,215,0,0.55);
}
.esm-pg-placeholder{
    width:100%;
    height:220px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#222,#444);
    color:#f1f1f1;
    font-weight:600;
    letter-spacing:.12em;
    text-transform:uppercase;
}

/* Single Gallery */
.esm-pg-single-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:16px;
}
.esm-pg-single-grid figure{
    margin:0;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 12px 28px rgba(0,0,0,0.55);
}
.esm-pg-single-grid img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
}
