.posts-wrapper {
    margin-top: 4em;
    display: grid;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.post {
    background: #fafafa;
    border-radius: var(--t-border-radius);
    box-shadow: 0px 0px 8px 0px #d3d3d3;
}

.entry-title {
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: 0.5em;
    color: var(--t-c-primary);
}

.news {
    border: 1px solid #00000021;
    border-radius: 5px;
}

.news .entry-content {
    padding: 2em;
}

.entry-footer {
    padding: 0em 2em 2em 2em;
    font-weight: 300;
    color: var(--t-c-primary);
}

.post-thumbnail {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    border-radius: var(--t-border-radius);
}