/* Recent Posts Block Styles */
.block-recent-posts {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.recent-posts-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 2rem;
}

.recent-posts-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.post-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--card-bg);
    border: var(--card-border);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.post-item:hover {
    transform: translateX(8px);
    box-shadow: var(--card-shadow);
}

.post-thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-info {
    flex: 1;
}

.post-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 8px;
}

.post-meta {
    display: flex;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--text-color);
    opacity: 0.7;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}
