.pl-container{
    width: 50vw;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 50px;

    padding-bottom: 100px;
    /* min-width: fit-content; */
}


@media only screen and (max-width: 1300px) {
.pl-container{
        width: 90vw;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
    }
}

.pl-list{
    width:100%;
    min-width: fit-content;
    display: grid;
    row-gap: 20px;
    column-gap: 20px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.pl-list-element{
    position: relative;

    height: 400px;
    /* max-width: 80vw; */
    width: auto;
    object-fit: cover;
    border-radius: 20px;

    overflow-x: hidden;
    overflow-y: hidden;
    box-shadow: 0 10px 30px black;
}


.pl-list-element-img{
    object-fit: cover;
    height: 100%;
    width: 100%;
    overflow-y: hidden;
}

.pl-list-element-text{
    position: absolute;

    display: flex;
    align-items: center;
    flex-direction: column;

    justify-content: center;
    width: 100%;
    height: 0px;
    bottom: 0;

    overflow-y: hidden;
    transition: height ease-in-out 0.5s;

    color: var(--text);
    background-color: var(--shade-3);
}

.pl-list-element:hover .pl-list-element-text {
    height: 40px;
    /* padding-top: 20px; */
    /* padding-bottom: 20px; */
    /* border: solid 10px blue; */
    transition: all ease-in-out 0.5s;
}

