.news-list-item-image img
{
    max-width: 150px;
    display: block;
}

.news-list-item
{
    display: flex;
    align-items: center;
    border: 2px dashed grey;
    transition: all .5s;
    color: #000;
    text-decoration: none !important;
    margin-bottom: 25px;
    padding: 10px 0;
    box-sizing: border-box;
    justify-content: center;
}

.news-list-item-image
{
    margin-right: 20px;
}

.news-list-item:hover
{
    background-color: rgba(200,200,200,.7);
}

.news-list-item-text
{
    font-size: 20px;
    width: 100%;
    padding-right: 20px;
}

.news-list-item-name
{
    font-size: 25px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.news-list-item-date
{
    font-size: 20px;
    color: grey;
    font-weight: normal;
}

@media (max-width: 1099px)
{
    .news-list-item
    {
        flex-wrap: wrap;
    }

    .news-list-item-image
    {
        margin-right: 0;
    }

    .news-list-item-image img
    {
        max-width: 100%;
    }

    .news-list-item-name .news-list-item-date
    {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    .news-list-item-name
    {
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 10px;
    }

    .news-list-item-content
    {
        padding: 20px;
    }

    .news-list-item-text
    {
        padding-right: 0;
    }
    
    .news-list-item-name
    {
        text-align: center;
    }
}
