.archive-articles {
    padding-top: 158px;
}
.articles-list {
    display:flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin:0 -24px;
}
.articles-list-item {
    width: calc(100% / 2 - 48px);
    margin:0 24px 48px;
    display: flex;
    flex-direction: row;
    border-radius: 16px;
    overflow: hidden;
    transition: .3s;
    cursor: pointer;
    text-decoration: none;
    outline: none;
    border: 1px solid #FFAF82;
    background-color: #0B3A38;
}
.articles-list-item_img {
    width: 200px;
    overflow: hidden;
}
.articles-list-item_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: .3s;
}
.articles-list-item:hover .articles-list-item_img img {
    transform: scale(1.1);
}
.articles-list-item_content {
    width: calc(100% - 200px);
    padding: 24px 24px 24px 24px;
    display: flex;
    flex-direction: column;
}
.articles-list-item_content .name {
    font-family: 'Raleway';
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    letter-spacing: 0em;
    text-align: left;
    margin-bottom: 12px;
    transition: .3s;
}
.articles-list-item:hover .articles-list-item_content .name {
    color:#FFAF82;
}
.articles-list-item_content .text {
    font-family: 'Raleway';
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0em;
    text-align: left;
    color: #fff;
    margin-bottom: 24px;
}
.articles-list-item_content .content-more {
    display: flex;
    margin-left: auto;
    margin-top: auto;
    font-family: 'Raleway';
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: right;
    color: #fff;
    transition: .3s;
    padding-right: 26px;
    position: relative;
}
.articles-list-item:hover .articles-list-item_content .content-more {
    color:#FFAF82;
}
.articles-list-item_content .content-more::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 11L11 1' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M1 1H11V11' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: .3s;
}
.articles-list-item:hover .articles-list-item_content .content-more::after {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 11L11 1' stroke='%23FFAF82' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M1 1H11V11' stroke='%23FFAF82' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");    
}
@media(max-width:1200px) {
    .articles-list-item_content {
        width: calc(100% - 140px);
    }
    .articles-list-item_img {
        width: 140px;
    }
}
@media(max-width:992px) {
    .articles-list {
        margin: 0;
    }
    .articles-list-item {
        width: 100%;
        margin: 0 0px 48px;
    }
    .archive-articles {
        padding-top: 110px;
    }
    .archive-articles h1.title {
        margin-bottom: 32px;
    }
}
@media(max-width:576px) {
    .articles-list-item {
        margin: 0 0 24px;
    }
    .articles-list-item_content {
        padding: 12px;
    }
    .articles-list-item_content .name {
        font-size: 18px;
        line-height: 24px;
    }
}
@media(max-width:420px) {
    .articles-list-item_img {
        width: 100px;
    }
    .articles-list-item_content {
        width: calc(100% - 100px);
    }
}