﻿.album-title .fw-light {
    font-size: 24px;
    color: #8F8F8F;
}

.album-title .fw-bold {
    font-size: 28px;
}

.album-title .small {
    font-size: 16px;
    color: #757575;
}

.album-title i {
    color: #FFB500;
}

.gallery-cover {
    max-width: 380px;
    max-height: 380px;
}

.gallery-card{
    aspect-ratio: 1 / 1;
    overflow:hidden;
    border-radius:20px;
}

.gallery-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition: transform .4s;
}

.gallery-card:hover img{
    transform:scale(1.08);
}