.grid-blogs-2n {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 30px;
    grid-template-areas: ". .";

    @include media-breakpoint-down(lg) {
        grid-template-columns: 1fr 1fr;
        grid-template-areas: ". .";
    }

    @include media-breakpoint-down(xs) {
        grid-template-columns: 1fr;
        grid-template-areas: ".";
    }
}
.blog-post-content {
    img {
        max-width: 100%;
    }

    @include media-breakpoint-down(sm) {
        p {
            text-align: justify;
        }
    };
}
.post-news {
    img {
        max-width: 100%;
    }
}

.card-post-new {
    .card-title {
        font-size: 14px;
        line-height: 20px;

        &:hover {
            text-decoration: underline;
        }
    }

    .card-text {
        color: #212529;
    }

    .image-wrap {
        transition: all .2s ease-in-out;

        img {
            transition: all .2s ease-in-out;
        }

        &:hover {
            img {
                transform: scale(1.05);
            }
        }
    }

    .date {
        font-size: 14px;
    }

    .btn-read-more {
        &:hover {
            text-decoration: underline !important;
        }
    }
}


