.breadcrumbs-articles {
    display: block;
}

.breadcrumbs-articles__item {
    border: 1px solid #f22d44;
    padding: 10px 15px;
    margin: 0px 10px 0px 0px;
}

.breadcrumbs-articles__item:first-child {
    border: 1px solid #000;
}

.breadcrumbs-articles__link-main {
    color: #000;
}

.breadcrumbs-articles-link {
    color: #f22d44;
}

.article-list {
    display: grid;
    grid-template-columns: auto auto auto;
    margin: 0px 0px 20px;
}

.article__item_link {
    color: black;
}

.article-list__left-column {
    height: fit-content;
    margin: 0px 20px 0px 0px;
    padding: 10px 0px 20px;
    border-bottom: 1px solid #EFF1F2;
}

.article-list__center-column {
    height: fit-content;
    border-bottom: 10px;
}

.section-all-articles .article__image {
    min-width: unset;
    height: unset;
    margin-right: unset;
}

.section-all-articles .article__image img {
    object-fit: cover;
}

.article__image img {
    width: 100%;
    margin-bottom: 20px;
    object-fit: cover;
}

.article__body {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.article__name {
    color: black;
    line-height: 120%;
    font-size: 20px;
    margin-bottom: 20px;
    text-align: left;
    font-family: "Prosto One", sans-serif;
    hyphens: auto;
    transition: 0.25s ease-in-out;
}

.article__item_link:hover .article__name {
    color: #f22d44;
}

.article__description {
    line-height: 140%;
    font-size: 16px;
    word-spacing: 4px;
    margin-bottom: 20px;
    font-family: "Inter", sans-serif;
}

.article__date {
    color: #aaaaaa;
}

.article__item-center {
    margin: 0px 20px 0px 0px;
    padding: 10px 0px;
}

.article__item-center .article__image img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.article__item-center .article__item_link {
    display: flex;
}

.article__body-center {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-bottom: 1px solid #eff1f2;
}

.article__body-center .article__name {
    display: -webkit-box;
    -webkit-line-clamp: 4;
            line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0px 0px 0px 20px;
    font-size: 16px;
}

.article__body-center .article__date {
    margin: 0px 0px 0px 20px;
    padding: 0px 0px 20px;
    font-size: 12px;
}

.article-list__right-column {
    border-left: 2px solid #000;
    padding: 0px 0px 0px 20px;
    width: min-content;
}

.title_top {
    display: flex;
    flex-direction: row;
    font-family: 'Prosto one';
    padding: 10px 0px 0px;
    font-size: 48px;
    white-space: nowrap;
}

.title_top__last_red {
    color: red;
}

.article-list__right-column .article__item_link {
    padding: 0px;
    margin: 0px;
}

.article__item-right {
    border-bottom: 1px solid #eff1f2;
    margin: 20px 0px;
}

.article__item-right:last-child {
    border-bottom: none;
    margin: 20px 0px;
}

.article__body-right .article__name {
    font-size: 16px;
}

.suggest-topic {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    margin: 0px 0px 20px;
    background-color: #f22d44;
}

.suggest-topic__title {
    font-family: 'Prosto One';
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    color: #fff;
    margin: 0px 0px 20px;
}

.suggest-topic__text {
    font-family: 'Prosto One';
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    color: #eff1f2;
}

.suggest-topic__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    width: 300px;
    font-family: 'Inter';
    font-weight: 500;
    font-size: 20px;
    line-height: normal;
    background-color: #eff1f2;
}

.article-list__bottom {
    display: grid;
    grid-template-columns: repeat(3, 31%);
    justify-content: space-between;
    gap: 20px;
}

.article-list__bottom .article__image {
    height: 160px;
    margin: 0px 0px 10px;
}

.article-list__bottom .article__image img {
    height: 100%;
    width: 100%;
}

@media screen and (max-width: 1200px) {
    .article-list {
        grid-template-columns: auto auto;
        grid-template-rows: auto;
        gap: 20px;
    }

    .article-list__left-column {
        margin-bottom: 20px;
    }

    .article-list__right-column {
        grid-column: span 2;
        width: unset;
    }
}

@media screen and (max-width: 768px) {
    .article-list__bottom {
        grid-template-columns: repeat(2, 47%);
        justify-content: space-between;
    }
}

@media screen and (max-width: 480px) {
    .article-list {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, auto);
        column-gap: 0px;
    }

    .article-list__center-column {
        grid-row: 2;
    }

    .article-list__right-column {
        grid-row: 3;
    }

    .article__item-center {
        margin: 0px;
        padding: 10px 0px;
    }

    .suggest-topic {
        flex-wrap: wrap;
        text-align: center;
        justify-content: center;
    }
}

@media screen and (max-width: 360px) {
    .article-list__bottom {
        grid-template-columns: repeat(1, 1fr);
        justify-content: space-between;
    }
}

/* блок стилей для всплывашек */
.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgb(0 0 0 / .77);
    display: none;
    z-index: 200;
}

.modal__outer {
    padding: 30px 15px;
    min-height: 100%;
    display: flex;
}

.modal__inner {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal__container {
    padding: 0;
    border: none;
}

.modal-small {
    max-width: 340px;
    width: 100%;
}

.modal__close {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    color: #000;
    cursor: pointer;
    transition: 0.25s;
}

.modal__close::after, .modal__close::before {
    content: '';
    position: absolute;
    top: 19px;
    left: 10px;
    border-radius: 2px;
    width: 20px;
    transform: rotate(45deg);
    border: 1px solid currentColor;
}

.modal__close::after {
    transform: rotate(-45deg);
}

.modal-small_t2 .modal-small__content {
    padding: 20px 28px 30px;
}

.h3 {
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
}

.modal-small__title {
    max-width: 190px;
    margin-bottom: 10px;
}

.modal-small_t2 .modal-small__title {
    max-width: 250px;
}

.modal-small__text {
    font-size: 17px;
    line-height: 130%;
    margin-bottom: 18px;
}

.modal-small__row {
    margin-bottom: 10px;
}

.input-form {
    background: #fff;
    border: 2px solid #f22d44;
    -webkit-box-shadow: 0 4px 6px rgb(0 0 0 / .06);
    box-shadow: 0 4px 6px rgb(0 0 0 / .06);
    padding: 6px 14px;
    position: relative;
}

.input-form__label {
    font-size: 13px;
    color: #aaa;
}

.input-form__input {
    width: 100%;
    height: 26px;
    font-family: Roboto, sans-serif;
    font-size: 15px;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.modal-small__content .textarea {
    height: 120px;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: Roboto, sans-serif;
    font-size: 15px;
    background: #fff;
    border: 2px solid #f22d44;
    resize: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 6px 14px;
}

.modal-small__content .textarea::placeholder {
    color: #aaa;
    font-size: 14px;
}

.btn_fill {
    color: #ffffff;
    background: -webkit-gradient(linear, left top, left bottom, from(#000), color-stop(50%, #000), color-stop(50%, #4a0505), to(#4a0505));
    background: -o-linear-gradient(top, #000 0%, #000 50%, #4a0505 50%, #4a0505 100%);
    background: linear-gradient(to bottom, #000 0%, #000 50%, #4a0505 50%, #4a0505 100%);
    background-size: auto 200%;
}

.btn_fill:hover {
    color: #ffffff;
    background-position: 0 100%;
}

.btn_article-modal {
    height: 70px;
    font-size: 20px;
    line-height: 110%;
}

@media screen and (max-width: 768px) {
    .modal__container {
        height: unset;
    }
}
/* конец блока стилей для всплывашек */