.news {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.news > .item {
    /*max-width: 350px;*/
    border-radius: 12px;
    border: 1px solid #b9b9b9;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    min-height: 240px;
    position: relative;
}

.news > .item > .img > img {
    max-width: 350px;
    /*height: 240px;*/
    width: 100%;
}

.news > .item > .img {
    min-width: 266px;
}

.news > .item > .img {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid var(--gray);
}

.news > .item > .content {
    padding: 0 10px;
}

.news > .item > .content {
    width: 100%;
}

.news > .item > .content > p {
    font-size: 16px;
    max-height: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}

.news > .item > .content > h3 {
    color: var(--red);
}

.news > .item > .footer {
    display: flex;
    padding: 0 0 10px;
    justify-content: center;
    align-items: center;
}

.unslink {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 1200px) {
    .news {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        flex-direction: unset;
    }

    .news > .item {
        max-width: 350px;
        border-radius: 12px;
        border: 1px solid #b9b9b9;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .news > .item > .img > img {
        max-width: 350px;
        height: 240px;
        width: 100%;
    }

    .news > .item > .img {
        display: flex;
        justify-content: center;
        border-bottom: 1px solid var(--gray);
    }

    .news > .item > .content {
        padding: 0 10px;
    }

    .news > .item > .content > p {
        font-size: 16px;
        max-height: 120px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 6;
        -webkit-box-orient: vertical;
    }

    .news > .item > .content > h3 {
        color: var(--red);
    }

    .news > .item > .footer {
        display: flex;
        padding: 0 0 10px;
        justify-content: center;
        align-items: center;
    }
}