.news-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.news-grid .post {
    display: flex;
}

.news-grid .post-container {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 1rem;
    overflow: hidden;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.news-grid .post-image {
    min-width: 100px;
    width: 100px;
    height: 150px;
    object-fit: cover;
    overflow: hidden;
    border-radius: 1rem;
}

.news-grid .post:hover .post-image {
    opacity: .75;
}

.news-grid .post-content {
    flex-grow: 1;
}

.news-grid .post:not(.post-position-1):not(.post-position-10) .post-date {
    font-size: 14px;
    color: var(--bs-secondary);
}

.news-grid .post:not(.post-position-1):not(.post-position-10) .post-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.news-grid .post-description {
    font-size: 15px;
    color: var(--bs-body-color);
}

@media (min-width: 576px) {
    .news-grid .post-image {
        min-width: 150px;
        width: 150px;
    }
}

@media (min-width: 992px) {
    .news-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 3rem;
    }
}