/* ==========================================
   Nullspace Page
   ========================================== */

.nullspace-hero {
    background-image:
        linear-gradient(180deg,
            rgba(250, 244, 238, 0.12),
            rgba(250, 244, 238, 0.68)),
        var(--page-image);

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.post-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.post-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 32px;
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
    transition: padding-left 0.25s ease;
}

.post-item:hover {
    padding-left: 12px;
}

.post-item a {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--ink);
    text-decoration: none;
}

.post-item a:hover {
    text-decoration: underline;
    text-underline-offset: 6px;
}

.post-item time {
    flex-shrink: 0;
    color: var(--muted);
    font-size: 16px;
    white-space: nowrap;
}

@media (max-width: 760px) {
    .post-item {
        flex-direction: column;
        gap: 8px;
        padding: 24px 0;
    }

    .post-item a {
        font-size: 22px;
    }

    .post-item time {
        font-size: 14px;
    }
}