.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.blog-grid .post {
    display: flex;
}

.blog-grid .post-container {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.blog-grid .post-description {
    font-size: 15px;
    color: var(--bs-body-color);
}

@media (min-width: 992px) {
    .blog-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 3rem;
    }

    .blog-grid .post-position-1 {
        grid-column: 1 / 4;
        grid-row: 1 / 4;
    }

    .blog-grid .post-position-2 {
        grid-column: 4 / 7;
        grid-row: 1 / 2;
    }

    .blog-grid .post-position-3 {
        grid-column: 4 / 7;
        grid-row: 2 / 3;
    }

    .blog-grid .post-position-4 {
        grid-column: 4 / 7;
        grid-row: 3 / 4;
    }

    .blog-grid .post-position-5 {
        grid-column: 1 / 4;
        grid-row: 4 / 5;
    }

    .blog-grid .post-position-6 {
        grid-column: 4 / 7;
        grid-row: 4 / 5;
    }

    .blog-grid .post-position-7 {
        grid-column: 1 / 4;
        grid-row: 5 / 6;
    }

    .blog-grid .post-position-8 {
        grid-column: 1 / 4;
        grid-row: 6 / 7;
    }

    .blog-grid .post-position-9 {
        grid-column: 1 / 4;
        grid-row: 7 / 8;
    }

    .blog-grid .post-position-10 {
        grid-column: 4 / 7;
        grid-row: 5 / 8;
    }

    .blog-grid .post-position-11 {
        grid-column: 1 / 4;
        grid-row: 8 / 9;
    }

    .blog-grid .post-position-12 {
        grid-column: 4 / 7;
        grid-row: 8 / 9;
    }
}

/* POSITION BIG */

.blog-grid .post-position-1 .post-container,
.blog-grid .post-position-10 .post-container {
    position: relative;
    flex-direction: column;
    justify-content: end;
    align-items: start;
    gap: .5rem;
    overflow: hidden;
    border-radius: 1rem;
    padding: 1.5rem;
    min-height: 300px;
}

.blog-grid .post-position-1 .post-container::after,
.blog-grid .post-position-10 .post-container::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: linear-gradient(to bottom,rgba(0,0,0,.1) 50%,rgba(0,0,0,.35) 60%,rgba(0,0,0,.75) 100%);
}

.blog-grid .post-position-1 .post-image,
.blog-grid .post-position-10 .post-image {
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    transition: transform 0.15s ease-in-out;
}

.blog-grid .post-position-1 .post-content,
.blog-grid .post-position-10 .post-content {
    z-index: 1;
}

.blog-grid .post-position-1:hover .post-image,
.blog-grid .post-position-10:hover .post-image {
    transform: scale(1.1);
}

.blog-grid .post-position-1 .post-date,
.blog-grid .post-position-10 .post-date {
    font-size: 13px;
    font-weight: 600;
    border-radius: 1rem;
    padding: .25rem .5rem;
    color: var(--bs-white);
    background-color: var(--bs-primary);
}

.blog-grid .post-position-1 .post-title,
.blog-grid .post-position-10 .post-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--bs-white);
    margin: 0;
}

.blog-grid .post-position-1 .post-description,
.blog-grid .post-position-10 .post-description {
    display: none;
}

/* POSITION SMALL */

.blog-grid .post:not(.post-position-1):not(.post-position-10) .post-container {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 1rem;
    overflow: hidden;
}

.blog-grid .post:not(.post-position-1):not(.post-position-10) .post-image {
    min-width: 100px;
    width: 100px;
    height: 150px;
    object-fit: cover;
    overflow: hidden;
    border-radius: 1rem;
}

.blog-grid .post:not(.post-position-1):not(.post-position-10):hover .post-image {
    opacity: .75;
}

.blog-grid .post:not(.post-position-1):not(.post-position-10) .post-content {
    flex-grow: 1;
}

.blog-grid .post:not(.post-position-1):not(.post-position-10) .post-date {
    font-size: 14px;
    color: var(--bs-secondary);
}

.blog-grid .post:not(.post-position-1):not(.post-position-10) .post-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

@media (min-width: 576px) {
    .blog-grid .post:not(.post-position-1):not(.post-position-10) .post-image {
        min-width: 150px;
        width: 150px;
    }
}