.boxes{
    display: flex;
    justify-content: center;

    gap: calc((200 * 5 - 100%) / (5 - 1));    
    /* gap: 88px;     */
    gap: 60px;
    
    flex-wrap: wrap;
}

.box{
    width: calc(300px - 2px);
    height: calc(375px - 2px);
    
    background-color: black;

    border-radius: 15px;
    color: white;

    box-shadow: inset;
    overflow: hidden;

    position: relative;

    display: flex;
    flex-direction: column;

    transition: .25s ease;

    & *{
        &::selection{
            color: black;
            background-color: white;
        }
    }
}
.box:hover{
    background-color: #999;
}

.box-image-part{
    width: 100%;
    height: 162px;

    object-fit: cover;
}

.box-text-part{
    /* height: calc(100% - 131px - 20px - 20px - 1px - 1px - 1px); */
    height: calc(100% - 161px - 20px - 20px);

    /* border-right: solid black 1px;
    border-left: solid black 1px;
    border-bottom: solid black 1px; */

    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;

    display: flex;
    flex-direction: column;
    gap: 5px;

    padding: 20px;


    & p{
        font-size: 15px;
    }
}

.box-date{
    position: absolute;
    left: 20px;
    bottom: 20px;
}
.box-date p{
    font-weight: 600;
}