.news {
    margin: 150px auto 60px;
}

.item__title {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 18px;
}

.item__description {
    text-transform: uppercase;
    color: rgba(0,0,0,0.6);
    font-size: 10px;
    margin-top: 10px;
}

.item__description a {
    color: #c5ae55;
    text-decoration: none;
}

.item__description img {
    width: 10px;
    height: auto;
    margin-left: 5px;
}

.item__description a:hover {
    text-decoration: underline;
}

.list__item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding: 20px;
    border-radius: 6px;
    background-color: #e2e2e2;
    box-shadow: 0px 10px 15px -5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.list__right,
.list__left {
    flex: 1 1 auto;
}

.list__item:hover {
    box-shadow: 0px 10px 15px -5px rgba(0, 0, 0, 0.25);
}

.list__right {
    min-width: 200px;
    text-align: right;
}

.list__right-title {
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 14px;
}

.list__right a {
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    color: rgba(0,0,0,0.6);
    transition: all 0.3s;
    margin-left: 20px;
}

.list__right a:hover {
    color: #c5ae55;
}