.album-container{

    display:flex;
    gap:25px;

    overflow-x:auto;
    padding-bottom:10px;

    scrollbar-width:thin;

}

.album-container::-webkit-scrollbar{

    height:8px;

}

.album-container::-webkit-scrollbar-thumb{

    background:#198754;
    border-radius:20px;

}

.album-card{

    min-width:260px;
    max-width:260px;

    border-radius:12px;

    overflow:hidden;

    background:white;

    cursor:pointer;

    box-shadow:0 5px 15px rgba(0,0,0,.15);

    transition:.3s;

}

.album-card:hover{

    transform:translateY(-6px);

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

}

.album-cover{

    width:100%;
    height:180px;

    object-fit:cover;

}

.album-body{

    padding:15px;

}

.album-title{

    font-weight:700;
    color:#136413;
}

.album-count{

    color:#666;
    font-size:14px;

}

.photo-grid{

    display:grid;

    grid-template-columns:repeat(auto-fill,minmax(220px,1fr));

    gap:20px;

    margin-top:40px;

}

.gallery-image{

    width:100%;

    aspect-ratio:1;

    object-fit:cover;

    border-radius:10px;

    cursor:pointer;

    transition:.3s;

}

.gallery-image:hover{

    transform:scale(1.04);

}