.blog article {
    border-radius: 1rem;
    background-color: var(--background-tertiary);
    padding: 2rem 3rem;
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
}

.blog article .post-thumbnail {
    width: 35%;
    height: auto;
    display: flex;
    justify-content: center;
    position: relative;
}

.blog article .post-thumbnail a {
    display: flex;
    justify-content: center;
}

.blog article .post-thumbnail img {
    width: 60%;
    margin: auto;
    height: auto;
    border-radius: 1rem;
    z-index: 10;
}

.blog article .post-thumbnail svg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: calc(100% + 1rem);
    width: auto;
    left: 0;
}

.blog article .description_blog {
    width: 65%;
}

.blog article .description_blog a {
    text-decoration: none;
}

.blog article .description_blog .btn_article {
    color: var(--secondary);
    text-align: end;
    width: 100%;
    display: inline-block;
    margin-top: 0.5rem;
    font-weight: bold;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.pagination a, .pagination span {
    padding: 0.5rem 0.8rem;
    text-decoration: none;
}

.pagination span {
    background-color: var(--secondary);
    color: var(--text-secondary);
    border-radius: 0.5rem;
}

@media screen and (max-width: 800px) {
    .blog article {
        flex-direction: column;
    }

    .blog article .post-thumbnail {
        width: 100%;
        margin-bottom: 2rem;
    }

    .blog article .description_blog {
        width: 100%;
    }
}