/* ============================================================
   POST LIST COMPONENT
   Simple list of blog posts for homepage
============================================================ */

.post-list-container {
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.post-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-inline: var(--content-padding-inline);
}

.post-list-item {
    /* No list styling */
}

.post-list-link {
    color: var(--color-link);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s ease;
}

.post-list-link:hover {
    color: var(--color-link-hover);
}
