.articles {
}

.articles__title-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

@media (max-width: 1024px) {
    .articles__title-box {
        margin-bottom: 20px;
    }
}

.articles__more-link-mobile {
    display: none;
    width: 100%;
    margin-top: 20px;
}

.articles__more-link-desktop .btn-inner {
    padding-top: 2px;
}

@media (max-width: 1024px) {
    .articles__more-link-desktop {
        display: none;
    }

    .articles__title {
        font-size: 22px !important;
        line-height: 1.12 !important;
    }

    .articles__more-link-mobile {
        display: block;
    }

    .articles__more-link-mobile .btn-inner {
        font-size: 12px !important;
    }
}

.articles__list {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

.articles__item {
    display: grid;
    grid-template: auto / minmax(0, 4fr) minmax(0, 6.96fr) minmax(0, 1fr);
    grid-gap: 48px;
    padding-top: 32px;
    padding-bottom: 28px;
}

.articles__item {
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

@media (max-width: 1024px) {
    .articles__item {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

.articles__item-img-box {
    aspect-ratio: 1.76;
    width: 100%;
    height: 100%;
}

.articles__item-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.articles__item-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.articles__item-date {
    margin-bottom: 40px;
    font-size: 15px;
    line-height: 1.3;
    color: rgba(0, 0, 0, .25);
}

@media (max-width: 1024px) {
    .articles__item-date {
        margin-bottom: 8px;
        font-size: 10px;
    }
}

.articles__item-title {
    margin-bottom: 24px;
    font-size: 20px;
    line-height: 1.1;
    font-weight: 700;
    color: #333;
}

@media (max-width: 1024px) {
    .articles__item-title {
        margin-bottom: 8px;
        font-size: 14px;
        line-height: 1.25;
    }
}

.articles__item-text {
    font-size: 17px;
    line-height: 22px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3; /* Количество строк */
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 1024px) {
    .articles__item-text {
        display: block;
        font-size: 14px;
        line-height: 1.45;
    }
}

.articles__item-arrow-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 1024px) {
    .articles__item-arrow-col {
        display: none;
    }
}

.articles__item-arrow {
    display: block;
    width: 100%;
    fill: none;
    stroke: #939598;
    stroke-width: .03rem;
    transition: fill .4s, stroke-width .4s;
}

.articles__item:hover .articles__item-arrow {
    stroke-width: 0;
    fill: #BE3D3D;
}