.article {
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.article-title {
    text-align: center;
}

.section-article-info {
    display: flex;
    justify-content: center;
    align-items: center;
}

.article-author-name {}

.article-author-picture {
    overflow: hidden;
    /* Garante que a borda redonda não ultrapasse a área da imagem */
    border-radius: 50%;
    /* Torna a imagem redonda */
    border: 2px solid #CBFD03;
    /* Adiciona uma borda de 2px com a cor #CBFD03 */
}
.article-author-image{
}

.article-publication {
    color: #B0B2B8;
}

.section-article-content {
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.article-thumbnail-bg{
}

/* s-screen  */
@media screen and (max-width: 500px) {
    .article-title {
        width: 80%;
        font-size: 1rem;
    }

    .article-author-name,
    .article-author-picture,
    .article-publication {
        margin: 0.5rem;
    }

    .article-author-name,
    .article-publication {
        font-size: 0.8rem;
    }
    .article-author-picture {
        width: 40px;
        height: 40px;
    }
    .article-author-image{
        width: 40px;
        height: 40px;
    }
    .article-head-image{
        width: 200px;
        height: 200px;
    }
}

/* m-screen  */
@media screen and (min-width: 501px) and (max-width: 1023px) {
    .article-head-image{
        width: 450px;
        height: 450px;
    }
}

/* l-screen  */
@media screen and (min-width: 1024px) {
    .article-title {
        width: 50%;
    }

    .article-author-name,
    .article-author-picture,
    .article-publication {
        margin: 1rem;
    }

    .article-author-name,
    .article-publication {
        font-size: 1rem;
    }

    .article-author-picture {
        width: 80px;
        height: 80px;
    }
    .article-author-image{
        width: 80px;
        height: 80px;
    }
    
    .article-head-image{
        width: 500px;
        height: 500px;
    }
}