.article_item {
    max-width: 1200px;
    margin-top: 20px;
}

.article_item > a {
    white-space: break-spaces;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 80px;
    will-change: background;
    transition: background 0.2s;
    border-radius: 10px;
    padding: 10px 0 10px 0;
}

.article_item > a:hover {
    background-color: #EAE3D6;
}

.article_item > a > div {
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: transform 0.2s;
}

.article_item > a:hover > div {
    transform: translateX(10px);
}

.article_item .discription {
    text-align: justify;
    flex-grow: 1;
    text-indent: 25px;
}

.article_item img {
    max-height: 200px;
    transition: transform 0.2s;
    border-radius: 10px;
}

.article_item > a:hover img {
    transform: translateX(-10px);
}

.article_item::after {
    content: "";
    background-color: #BABABA;
    height: 1px;
    width: 100%;
    display: block;
    margin-top: 20px;
}

.article_item:last-of-type {
    padding-bottom: 120px;
}

.article_item:last-of-type::after {
    display: none;
}

@media (max-width: 768px) {
    .article_item > a {
        gap: 30px;
    }

    .article_item > a >  div {
        width: 100%;
    }

    .article_item > a:hover {
        background-color: unset;
    }

    .article_item > a:hover > div {
        transform: unset;
    }

    .article_item > a:hover img {
        transform: unset;
    }
}

@media (max-width: 650px) {
    .article_item > a {
        flex-direction: column;
        align-items: center;
    }
}