/** Bộ sưu tập */

.gallery-item {
    overflow: hidden;
}

.gallery-item .overlay-box {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #0000006b;
    padding: 15px;
    transition: 0.3s;
    z-index: 1;
}

.gallery-item .overlay-box .title {
    font-size: 18px;
    border-left: 3px solid #fff;
    padding-left: 15px;
}

.gallery-item .overlay-box * {
    color: #fff;
}

.gallery-item:hover .overlay-box {
    padding-bottom: 20px;
    transition: 0.3s;
}

.gallery-item:hover .layer {
    opacity: 1;
    transition: ease 0.3s;
}

.gallery-item img {
    transition: 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
    transition: 0.3s;
}

/** Detail */

.gallery-detail-item .title {
    margin-top: 10px;
    padding-bottom: 5px;
    text-align: center;
    font-weight: 500;
    /* border-bottom: 1px solid var(--primary-background2); */
}

.gallery-detail-item .youtube-play {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-detail-item .youtube-play svg {
    width: 60px;
    height: 60px;
}

@media (max-width: 990px) {
    .gallery-detail-item .youtube-play svg {
        width: 45px;
        height: 45px;
    }
}
