.news-list{
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 24px;
    margin-bottom: 24px;
}
@media (min-width: 992px){
    .news-list{
        margin-top: 48px;
        margin-bottom: 64px;
    }
}

.news-card{
    display: flex;
    margin-bottom: 32px;
    text-decoration: none;
    position: relative;
}
.news-card::before{
    content: '';
    position: absolute;
    top: 0;
    left: 32px;
    right: 32px;
    bottom: -17px;
    border-bottom: 1px solid #B564D4;
    opacity: 0.5;
    transition: all 0.2s;
}
@media (min-width: 576px){
    .news-card::before{
        left: 64px;
        right: 64px;
    }
}

.news-card__image{
    position: relative;
    flex-shrink: 0;
    width: 100px;
    max-height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 8px;
    margin-right: 8px;
}
@media (min-width: 576px){
    .news-card__image{
        margin-right: 16px;
    }
}
@media (min-width: 768px){
    .news-card__image{
        margin-right: 16px;
        width: 160px;
        max-height: 90px;        
    }
}
@media (min-width: 992px){
    .news-card__image{
        margin-right: 24px;
    }
}
.news-card__image img{
    width: 100%;
    height: auto;
    border-radius: 4px;
    transition: all 0.2s;
}
.news-card__title{
    position: relative;
    font-weight: 500;
    font-size: 16px;
    color: black;
    transition: all 0.2s;
}
@media (min-width: 768px){
    .news-card__title{
        font-size: 24px;
    }
}
.news-card:hover .news-card__title{
    color: #A61700;
}
.news-card:hover::before{
    border-color: #FF8673;
    opacity: 1;
    left: 0;
    right: 0;
}
.news-card:hover img{
    transform: scale(1.1);
}