.artigo .image {
    display: block;
    width: 100%;
    aspect-ratio: 19 / 8;
    border-radius: 1.25rem;
    overflow: hidden;
    margin: 0 0 2.5rem 0;
}
.artigo .image img {
    display: block;
    width: 100%;
    height: 100%;
    
    object-fit: cover;
}
.artigo .conteudo .titulo {
    color: rgba(10, 29, 55, 1);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    line-height: normal;
    
    text-align: left;
    text-transform: uppercase;
    margin: 0 0 1.88rem 0;
}
.artigo .conteudo .descricao * {
    display: block;
    color: rgba(51, 51, 51, 1);
    font-size: 0.94rem;
    font-weight: 400;
    line-height: normal;
    
    text-align: left;
    margin: 0;
}
.artigo .conteudo .descricao h1 {
    font-size: 2rem;
    font-weight: 700;
}

.artigo .conteudo .descricao h2 {
    font-size: 1.75rem;
    font-weight: 600;
}

.artigo .conteudo .descricao h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

.artigo .conteudo .descricao h4 {
    font-size: 1.25rem;
    font-weight: 500;
}

.artigo .conteudo .descricao h5 {
    font-size: 1.1rem;
    font-weight: 500;
}

.artigo .conteudo .descricao h6 {
    font-size: .9rem;
    font-weight: 500;
}


.artigo-footer {
    display: flex;
    justify-content: space-between;
    gap: 1rem;

    margin: 3.13rem 0;
    padding: 3.13rem 0;
    border: 0.06rem solid rgba(0, 0, 0, 0.2);
    border-left: none;
    border-right: none;
}
.artigo-footer h2 {
    color: rgba(10, 29, 55, 1);
    font-size: 1.63rem;
    font-weight: 700;
    line-height: normal;
    
    text-align: left;
    text-transform: uppercase;
    margin: 0 0 1.25rem 0;
}
.artigo-footer .tags .list-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem;

    margin: 0;
    padding: 0;
    list-style: none;
}
.artigo-footer .tags .list-tags li {
    padding: 0.63rem;
    background: rgba(229, 136, 92, 0.2);
    border-radius: 0.5rem;
    
    color: rgba(229, 136, 92, 1);
    font-size: 0.75rem;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0%;
    text-align: left;
    text-transform: uppercase;
}

.artigo-footer .share-links {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.6rem;
}

.artigo-footer .share-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    text-decoration: none;
    transition: opacity 0.2s;
}

.artigo-footer .share-btn:hover {
    opacity: 0.8;
}

.artigo-footer .share-btn.facebook { background: #1877f2; color: #fff; }
.artigo-footer .share-btn.email { background: #e0e0e0; color: #666; font-size: 1.05rem; }
.artigo-footer .share-btn.x-twitter { background: #000; color: #fff; font-size: 1.05rem; }
.artigo-footer .share-btn.whatsapp { background: #25d366; color: #fff; font-size: 1.25rem; } /* ícone whatsapp é um pouco diferente, bom aumentar */
.artigo-footer .share-btn.linkedin { background: #0e76a8; color: #fff; }


@media (max-width: 992px) {
    .artigo-footer {
        flex-direction: column;
        row-gap: 3rem;
    }
}