.post-link {
    color: var(--color-text-contrast-high-primary);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.post-link:hover {
    text-decoration: none;
    background-color: var(--color-hover-contrast-low);
}

.post-link > .top-container {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.post-link > .top-container > .title {
    font-weight: bold;
    font-size: 1.5rem;
}

.post-link > .bottom-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
}

.post-link > .bottom-container > .link {
    color: var(--color-blue);
    white-space: nowrap;
}

@container (min-width: 40rem) {
    .post-link > .bottom-container {
        flex-direction: row;
    }
}