.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.875rem;
    max-width: 1220px;
    margin: 0 auto;
    padding: 3.6rem 1.1875rem 8rem;
}

.post-item {
    display: flex;
    flex-direction: column;
    height: 100%;
    /* border-radius: 1rem; */
    overflow: hidden;
    box-shadow: var(--box-shadow-md);
    transition: 0.3s;
}

.post-media {
    aspect-ratio: 0.56;
    background-color: #000;
}

.post-item-link .post-media {
    aspect-ratio: 1.96;
}

.post-item-link:first-of-type {
    grid-column-start: 1;
}

.post-media p {
    height: 100%;
}

.post-media iframe {
    height: 100%;
    object-fit: cover;
}

.post-media img {
    width: 100%;
    height: 100% !important;
    object-fit: contain;
    display: block;
    background-color: #000;
}

.post-title {
    margin: 1.25rem 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--subtitle);
    flex-grow: 1;
}

.post-date {
    margin: 0 1.5rem;
    color: #7a8086;
    font-size: 1rem;
    display: none;
}

.post-excerpt {
    font-size: 1rem;
    margin: 0.5rem 1.5rem 1.625rem;
    line-height: 1.6;
    display: none;
}
