.post-list {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    margin-top: 4rem;
}

.post-entry {
    display: grid;
    grid-template-columns: 1fr 2.2fr; /* Asymmetrical technical layout spread */
    gap: 4rem;
    align-items: flex-start;
    border-bottom: 1px solid var(--border-hairline);
    padding-bottom: 4rem;
}

.post-entry:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.post-entry-image img {
    width: 100%;
    display: block;
    border: 1px solid var(--border-hairline);
    border-radius: var(--border-radius);
}

.post-meta {
    font-family: monospace;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--neutral-mid);
    margin-bottom: 0.75rem;
}

.post-entry-content h2 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.post-entry-content h2 a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

/* Link-only color execution loop without block translation pops */
.post-entry-content h2 a:hover {
    color: var(--primary-accent);
}

.post-excerpt {
    font-size: 1.05rem;
    color: var(--neutral-mid);
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* --- Blog Detail Page --- */
.post-detail {
    max-width: 800px;
    margin-bottom: 6rem;
}

.featured-image {
    width: 100%;
    display: block;
    border: 1px solid var(--border-hairline);
    border-radius: var(--border-radius);
    margin-bottom: 3rem;
}

.post-header {
    text-align: left; /* Dropped corporate center-stacking alignment rules */
    border-bottom: 1px solid var(--border-hairline);
    padding-bottom: 2rem;
    margin-bottom: 3rem;
}

.post-header h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--primary-dark);
    margin: 0 0 0.5rem 0;
}

.post-header .post-meta {
    margin: 0;
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--primary-dark);
}

.post-content p {
    margin-bottom: 1.5rem;
}


/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 868px) {
    .post-list {
        gap: 4rem;
    }

    .post-entry {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-bottom: 3rem;
    }

    .post-entry-content {
        text-align: left;
    }
}