.content_item{
    /* border: 2px solid black; */
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 16px;
    border: 1px solid rgb(226, 226, 226);
    cursor: pointer;
    transition: all 0.25s ease-in-out;
}

.content_item img{
    width: 200px;
    height: auto;
    object-fit: cover;
    object-position: center;
}
.content_list{
    display: flex;
    flex-direction: column;

}
.description_content_item p, .description_content_item pre{
    width: auto;
}
.content_item .content_btn{
    padding: 10px 20px;
    margin-bottom: 10px;
    max-width: 150px;
}
.description_content_item{
    display: flex;
    flex-direction: column;
}
@media screen and (max-width:580px){
    .content_item{
        flex-direction: column;
    }
    .content_item img{
        width: 100%;
    }
    .description_content_item{
        margin-top: 0;
    }
    .content_item{
        gap: 0;
    }
}