.blog-bg {
    padding-bottom: 120px;
}

.blog h1 {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.posts-blog {
    padding: 0 20px;
}

.post {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.post a {
    overflow: hidden;
}

.post a img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    order: 1;
    transition: all .3s ease;
}

.post a img:hover {
    transform: scale(1.1);
}

.post-content {
    padding: 80px 60px;
    order: 0;
}

.post-content h2 {
    position: relative;
    margin-bottom: 20px;
    display: inline-block;
}

.post-content h2:hover::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    margin-top: 2px;
    background-color: var(--cor-c11);
    position: absolute;
}

.post-content p {
    max-width: 50ch;
    margin-bottom: 40px;
}

.info {
    display: flex;
    justify-content: space-between;
}

.info img {
    width: 22px;
    height: 16px;
    display: inline;
}

.info p {
    display: inline;
    margin-left: 8px;
}

@media(max-width:1000px) {
    .post-content h2:hover::after {
        margin-top: 0px;
    }
}

@media(max-width:760px) {
    .blog-bg {
        padding-bottom: 80px;
    }

    .blog h1 {
        margin-bottom: 40px;
    }

    .post {
        grid-template-columns: 1fr;
        border-top: 2px solid var(--cor-c7);
    }
    
    .post a img {
        margin-top: 40px;
    }

    .post a img {
        transition: none;
    }
    
    .post a img:hover {
        transform: none;
    }

    .post-content {
        padding: 40px 0 40px 0;
    }

    .post-content p {
        max-width: 80ch;
    }

    .order .post-content {
        order: 1;
    }

    .post-content a img {
        order: 0;
    }

    .post-content h2 {
        margin-bottom: 12px;
    }

    .post-content p {
        margin-bottom: 36px;
    }

    .border-bottom {
        border-bottom: 2px solid var(--cor-c7);
    }

    .border-bottom .date {
        margin-bottom: 40px;
    }
}

