.article_intro {
    display: flex;
    /* height: 133px; */
    text-decoration: none;
    color: #000;
    margin-bottom: 36px;
    border-bottom: 1px #e5e5e5 solid;
    padding-bottom: 40px;
    margin-top: 36px;
    border-top: 1px #e5e5e5 solid;
    padding-top: 40px;
    max-width: 704px;
    text-decoration: none;
    cursor: pointer;
}

.article_intro:hover {
    text-decoration: none;
}

.article_intro__image {
    width: 200px;
    min-width: 200px;
    max-width: 200px;
    flex: 1;
    height: 133px;
    display: block;
    margin-right: 25px;
}

.article_intro__wrapper {
    margin-top: -5px;
    display: flex;
    flex-direction: column;
    height: 138px;
    max-height: 138px;
    justify-content: space-between;
}

.article_intro__reed {
    font-size: 14px;
    color: #bf381d;
    letter-spacing: .5px;
    line-height: 11px;
    text-transform: uppercase;
    font-weight: 500;
    margin: 13px 0;
}

.article_intro__header {
    font-size: 18px;
    font-family: "Manrope Semibold", sans-serif;
    line-height: 22px;
}
.article_intro__text {
    font-family: "Manrope Thin", sans-serif;
    font-size: 14px;
    line-height: 24px;
    overflow: hidden;
    color: grey;
}

@media only screen and (max-width: 768px) {
    .article_intro__wrapper {
        justify-content: flex-start;
    }
    .article_intro__text {
        display: none;
    }
    .article_intro__image {
        min-width: 163px;
        max-width: 163px;
        height: 108px;
        display: block;
        margin-right: 20px;
    }
}