    .article {
        line-height: 2rem;
    }
    .article h3, .article h4 {
        font-size: 18px;
        font-weight: 500;
    }
    .article-promo {
        margin-top: 1rem;
        display: flex;
        justify-content: space-between;
        background: white;
        padding: 1rem;
        border-radius: .5rem;
        align-items: center;
    }
    .article-promo__img {
        width: 150px;
        height: 100px;
        border-radius: .5rem;
        background: rgba(0,0,0,0.1);
    }
    .article-promo__left {
        display: flex;
        gap: 1rem;
        align-items: center;
    }
    .article-promo__right {
        display: flex;
        flex-direction: column;
        gap: .5rem;
        justify-content: center;
        align-items: center;
    }
    .article-promo__title p:first-child {
        font-size: 18px;
        font-weight: 600;
    }
    .article-promo__title p:last-child {
        font-size: 13px;
        color: rgba(0,0,0,0.6);
    }
    .article-promo__right a {
        font-size: 13px;
    }
    .article-promo__right a:first-child {
        background-color: var(--purple);
        color: white;
        padding: .25rem 1rem;
        border-radius: 1rem;
    }
    .article-promo__right a:last-child {
        border: 2px solid var(--purple);
        color: var(--purple);
        padding: .25rem 1rem;
        border-radius: 1rem;
    }
    @media(max-width: 800px) {
        .article-promo {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .article-promo__right {
            justify-content: stretch;
            align-items: stretch;
        }
        .article-promo__right a {
            text-align: center;
            
        }
        .article-promo__left {
            flex-direction: column;
        }
        .article-promo__title {
            text-align: center;
        }
        .article-promo__img {
            width: 230px;
            height: 160px;
        }
        .article-img {
            width: 200px;
            border-radius: .5rem;
        }
    }