.feed-wrapper h3 {
    margin-top: 0;
    margin-bottom: 0.25rem;
    text-align: center;
}

.feed-wrapper {
    width: calc(100% - 1rem);
}

.feeds {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 1rem;
    gap: 1rem;
    place-items: center;
    width: 100%;
}

.feed {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feed .post-item {
    margin-top: 1rem;
    width: 100%;
}

@media screen and (max-aspect-ratio: 1/1) {
    .feeds {
        grid-template-columns: 1fr;
    }

    .feed-wrapper {
        width: 95%;
    }

    .feed .post-item {
        width: calc(100% - 2rem);
    }
}
