/* --- Blog List Page --- */
.post-list {
    display: grid;
    gap: 3rem;
}

.post-entry {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: center;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 3rem;
}

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

.post-entry-image img {
    width: 100%;
    border-radius: 8px;
}

.post-meta {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.post-entry-content h2 {
    font-size: 1.8rem;
    margin: 0 0 1rem;
}

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

.post-entry-content h2 a:hover {
    color: var(--primary-accent);
}

.post-excerpt {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.featured-image {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.post-header {
    text-align: center;
    margin-bottom: 2rem;
}

.post-header h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: var(--primary-dark);
}

.post-header .post-meta {
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .post-entry {
        grid-template-columns: 1fr;
    }
}