.album-preview {
    position: relative;
    margin: 80px 0;
}

/*
.album-preview::before,
.album-preview::after {
    content: ' ';
    display: block;
    width: 74px;
    height: 74px;
    background-color: #FFF;
    position: absolute;
    z-index: 1;
}

.album-preview::before {
    left: -1px;
    top: -1px;
    clip-path: polygon(0% 0%, 100% 0, 0 100%);
}

.album-preview::after {
    right: -1px;
    bottom: -1px;
    clip-path: polygon(0% 100%, 100% 0, 100% 100%);
}
*/

.album-preview-link {
    appearance: none;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.album-preview-link img {
    transform: scale(1);
    transition: 400ms ease-in-out;
}

.album-preview-link:hover img,
.album-preview-link:focus img {
    transform: scale(1.1);
}

.album-preview .badge {
    position: absolute;
    left: 38px;
    bottom: 34px;
    z-index: 1;
    display: flex;
    align-items: center;
    text-transform: none;
    font-size: 17px;
}

.album-preview .badge::after {
    content: ' ';
    display: inline-block;
    width: 26px;
    height: 24px;
    background: transparent url(/public/icons/gallery.svg) no-repeat center;
    margin-left: 10px;
}