.post--0 .component__heading {
    text-align: center;
}

.post--0 .post__items {
    display: grid;
    gap: 5rem 4rem;
}

.post--0 .post__item {
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 1.25rem;
    background-color: white;
}

.post--0 .post__image {
    background-color: var(--clr-gray-100);
    overflow: hidden;
}

.post--0 .post__image img,
.post--0 .post__image--placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
}

.post--0 .post__image img {
    object-fit: cover;
}

.post--0 .post__item:hover .post__image img,
.post--0 .post__item:hover .post__image--placeholder {
}

.post--0 .post__meta {
    font-size: 1rem;
    color: var(--clr-primary);
}

.post--0 .post__meta span + span::before {
    content: "–";
    padding-inline: 0.25rem;
}

.post--0 .post__title {
    font-family: var(--ff-heading);
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 2.125rem;
}

.post--0 .post__title a {
    color: var(--clr-secondary);
    text-decoration: none;
}

.post--0 .post__teaser {
    font-size: 1rem;
    line-height: 1.625rem;
}

.post--0 .post__link {
    max-width: 12.5rem;
    margin-block-start: auto;
}

.post--0 .post__pagination ul {
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
    padding-block-start: 4rem;
    margin-block-start: 7rem;
    border-top: 1px solid rgba(207, 207, 207, 1);
}

.post--0 .post__pagination ul li.current {
    color: var(--clr-white);
    background-color: var(--clr-primary);
}

.post--0 .post__pagination a,
.post--0 .post__pagination li.current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    font-family: var(--ff-heading);
    font-weight: 700;
    border-radius: 9999px;
}

.post--0 .post__pagination a {
    text-decoration: none;
    color: var(--clr-secondary);
    background-color: var(--clr-gray-100);
}

.post--0 .post__pagination .previous a,
.post--0 .post__pagination .next a {
    color: var(--clr-white);
    background-color: var(--clr-secondary);
}

@media (min-width: 768px) {
    .post--0 .post__items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .post--0 .post__items {
        grid-template-columns: repeat(3, 1fr);
    }
}
