.related-content {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}
.related-content > h2 { margin: 0 0 1.25rem; }

.post-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.related-content__grid,
.post-grid--latest {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.related-content__card,
.post-card {
    display: block;
    min-width: 0;
    padding: 1.15rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: none;
    overflow-wrap: anywhere;
}

.related-content__image,
.post-card__image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    margin-bottom: 1rem;
    border-radius: .4rem;
}

.post-card--listing.post-card--with-image {
    display: grid;
    grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
    align-items: start;
    gap: 1.15rem;
}
.post-card--listing .post-card__image { margin-bottom: 0; }
.post-card__body { min-width: 0; }

.related-content__category,
.related-content__card time,
.post-card time {
    color: var(--muted);
    font-size: .8rem;
    font-weight: 400;
}
.related-content__category { margin: 0 0 .5rem; }

.related-content__card h3,
.post-card h3 {
    margin: .6rem 0;
    font-size: 1.05rem;
}

.related-content__card a,
.post-card a {
    margin-top: 0;
    color: var(--navy-800);
    font-weight: inherit;
    text-decoration: underline;
    text-underline-offset: .2em;
}
.related-content__card a:focus-visible,
.post-card a:focus-visible {
    outline: 3px solid var(--blue-600);
    outline-offset: 4px;
}

.related-content__summary,
.post-card--latest > p,
.post-card__intro {
    margin: .7rem 0 0;
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.55;
}

.post-card__badges {
    align-items: baseline;
    justify-content: flex-start;
    gap: .35rem;
    margin: 0 0 .5rem;
}
.post-card__badges .tag,
.post-card__badges .post-type {
    min-width: 0;
    max-width: 100%;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--muted);
    font-size: .8rem;
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: 0;
    text-transform: none;
    white-space: normal;
    overflow-wrap: anywhere;
}
.post-card__badges .tag + .post-type::before {
    content: "·";
    margin-right: .35rem;
}
.post-card__badge-spacer { display: none; }

@media (max-width: 760px) {
    .related-content__grid,
    .post-grid--latest {
        grid-template-columns: 1fr;
    }

    .post-card--listing.post-card--with-image {
        grid-template-columns: 1fr;
    }

    .post-card--listing .post-card__image {
        margin-bottom: 1rem;
    }
}
